@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Jost:wght@200;300;400&display=swap');

/* ===== Wrapper ===== */
.vds-section {
    background: #0a0806;
    padding: 60px 32px 80px;
    font-family: 'Jost', sans-serif;
}

/* ===== Header ===== */
.vds-header { text-align: center; margin-bottom: 52px; }
.vds-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: #b89a6a;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 8px;
}
.vds-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: #f5ede0;
    margin: 0 0 10px;
    line-height: 1.1;
}
.vds-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.vds-divider::before,
.vds-divider::after {
    content: '';
    height: 0.5px;
    width: 80px;
    background: #b89a6a;
    opacity: 0.5;
}
.vds-divider span { color: #b89a6a; font-size: 12px; }

/* ===== Grid ===== */
.vds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .vds-grid { grid-template-columns: 1fr; }
    .vds-card--offset { margin-top: 0 !important; }
}

/* ===== Card ===== */
.vds-card { position: relative; overflow: hidden; cursor: pointer; }
.vds-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1a1510;
}
.vds-card__video,
.vds-card__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vds-card__thumb {
    filter: brightness(0.88) contrast(1.05);
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}
.vds-card:hover .vds-card__thumb,
.vds-card:hover .vds-card__video { transform: scale(1.06); }
.vds-card__placeholder { position: absolute; inset: 0; background: #1a1510; }
.vds-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,8,6,0) 0%,
        rgba(10,8,6,0.05) 40%,
        rgba(10,8,6,0.75) 75%,
        rgba(10,8,6,0.95) 100%
    );
}

/* ===== Badge ===== */
.vds-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #b89a6a;
    color: #0a0806;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 2;
}

/* ===== Play Button ===== */
.vds-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0.5px solid rgba(184,154,106,0.6);
    background: rgba(10,8,6,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.35s ease;
    cursor: pointer;
    z-index: 3;
}
.vds-card:hover .vds-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.vds-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 14px;
    border-color: transparent transparent transparent #b89a6a;
    margin-left: 3px;
}

/* ===== Wishlist ===== */
.vds-wishlist-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid rgba(245,237,224,0.2);
    background: rgba(10,8,6,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    color: #f5ede0;
    z-index: 3;
}
.vds-card:hover .vds-wishlist-btn {
    opacity: 1;
    transform: scale(1);
}
.vds-wishlist-btn:hover {
    background: rgba(184,154,106,0.15);
    border-color: #b89a6a;
}

/* ===== Card Info ===== */
.vds-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    z-index: 2;
}
.vds-notes { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 9px; }
.vds-note {
    font-size: 8px;
    letter-spacing: 0.14em;
    color: #b89a6a;
    border: 0.5px solid rgba(184,154,106,0.35);
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}
.vds-card__name a{
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: #f5ede0 !important;
    margin: 0 0 3px;
    line-height: 1.15;
}
.vds-card__sub {
    font-size: 9px;
    font-weight: 200;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,237,224,0.4);
    margin: 0 0 12px;
}
.vds-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.vds-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    color: #f5ede0;
}
.vds-price-ml {
    font-size: 8px;
    letter-spacing: 0.12em;
    color: rgba(245,237,224,0.35);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ===== Action Button ===== */
.vds-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #f5ede0;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    margin: 10px 0 0;
    background: #b2893347 !important;
}
.vds-action-btn:hover {
    color: #b89a6a;
    letter-spacing: 0.3em;
}
.vds-action-btn--added { color: #b89a6a; }

/* ===== Footer Nav ===== */
.vds-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.vds-footer-link {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,237,224,0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}
.vds-footer-link:hover { color: #b89a6a; }
.vds-arrow {
    display: inline-block;
    width: 28px;
    height: 0.5px;
    background: currentColor;
    position: relative;
    vertical-align: middle;
    transition: width 0.3s;
}
.vds-footer-link:hover .vds-arrow { width: 44px; }
.vds-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 0.5px solid currentColor;
    border-right: 0.5px solid currentColor;
    transform: rotate(45deg);
}
.vds-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(184,154,106,0.35);
}

/* ===== Video Modal ===== */
.vds-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.vds-video-modal.open { display: flex; }
.vds-video-modal__inner {
    position: relative;
    width: 90%;
    max-width: 680px;
}
.vds-video-modal__inner video {
    width: 100%;
    display: block;
    border-radius: 2px;
}
.vds-video-modal__close {
    position: absolute;
    top: -38px;
    right: 0;
    background: transparent;
    border: none;
    color: #b89a6a;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}
