/* Sección Técnica de Producto */
.technical-product-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 60px 0;
}

.technical-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

/* Columna de imagen */
.technical-image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-technical-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid #eee;
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: #000;
}

/* Columna de información */
.technical-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.technical-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0;
    color: #000;
    text-transform: uppercase;
}

.technical-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Tabs */
.technical-tabs {
    border: 1px solid #eee;
}

.tab-headers {
    display: flex;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.tab-header {
    padding: 15px 30px;
    background: none;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    color: #777;
    position: relative;
    transition: all 0.3s ease;
}

.tab-header.active {
    color: #000;
    background: #fff;
    font-weight: 600;
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.tab-header:hover:not(.active) {
    color: #000;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

/* Especificaciones técnicas */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.spec-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    font-family: 'Cinzel', serif;
}

/* CTA y precio */
.technical-action {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.technical-price {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
}

.btn-add-to-cart-technical {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart-technical:hover {
    background: #333;
}

.btn-wishlist-technical {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 18px 40px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-wishlist-technical:hover {
    background: #f8f8f8;
}

/* Información de cuidado y envío */
.care-info ul,
.shipping-info {
    padding-left: 20px;
}

.care-info li {
    margin-bottom: 10px;
    color: #666;
}



/* Responsive */
@media (max-width: 992px) {
    .technical-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-technical-image {
        height: 400px;
    }
    
    .technical-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-headers {
        flex-wrap: wrap;
    }
    
    .tab-header {
        flex: 1;
        min-width: 150px;
        padding: 15px;
        font-size: 0.8rem;
    }
    
    .technical-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .technical-product-section {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .main-technical-image {
        height: 300px;
    }
    
    .thumbnail-gallery {
        flex-wrap: wrap;
    }
    
    .btn-add-to-cart-technical,
    .btn-wishlist-technical {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}