/* ═══════════════════════════════════════════════════════════
   VETRINE IN EVIDENZA · Carosello Luxury Beauty
═══════════════════════════════════════════════════════════ */

.section-vetrine {
    padding: 96px 0 80px;
    background: linear-gradient(180deg, #faf8f5 0%, #fffdf9 50%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

.section-vetrine::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.3), transparent);
}

@media (max-width: 768px) {
    .section-vetrine { padding: 64px 0 56px; }
}

/* TAB SWITCHER */
.vetrine-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 48px 0 40px;
    flex-wrap: wrap;
}

.vetrine-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    border: 1.5px solid #ebe6dd;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.vetrine-tab:hover {
    border-color: #c9a961;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,169,97,0.18);
}

.vetrine-tab.is-active {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-color: #0a0a0a;
    color: #fff;
    box-shadow: 0 10px 28px rgba(10,10,10,0.25);
}

.vetrine-tab.is-active i { color: #c9a961; }

.vetrine-tab i {
    font-size: 14px;
    transition: color 0.25s ease;
}

.vetrine-tab-count {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(201,169,97,0.15);
    color: #b5952f;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.vetrine-tab.is-active .vetrine-tab-count {
    background: rgba(201,169,97,0.25);
    color: #e8d5a0;
}

/* CAROUSEL WRAPPER */
.vetrine-carousel-wrap {
    display: none;
    position: relative;
    padding: 0 8px;
    animation: vetrineFadeIn 0.5s ease;
}

.vetrine-carousel-wrap.is-active { display: block; }

@keyframes vetrineFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.vetrine-swiper {
    padding: 16px 4px 60px !important;
    overflow: visible !important;
}

.vetrine-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* CARD VETRINA */
.vetrina-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(10,10,10,0.06);
    transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
    border: 1px solid #ebe6dd;
}

.vetrina-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10,10,10,0.12);
    border-color: rgba(201,169,97,0.5);
}

.vetrina-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f4f1ec;
}

.vetrina-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.vetrina-card:hover .vetrina-card-cover img {
    transform: scale(1.08);
}

.vetrina-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #b5952f, #c9a961);
    color: #fff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(201,169,97,0.4);
}

.vetrina-card-badge i { font-size: 10px; }

.vetrina-card-rating {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.vetrina-card-rating i { color: #c9a961; font-size: 12px; }
.vetrina-card-rating small { font-size: 11px; font-weight: 500; color: #6b6b6b; }

.vetrina-card-body {
    padding: 22px 22px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vetrina-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b5952f;
    margin-bottom: 10px;
}

.vetrina-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.15;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vetrina-card-tagline {
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.55;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.vetrina-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid #f4f1ec;
}

.vetrina-card-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b6b6b;
}

.vetrina-card-city i { color: #c9a961; font-size: 11px; }

.vetrina-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0a0a0a;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 100px;
    background: #faf8f5;
}

.vetrina-card:hover .vetrina-card-cta {
    background: #0a0a0a;
    color: #fff;
}

.vetrina-card-cta i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.vetrina-card:hover .vetrina-card-cta i {
    transform: translateX(3px);
}

/* Variante Freelance */
.vetrina-card-freelance .vetrina-card-badge {
    background: linear-gradient(135deg, #6b46c1, #9333ea);
    box-shadow: 0 4px 12px rgba(147,51,234,0.35);
}

.vetrina-card-freelance .vetrina-card-cat { color: #9333ea; }

/* NAV FRECCE */
.vetrine-nav {
    position: absolute;
    top: 38%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #ebe6dd;
    color: #0a0a0a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 10;
    box-shadow: 0 8px 20px rgba(10,10,10,0.08);
}

.vetrine-nav:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #c9a961;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 28px rgba(10,10,10,0.18);
}

.vetrine-nav-prev { left: -26px; }
.vetrine-nav-next { right: -26px; }

@media (max-width: 991.98px) {
    .vetrine-nav { display: none; }
}

/* PAGINATION */
.vetrine-pagination {
    position: absolute !important;
    bottom: 12px !important;
    text-align: center;
}

.vetrine-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d9cfb8;
    opacity: 1;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.vetrine-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, #c9a961, #b5952f);
}

/* CTA BOTTOM */
.vetrine-cta-bottom {
    text-align: center;
    margin-top: 32px;
}

.vetrine-cta-text {
    font-size: 15px;
    color: #6b6b6b;
    margin: 0;
    font-weight: 500;
}

.vetrine-cta-text strong {
    color: #0a0a0a;
    font-weight: 700;
}

.vetrine-cta-link {
    color: #b5952f;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 1px;
    transition: all 0.25s ease;
}

.vetrine-cta-link:hover {
    color: #0a0a0a;
    border-bottom-color: #c9a961;
}