/* ============================================
   ESTILOS ESPECÍFICOS PARA O'RINGS
   ============================================ */

/* Página principal de O'Rings (similar a category-page) */
.orings-category {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.orings-category-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    border-bottom: 3px solid #facc15;
    display: inline-block;
    width: auto;
    padding-bottom: 0.5rem;
}

/* Grid de subcategorías (reutiliza .subcategories-grid del styles.css) */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Tarjetas de subcategoría (igual que en tapones) */
.subcat-card {
    background: #f3f3f3;
    border: 1px solid #eef2ff;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.subcat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
    border-color: #facc15;
}

.subcat-img-placeholder {
    width: 80px;
    height: 80px;
    background: #111111;
    color: #facc15;
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 1.2rem;
}

.subcat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #111111;
}

.subcat-card p {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.subcat-link {
    display: inline-block;
    color: #facc15;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.subcat-link:hover {
    color: #111111;
    transform: translateX(5px);
}

/* Página de kit de O'Rings (similar a kit-td.html) */
.kit-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

.kit-page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -.5px;
    margin-bottom: 0.5rem;
}

.kit-page-subtitle {
    font-size: .95rem;
    color: #6b7280;
}

/* Tabla de O'Rings (medidas) */
.orings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.85rem;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.orings-table th {
    background: #111;
    color: #facc15;
    padding: 12px 8px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #333;
}

.orings-table td {
    padding: 8px 6px;
    text-align: center;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.orings-table tr:nth-child(even) td {
    background: #f9fafb;
}

/* Responsive para tabla */
@media (max-width: 768px) {
    .orings-table {
        font-size: 0.7rem;
    }
    .orings-table th,
    .orings-table td {
        padding: 6px 4px;
    }
}

/* Contenedor de dos imágenes (bolsa + sacafiltro) */
.orings-product-duo {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.orings-product-img {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: #f8fafc;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid #eef2ff;
}

.orings-product-img img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
}

/* Footer de marca (reutilizado) */
.kit-brand-footer {
    text-align: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin: 28px 0;
}
.kit-brand-footer img {
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}
.kit-brand-footer p {
    font-size: .82rem;
    color: #6b7280;
    letter-spacing: .5px;
}