.product-detail {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.gallery {
    display: flex;
    gap: 20px;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transicion);
}

.thumb.active,
.thumb:hover {
    border-color: var(--verde-salvia);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-img {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 2rem;
    color: var(--marron-semilla);
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
}

.meta-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--texto-light);
}

.meta-info p {
    margin-bottom: 10px;
}

.meta-info b {
    color: var(--verde-bosque);
}

.tabs-container {
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-link {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--texto-light);
    position: relative;
    padding-bottom: 10px;
}

.tab-link.active {
    color: var(--verde-bosque);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--verde-salvia);
}

.tab-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--texto);
}

.tab-content.active {
    display: block;
}

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .gallery {
        flex-direction: column-reverse;
    }

    .thumbnails {
        flex-direction: row;
        justify-content: center;
    }

    .main-img {
        height: 400px;
    }
}