/* ============================================
   ESTILOS ESPECÍFICOS PARA BUJES
   ============================================ */

.bujes-category {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bujes-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: 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 productos Peugeot (tres variantes) */
.peugeot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.peugeot-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.peugeot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.peugeot-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
    border-left: 4px solid #facc15;
    padding-left: 0.75rem;
}

/* Contenedor flexible para imágenes (buje + auto) */
.buje-img-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.buje-img-group img {
    max-width: 200px;
    max-height: 160px;
    object-fit: contain;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid #eef2ff;
}

.peugeot-medidas {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.peugeot-medidas p {
    margin: 0.4rem 0;
    font-size: 0.9rem;
    color: #374151;
}

.peugeot-medidas strong {
    color: #111;
    font-weight: 700;
}

.modelos-lista {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 0;
}

.modelos-lista li {
    font-size: 0.85rem;
    color: #4b5563;
    padding: 0.2rem 0;
    border-bottom: 1px dashed #e5e7eb;
}

.modelos-lista li::before {
    content: "•";
    color: #facc15;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
}

/* Página de Nissan */
.nissan-duo {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.nissan-duo .product-img-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: #f8fafc;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #eef2ff;
}

.nissan-duo img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.nissan-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.nissan-gallery .gallery-item {
    flex: 0 1 200px;
    text-align: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid #eef2ff;
}

.nissan-gallery .gallery-item.circular img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.gallery-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

/* 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;
}