/* ============================================
   ESTILOS ESPECÍFICOS PARA ACCESORIOS DE ESCAPE
   ============================================ */

.accesorios-category {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.accesorios-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;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.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: 2rem;
    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 producto (detalle) */
.accesorio-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.accesorio-product {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.accesorio-img {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.accesorio-img img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid #eef2ff;
}

.accesorio-info {
    flex: 1;
    min-width: 260px;
    text-align: left;
}

.accesorio-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111;
}

.accesorio-code {
    display: inline-block;
    background: #111;
    color: #facc15;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accesorio-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.accesorio-number {
    font-size: 4rem;
    font-weight: 900;
    background: #f3f4f6;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
}

/* Botón flotante de número (estilo "38" de la imagen) */
.accesorio-number-badge {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-top: 1rem;
}

/* Footer de marca */
.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: 150px;
    object-fit: contain;
    margin-bottom: 8px;
    
}
.kit-brand-footer p {
    font-size: .82rem;
    color: #6b7280;
    letter-spacing: .5px;
}

/* Responsive */
@media (max-width: 768px) {
    .accesorio-product {
        flex-direction: column;
        text-align: center;
    }
    .accesorio-info h2 {
        font-size: 1.5rem;
    }
    .accesorio-number {
        font-size: 2.5rem;
    }
}