/* ===== CSS VARIABLES ===== */
:root {
    --wine: #8B1A4A;
    --rose: #C9536A;
    --gold: #D4A853;
    --cream: #FDF6F0;
    --dark: #1a0a10;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Nunito', sans-serif;
    --shadow: 0 8px 32px rgba(139, 26, 74, 0.15);
    --radius: 16px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: var(--sans);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 48px);
    height: 68px;
    background: rgba(253, 246, 240, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(139, 26, 74, 0.1);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(139, 26, 74, 0.12);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--wine);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-logo span {
    color: var(--rose);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--wine);
}

.nav-wa {
    display: flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-wa:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 4px;
}

.nav-mobile {
    display: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 68px;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 16, 0.82) 0%, rgba(139, 26, 74, 0.55) 60%, rgba(26, 10, 16, 0.7) 100%);
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -10px;
    background: rgba(212, 168, 83, 0.6);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) scale(0.2);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(24px, 6vw, 80px) clamp(16px, 4vw, 40px);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 168, 83, 0.18);
    border: 1px solid rgba(212, 168, 83, 0.4);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeDown 0.7s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4)
    }
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 700;
    line-height: 1.0;
    margin-bottom: 12px;
    animation: fadeUp 0.9s ease 0.2s both;
}

.ht-1 {
    display: block;
    color: #fff;
}

.ht-2 {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    margin-bottom: 16px;
    animation: fadeUp 0.9s ease 0.35s both;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeUp 0.9s ease 0.45s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeUp 0.9s ease 0.55s both;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.25s;
}

.hbtn-primary {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: #fff;
}

.hbtn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 83, 106, 0.4);
}

.hbtn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.hbtn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    animation: fadeUp 0.9s ease 0.65s both;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(12px)
    }
}

.video-dots {
    position: absolute;
    bottom: 80px;
    right: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.vdot.active {
    background: var(--gold);
    transform: scale(1.3);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px)
    }

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

/* ===== STATS BANNER ===== */
.stats-banner {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    padding: 28px 0;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-n {
    display: block;
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
}

.stat-l {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 48px);
    max-width: 1280px;
    margin: 0 auto;
}

.sec-eyebrow {
    text-align: center;
    color: var(--rose);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title {
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 400;
    color: var(--wine);
    margin-bottom: 48px;
    line-height: 1.2;
}

/* ===== CATEGORY FILTER ===== */
.filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.fcat {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(139, 26, 74, 0.2);
    background: #fff;
    color: #777;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.fcat:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.fcat.active {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: #fff;
    border-color: transparent;
}

/* ===== SEARCH ===== */
.search-wrap {
    max-width: 440px;
    margin: 0 auto 32px;
    position: relative;
}

.search-inp {
    width: 100%;
    padding: 13px 48px 13px 20px;
    border: 1.5px solid rgba(139, 26, 74, 0.2);
    border-radius: 50px;
    font-family: var(--sans);
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-inp:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(201, 83, 106, 0.12);
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

/* ===== PRODUCT GRID ===== */
.pgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.pcard {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(139, 26, 74, 0.07);
    transition: transform 0.28s, box-shadow 0.28s;
    overflow: hidden;
    position: relative;
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.pbadge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.pimg-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.pimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.pcard:hover .pimg {
    transform: scale(1.05);
}

.pimg-ov {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 16, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.pcard:hover .pimg-ov {
    opacity: 1;
}

.pimg-shine {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.pcard:hover .pimg-shine {
    left: 130%;
}

.qv-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--wine);
    border: none;
    border-radius: 50px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.qv-btn:hover {
    background: #fff;
}

.pinfo {
    padding: 18px 18px 20px;
}

.pcat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pname {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pmeta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.prev {
    font-size: 11px;
    color: #aaa;
}

.pfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pprice {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--wine);
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.22s;
}

.buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.buy-lg {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

/* ===== MODAL ===== */
.modal-bd {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26, 10, 16, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    max-width: 780px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0
    }

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

.modal-x {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-x:hover {
    background: rgba(0, 0, 0, 0.12);
}

.modal-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

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

.modal-det {
    padding: 32px 28px;
}

.modal-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 6px 0 12px;
}

.modal-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-price {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--wine);
    margin-bottom: 20px;
}

.auth-modal-box {
    max-width: 420px;
}

.auth-sheet {
    padding: 34px 30px 28px;
}

.auth-logo {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--wine);
    margin-bottom: 6px;
    text-align: center;
}

.auth-logo span {
    color: var(--rose);
    font-style: italic;
}

.auth-sub {
    font-size: 11px;
    color: #a98f9b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}

.auth-title {
    margin: 0 0 8px;
    text-align: center;
    color: var(--wine);
    font-family: var(--serif);
    font-size: 24px;
}

.auth-copy {
    margin: 0 0 16px;
    text-align: center;
    color: #7b6c73;
    font-size: 13px;
    line-height: 1.6;
}

.a-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.a-label {
    font-size: 11px;
    font-weight: 700;
    color: #8a7f74;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.a-input {
    padding: 12px 14px;
    border: 1.5px solid rgba(139, 26, 74, 0.2);
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: all 0.2s;
}

.a-input:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(201, 83, 106, 0.12);
}

.a-btn {
    padding: 10px 18px;
    border-radius: 40px;
    border: none;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.a-btn-primary {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: #fff;
    width: 100%;
}

.a-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 83, 106, 0.3);
}

.a-btn-secondary {
    background: #f0eae6;
    color: #5a4a42;
    width: 100%;
}

.auth-actions {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.err-msg {
    color: #e53e3e;
    font-size: 12px;
    margin-bottom: 12px;
    display: none;
}

.info-msg {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    margin-bottom: 12px;
    display: none;
}

.review-modal-box {
    max-width: 560px;
}

.review-sheet {
    padding: 30px 28px 24px;
}

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.review-title {
    margin: 0;
    color: var(--wine);
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
}

.review-chip {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid rgba(201, 83, 106, 0.3);
    border-radius: 999px;
    padding: 5px 11px;
    background: #fff6fa;
}

.review-sub {
    margin: 0 0 14px;
    font-size: 13px;
    color: #746871;
    line-height: 1.5;
}

.review-textarea {
    min-height: 108px;
    resize: vertical;
}

.review-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #7a6a73 50%), linear-gradient(135deg, #7a6a73 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 34px;
}

/* ===== TESTIMONIALS ===== */
.testi-section {
    background: linear-gradient(135deg, #fdf6f0 0%, #fff5f7 100%);
    border-radius: 28px;
    margin: 0 clamp(8px, 2vw, 32px);
    max-width: 100vw;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.tcard {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(139, 26, 74, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
}

.tcard:hover {
    transform: translateY(-4px);
}

.tcard-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tavatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.tname {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.tloc {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

.tquote {
    font-size: 52px;
    font-family: Georgia, serif;
    color: var(--rose);
    opacity: 0.15;
    line-height: 0.8;
    margin-bottom: 4px;
}

.ttext {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* ===== BRAND STORY ===== */
.brand-wrap {
    padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 48px);
    background: var(--dark);
}

.brand-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.brand-img-col {
    position: relative;
}

.brand-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.brand-img2 {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 180px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    border: 4px solid var(--dark);
}

.brand-badge {
    position: absolute;
    top: 24px;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.brand-text-col {
    color: #fff;
}

.brand-text-col .sec-eyebrow {
    text-align: left;
    color: var(--gold);
}

.brand-text-col .sec-title {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 40px);
    color: #fff;
    margin-bottom: 24px;
}

.brand-p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.brand-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.bstat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 20px;
}

.bstat-n {
    display: block;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.bstat-l {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: #100508;
    padding: 48px clamp(16px, 4vw, 48px) 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    max-width: 240px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--rose);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.slink {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    transition: all 0.2s;
    cursor: pointer;
}

.slink:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* ===== FLOATING WA ===== */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    animation: floatBounce 3s ease-in-out infinite;
    transition: transform 0.2s;
}

.float-wa:hover {
    transform: scale(1.1);
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.float-wa-tooltip {
    position: absolute;
    right: 68px;
    bottom: 50%;
    transform: translateY(50%);
    background: #fff;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.float-wa:hover .float-wa-tooltip {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: block;
    }

    .nav-mobile.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 240, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid rgba(139, 26, 74, 0.1);
        z-index: 999;
    }

    .nav-mobile a {
        font-size: 15px;
        font-weight: 500;
        color: var(--wine);
        padding: 8px 0;
    }

    .modal-in {
        grid-template-columns: 1fr;
    }

    .modal-img {
        border-radius: 20px 20px 0 0;
        aspect-ratio: 16/9;
    }

    .brand-inner {
        grid-template-columns: 1fr;
    }

    .auth-sheet {
        padding: 28px 20px 22px;
    }

    .review-sheet {
        padding: 24px 18px 20px;
    }

    .review-title {
        font-size: 24px;
    }

    .review-head {
        align-items: flex-start;
    }

    .auth-actions {
        grid-template-columns: 1fr;
    }

    .brand-img2 {
        display: none;
    }

    .brand-badge {
        display: none;
    }

    .pgrid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 16px;
    }

    .pname {
        font-size: 13px;
    }

    .pprice {
        font-size: 15px;
    }

    .buy-btn {
        padding: 7px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pgrid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stats-inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }
}