/* ===============================
   HOMEPAGE HERO VIDEO
================================ */

.premium-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
}

/* VIDEO BACKGROUND */
.hero-video-bg {
    position: absolute;
    inset: -3px;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 104vw;
    height: 58.5vw;
    min-width: 185vh;
    min-height: 104vh;

    transform: translate(-50%, -50%) scale(1.08);
    border: 0;
    pointer-events: none;

    opacity: .78;
    filter: brightness(.98) contrast(1.05) saturate(1.04);

    transition:
        transform 8s ease,
        opacity 1.2s ease,
        filter 1.2s ease;
}

.premium-hero:hover .hero-video-bg iframe {
    transform: translate(-50%, -50%) scale(1.12);
}

/* CINEMATIC OVERLAY */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        radial-gradient(circle at 72% 42%,
            rgba(0, 0, 0, .02) 0%,
            rgba(0, 0, 0, .12) 34%,
            rgba(0, 0, 0, .40) 72%,
            rgba(0, 0, 0, .68) 100%),

        linear-gradient(90deg,
            rgba(0, 0, 0, .52) 0%,
            rgba(0, 0, 0, .20) 36%,
            rgba(0, 0, 0, .26) 62%,
            rgba(0, 0, 0, .48) 100%),

        linear-gradient(180deg,
            rgba(0, 0, 0, .20) 0%,
            rgba(0, 0, 0, .03) 36%,
            rgba(0, 0, 0, .12) 66%,
            rgba(0, 0, 0, .58) 100%);
}

.hero-video-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 110px rgba(0, 0, 0, .24);
}

.hero-video-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(198, 167, 94, .045),
            transparent 35%,
            transparent 66%,
            rgba(198, 167, 94, .03));
    mix-blend-mode: screen;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 760px;
    padding-top: 10px;
    animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TYPOGRAPHY */
.hero-sub {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;

    color: #c6a75e;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-sub::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #c6a75e;
    opacity: .85;
}

/* ===============================
   HERO TEXT (FINAL SYSTEM)
================================ */

/* Subtitle stays same */
.hero-sub {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;

    color: #c6a75e;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-sub::before {
    content: "";
    width: 40px;
    height: 1px;
    background: #c6a75e;
}

/* 🔥 HERO TITLE (NEW) */
.hero-title {
    max-width: 720px;
    margin-bottom: 26px;

    color: #fff;
    font-family: 'Oswald', sans-serif;

    font-size: clamp(44px, 5.2vw, 78px);
    line-height: 0.95;
    font-weight: 600;

    letter-spacing: -0.5px;
    text-transform: uppercase;

    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Highlight line */
.hero-title span {
    display: inline-block;
    color: #c6a75e;
    font-weight: 500;
}

/* Description */
.hero-desc {
    max-width: 540px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.8;
}

/* 📱 Mobile Fix */
@media (max-width: 575px) {
    .hero-title {
        font-size: 36px;
        line-height: 1;
    }
}

.hero-desc {
    max-width: 560px;
    margin-bottom: 36px;

    color: rgba(255, 255, 255, .80);
    font-size: 15px;
    line-height: 1.9;
}

/* ACTIONS */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero {
    background: #fff;
    color: #111;
    border: 1px solid #fff;

    padding: 15px 36px;
    border-radius: 2px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;

    transition: all .28s ease;
}

.btn-hero:hover {
    background: #c6a75e;
    border-color: #c6a75e;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(198, 167, 94, .22);
}

.btn-hero-outline {
    color: rgba(255, 255, 255, .86);
    border-bottom: 1px solid rgba(198, 167, 94, .75);
    padding-bottom: 5px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;

    transition: all .28s ease;
}

.btn-hero-outline:hover {
    color: #c6a75e;
    border-color: #c6a75e;
    text-decoration: none;
}

/* SCROLL INDICATOR */
.hero-scroll-note {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    transform: translateX(-50%);

    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll-note::after {
    content: "";
    display: block;
    width: 1px;
    height: 34px;
    margin: 12px auto 0;
    background: rgba(198, 167, 94, .65);
}

.hero-video-trigger {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .premium-hero,
    .hero-content {
        min-height: 82vh;
    }

    .hero-video-bg iframe {
        opacity: .72;
        filter: brightness(.92) contrast(1.04) saturate(1);
    }

    .hero-text h1 {
        font-size: clamp(42px, 8vw, 68px);
    }
}

@media (max-width: 575px) {

    .premium-hero,
    .hero-content {
        min-height: 78vh;
    }

    .hero-text {
        padding-top: 30px;
    }

    .hero-sub {
        gap: 10px;
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .hero-sub::before {
        width: 28px;
    }

    .hero-text h1 {
        font-size: 39px;
        line-height: .95;
        margin-bottom: 22px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 13px 24px;
        font-size: 11px;
    }

    .hero-scroll-note {
        display: none;
    }
}

/* ===============================
   COMMON SECTIONS
================================ */

.section-padding {
    padding: 110px 0;
}

.section-dark {
    background: #0e0e0e;
    color: #fff;
}

.section-light {
    background: #f7f6f3;
}

.section-subtitle {
    color: #c6a75e;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    color: inherit;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.section-description {
    max-width: 560px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.8;
}

/* ===============================
   SIGNATURE WINE
================================ */

.signature-wine {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.signature-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f3f0ea;
}

.signature-img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    transition: transform .7s ease;
}

.signature-image-wrap:hover .signature-img {
    transform: scale(1.045);
}

.signature-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .18), transparent 70%);
    pointer-events: none;
}

.signature-label {
    display: block;
    margin-bottom: 12px;

    color: #9a7a3d;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.signature-title {
    margin-bottom: 18px;

    color: #111;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.signature-desc {
    max-width: 430px;
    margin-bottom: 24px;

    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.signature-price {
    margin-bottom: 10px;
}

.signature-price .old {
    color: #aaa;
    margin-right: 12px;
    text-decoration: line-through;
}

.signature-price .new {
    color: #111;
    font-size: 21px;
    font-weight: 600;
}

.signature-stock {
    color: #7b1e2b;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 26px;
}

.signature-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-signature {
    padding: 14px 36px;
    background: linear-gradient(135deg, #d6b56d, #b8965f);
    border: none;
    color: #111;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    transition: all .3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.btn-signature:hover {
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
}

.btn-view-details {
    position: relative;
    padding-bottom: 4px;

    color: #7b1e2b;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-view-details::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;
    background: #7b1e2b;

    transition: width .3s ease;
}

.btn-view-details:hover {
    color: #7b1e2b;
    text-decoration: none;
}

.btn-view-details:hover::after {
    width: 100%;
}

/* ===============================
   PRODUCT / CARD SUPPORT
================================ */

.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    transition: all .35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .07);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .8s ease;
}

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

.product-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .68), transparent);

    opacity: 0;
    transform: translateY(18px);
    transition: all .35s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-btn {
    background: #fff;
    color: #000;
    padding: 8px 18px;

    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all .3s ease;
}

.overlay-btn:hover {
    background: #c8a96a;
    color: #111;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background: linear-gradient(135deg, #c89b3c, #e6c26e);
    color: #111;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

.discount-value {
    font-weight: 700;
}

.discount-label {
    font-size: 9px;
    text-transform: uppercase;
}

.no-image-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.view-all-btn {
    padding: 12px 30px;
    border: 1px solid #c8a96a;
    color: #c8a96a;
    text-transform: uppercase;
    transition: all .3s ease;
}

.view-all-btn:hover {
    background: #c8a96a;
    color: #111;
    text-decoration: none;
}

/* ===============================
   HIGHLIGHT SUPPORT
================================ */

.highlight-card {
    height: 100%;
    padding: 34px 26px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    transition: all .35s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: #c8a96a;
    box-shadow: 0 20px 42px rgba(0, 0, 0, .08);
}

.highlight-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

/* ===============================
   VIDEO MODAL
================================ */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9);
}

.video-modal iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: min(1100px, 88vw);
    height: min(620px, 70vh);

    transform: translate(-50%, -50%);
    border: none;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .premium-hero,
    .hero-content {
        min-height: 82vh;
    }

    .hero-video-bg iframe {
        opacity: .68;
        filter: brightness(.9) contrast(1.04) saturate(.96);
    }

    .hero-text h1 {
        font-size: clamp(42px, 8vw, 68px);
    }

    .section-padding {
        padding: 80px 0;
    }

    .signature-wine {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .signature-wine {
        padding: 80px 20px;
    }

    .signature-image-wrap {
        margin-bottom: 38px;
    }

    .signature-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {

    .premium-hero,
    .hero-content {
        min-height: 78vh;
    }

    .hero-text {
        padding-top: 30px;
    }

    .hero-sub {
        gap: 10px;
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .hero-sub::before {
        width: 28px;
    }

    .hero-text h1 {
        font-size: 39px;
        line-height: .95;
        margin-bottom: 22px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .hero-actions {
        gap: 14px;
    }

    .btn-hero {
        padding: 13px 24px;
        font-size: 11px;
    }

    .hero-scroll-note {
        display: none;
    }

    .section-padding {
        padding: 64px 0;
    }

    .signature-title {
        font-size: 34px;
    }

    .btn-signature {
        padding: 13px 24px;
        font-size: 11px;
    }
}