/* VITRINE */
.vd-vitrine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.vd-filter {
    margin: 10px 0;
    text-align: center;
}
.vd-filter select {
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-width: 300px;
}
.vd-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
}
.vd-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.vd-item {
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s;
}
.vd-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.vd-thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
}
.vd-title {
    font-size: 16px;
    margin: 6px 0;
    font-weight: 600;
}
.vd-short-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 4px 0;
}
.vd-price {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 6px 0;
}

/* DETALHES DO PRODUTO */
.vd-produto-detalhe {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.vd-gallery {
    flex: 1;
    min-width: 300px;
    position: relative;
}
.vd-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.vd-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}
.vd-prev { left: 10px; }
.vd-next { right: 10px; }
.vd-details {
    flex: 1;
    min-width: 300px;
}
.vd-detalhe-title {
    font-size: 28px;
    margin: 0 0 12px;
}
.vd-detalhe-price {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}
.vd-detalhe-content {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.vd-btn-buy {
    display: inline-block;
    padding: 12px 24px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .vd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vd-filter select {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .vd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vd-produto-detalhe {
        flex-direction: column;
    }
    .vd-gallery, .vd-details {
        min-width: 100%;
    }
}