@import url("https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&family=Satisfy&display=swap");

@font-face {
    font-family: "Freestyle Script";
    src: url("../assets/fonts/freestyle-script.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Colors */
    --color-conifer: #7eed57;
    --color-deep-teal: #00b3b3;
    --color-yellow: #ffc536;
    --color-bg: #0a0a0f; /* Or the background color of the body */
    --color-text-white: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);

    /* Fonts */
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Bebas Neue", sans-serif;
    --font-accent: "Anton", sans-serif;
    --font-script:
        "Freestyle Script", "Satisfy", cursive; /* Fallback for Freestyle Script */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);

    color: var(--color-text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
    overflow-y: auto; /* Enable vertical scrolling */
    min-height: 100vh;
    height: auto;
    width: 100%;
}

/* Typography Utility Classes */
.font-montserrat {
    font-family: var(--font-primary);
}
.font-bebas {
    font-family: var(--font-secondary);
}
.font-script {
    font-family: var(--font-script);
}

.text-conifer {
    color: var(--color-conifer);
}
.text-deep-teal {
    color: var(--color-deep-teal);
}
.text-yellow {
    color: var(--color-yellow);
}

/* Header Styles */
.header-wrapper {
    width: 100%;
    z-index: 10;
    background: transparent;
}

.top-bar {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 0;
}

.top-bar .header-container {
    display: flex;
    justify-content: flex-end;
}

.insider-text {
    white-space: nowrap;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 1px;
    text-align: right;
    vertical-align: middle;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.main-header {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 0; /* Equal space top/bottom around elements */
}

.header-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px; /* spacing for smaller screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 377px;
    display: block;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 2px;
    vertical-align: middle;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-conifer);
}

.deals-badge {
    position: absolute;
    top: -2px;
    right: -5px;
}

.header-right {
    display: flex;
    align-items: center;
}

.btn {
    border-radius: 50px;
    padding: 18px 30px; /* Equal vertical padding */
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.3s,
        border-color 0.3s,
        color 0.3s,
        opacity 0.3s;
    border: none;
}

.btn-primary {
    min-width: 165px;
    background-color: var(--color-conifer);
    color: #000;
}

.btn-primary:hover {
    background-color: #7eed57;
    box-shadow:
        0 0 0 1px rgba(126, 237, 87, 0.45),
        0 0 18px rgba(126, 237, 87, 0.38),
        0 0 34px rgba(126, 237, 87, 0.24);
}

.btn-ghost {
    min-width: 211px;
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid var(--color-text-muted);
}

.btn-ghost:hover {
    color: #7eed57;
    border-color: #7eed57;
    background-color: rgba(126, 237, 87, 0.08);
    box-shadow:
        0 0 0 1px rgba(126, 237, 87, 0.32),
        0 0 14px rgba(126, 237, 87, 0.3),
        inset 0 0 12px rgba(126, 237, 87, 0.08);
}

/* Hero Content Styles */
.hero-section {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 46px;
    z-index: 5;
}

.canvas-to-content-overlay {
    position: relative;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgb(10 10 15) 100%
    );
    pointer-events: none;
    margin-bottom: -60px; /* Pull the overlay up to cover the bottom of the canvas */
    margin-top: -60px; /* Pull the overlay up to cover the bottom of the canvas */
    z-index: 2; /* Ensure it sits above the canvas but below the hero content */
}

.three-canvas-container {
    background-image: url("../assets/images/hero-bg.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 1145px;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none; /* Let clicks pass through to 3D canvas */
}

.hero-content > * {
    pointer-events: auto; /* Enable clicks on text/buttons if needed */
}

.eyebrow {
    font-family: var(--font-secondary);
    font-size: 31px;
    font-weight: 400;
    letter-spacing: 7px;
    line-height: 49px;
    text-transform: uppercase;
    color: var(--color-conifer);
    margin-bottom: 10px; /* Reduced to balance with title leading */
}

.hero-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 176px;
    line-height: 144px;
    letter-spacing: 0px;
    margin-bottom: -10px; /* tighten gap */
    width: 100%;
    white-space: nowrap;
}

.hero-title.elevated {
    font-weight: 400;
    font-size: 114px;
    line-height: 93px;
    letter-spacing: 1px;
    color: var(--color-deep-teal);
    margin-top: 15px;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 114px;
    line-height: 93px;
    letter-spacing: 1px;
    text-transform: lowercase;
    color: var(--color-yellow);
    margin-top: 0px;
    margin-bottom: 31px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 31px auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* 3D Canvas */
#three-canvas {
    width: 1168px;
    height: 662px;
    display: block;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

#loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: opacity 0.6s ease;
}

.loader-bar-wrap {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: var(--color-conifer);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.loader-text {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.14em;
}

/* Find Your Effect Section Styles */
.feeling-section {
    width: 100%;
    z-index: 5;
    padding-top: 120px;
    padding-bottom: 120px;
}

.feeling-container {
    width: 100%;
    max-width: 1538px;
    margin: 0 auto;
    padding: 0;
}

.feeling-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px; /* 60px space below header */
}

.feeling-eyebrow {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 3px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.feeling-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 74px;
    line-height: 59px;
    letter-spacing: 1px;
    vertical-align: middle;
    text-transform: uppercase;
    margin-top: 10px;
}

.feeling-menu-link {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 2px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-conifer);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.3s,
        color 0.3s;
    margin-bottom: 6px; /* align baseline with title */
}

.feeling-menu-link:hover {
    border-bottom-color: var(--color-conifer);
}

.slider-toolbar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(10, 12, 16, 0.82);
    color: #f5f2ea;
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 0.24s ease,
        background-color 0.24s ease,
        color 0.24s ease,
        box-shadow 0.24s ease,
        opacity 0.24s ease;
}

.carousel-arrow:hover {
    border-color: #7eed57;
    color: #7eed57;
    background: rgba(126, 237, 87, 0.08);
    box-shadow:
        0 0 0 1px rgba(126, 237, 87, 0.28),
        0 0 16px rgba(126, 237, 87, 0.22),
        inset 0 0 12px rgba(126, 237, 87, 0.06);
}

.carousel-arrow.swiper-button-disabled {
    opacity: 0.34;
    cursor: default;
    box-shadow: none;
}

.carousel-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
}

.carousel-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    opacity: 1;
    transition:
        width 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

.carousel-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: #7eed57;
    box-shadow: 0 0 14px rgba(126, 237, 87, 0.36);
}

.effects-swiper,
.deals-swiper {
    padding: 10px 6px 22px;
}

.effects-swiper .swiper-wrapper,
.deals-swiper .swiper-wrapper {
    align-items: stretch;
}

.effects-swiper .swiper-slide,
.deals-swiper .swiper-slide {
    height: auto;
}

.effects-swiper .swiper-slide {
    width: 256px;
}

.feeling-card {
    background: #0c0c0d;
    --card-fill-color: #0c0c0d;
    border: 1px solid #232328;
    flex: 1 1 220px;
    max-width: 256px;
    height: 287px;
    border-radius: 14px;
    padding: 15px 16px; /* 15px top 15px bottom 16px left/right padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
        border-color 0.3s,
        background-color 0.3s,
        box-shadow 0.3s;
    /* Each card is its own stacking context — drop-shadow on one card
       does not force the browser to composite all sibling cards */
    isolation: isolate;
}

.feeling-card:hover {
    background-color: #161617;
    --card-fill-color: #161617;
    border-color: var(--card-theme-color);
    box-shadow: 0 0 20px var(--card-theme-glow);
}

/* Card Themes */
.card-sleep {
    --card-theme-color: #00b3b3;
    --card-theme-glow: rgba(0, 179, 179, 0.25);
    color: #00b3b3;
}

.card-relief {
    --card-theme-color: #a64cfc;
    --card-theme-glow: rgba(166, 76, 252, 0.25);
    color: #a64cfc;
}

.card-chill {
    --card-theme-color: #7eed57;
    --card-theme-glow: rgba(126, 237, 87, 0.25);
    color: #7eed57;
}

.card-happy {
    --card-theme-color: #ff2e9e;
    --card-theme-glow: rgba(255, 46, 158, 0.25);
    color: #ff2e9e;
}

.card-energized {
    --card-theme-color: #ffc536;
    --card-theme-glow: rgba(255, 197, 54, 0.25);
    --card-glow-fill: rgba(255, 197, 54, 0.15);
    color: #ffc536;
}

.card-focused {
    --card-theme-color: #788c2b;
    --card-theme-glow: rgba(120, 140, 43, 0.25);
    color: #788c2b;
}

.card-icon {
    width: 149px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 26px; /* 26px gap below SVG */
}

.card-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 1px;
    color: #f5f2ea;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 1px;
    color: #9a9a92;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

/* --- Better Sleep SVG Hover Animations --- */
.anim-moon,
.anim-cloud,
.anim-stars path {
    transition:
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* Hover trigger state */
.feeling-card:hover .anim-moon {
    animation: floatMoon 3s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-cloud {
    animation: driftCloud 3.5s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-stars path {
    animation: twinkleStar 1.5s ease-in-out infinite alternate;
}

/* Twinkle stagger offsets for stars */
.feeling-card:hover .anim-stars path:nth-child(3n) {
    animation-delay: 0.3s;
    animation-duration: 1.2s;
}
.feeling-card:hover .anim-stars path:nth-child(3n + 1) {
    animation-delay: 0.6s;
    animation-duration: 1.8s;
}
.feeling-card:hover .anim-stars path:nth-child(3n + 2) {
    animation-delay: 0.9s;
    animation-duration: 1.5s;
}

@keyframes floatMoon {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-5px) rotate(3deg);
    }
}

@keyframes driftCloud {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(2px) translateX(-4px);
    }
}

@keyframes twinkleStar {
    0% {
        opacity: 0.35;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* --- Relief & Recovery SVG Hover Animations --- */
.anim-relief-top,
.anim-relief-mid-left,
.anim-relief-right,
.anim-relief-left-base {
    transition:
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* Hover trigger state */
.feeling-card:hover .anim-relief-top {
    animation: floatReliefTop 2s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-relief-mid-left {
    animation: driftReliefLeft 2.5s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-relief-right {
    animation: driftReliefRight 2.8s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-relief-left-base {
    animation: breatheReliefBase 3s ease-in-out infinite alternate;
}

@keyframes floatReliefTop {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 0 rgba(166, 76, 252, 0));
    }
    100% {
        transform: translateY(-6px) scale(1.05);
        filter: drop-shadow(0 0 4px rgba(166, 76, 252, 0.6));
    }
}

@keyframes driftReliefLeft {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(-2px) translateX(-2px) rotate(-1deg);
    }
}

@keyframes driftReliefRight {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(-3px) translateX(2px) rotate(1deg);
    }
}

@keyframes breatheReliefBase {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(0.98) translateY(1px);
    }
}

/* --- Chill Out SVG Hover Animations --- */
.anim-chill-top,
.anim-chill-left,
.anim-chill-right,
.anim-chill-base {
    transition:
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* Hover trigger state */
.feeling-card:hover .anim-chill-top {
    animation: floatChillTop 2.5s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-chill-left {
    animation: swayChillLeft 3s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-chill-right {
    animation: swayChillRight 3.2s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-chill-base {
    animation: breatheChillBase 3.5s ease-in-out infinite alternate;
}

@keyframes floatChillTop {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        transform: translateY(-4px) scale(1.03) rotate(2deg);
        filter: drop-shadow(0 0 3px rgba(126, 237, 87, 0.4));
    }
}

@keyframes swayChillLeft {
    0% {
        transform: rotate(0deg) skewX(0deg);
    }
    100% {
        transform: rotate(-2deg) skewX(-2deg);
    }
}

@keyframes swayChillRight {
    0% {
        transform: rotate(0deg) skewX(0deg);
    }
    100% {
        transform: rotate(2deg) skewX(2deg);
    }
}

@keyframes breatheChillBase {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(0.99) translateY(0.5px);
    }
}

/* --- Feel Happy SVG Hover Animations --- */
.anim-happy-face,
.anim-happy-eyes,
.anim-happy-mouth,
.anim-happy-rays {
    transition:
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* Center group rotation for happy sun rays. Center is at 66.5px 55px */
.anim-happy-rays {
    transform-origin: 62px 58px;
}

/* Hover trigger state */
.feeling-card:hover .anim-happy-face {
    animation: pulseHappyFace 2s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-happy-eyes {
    animation: blinkHappyEyes 3.5s ease-in-out infinite;
}

.feeling-card:hover .anim-happy-mouth {
    animation: smileHappyMouth 2s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-happy-rays {
    animation: rotateHappyRays 12s linear infinite;
}

@keyframes pulseHappyFace {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 4px rgba(255, 46, 158, 0.5));
    }
}

@keyframes blinkHappyEyes {
    0%,
    45%,
    55%,
    100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.1);
    }
}

@keyframes smileHappyMouth {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1) translateY(-1px);
    }
}

@keyframes rotateHappyRays {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- Get Energized SVG Hover Animations --- */
.anim-energy-bolt,
.anim-energy-sparks,
.anim-energy-spark {
    transition:
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* Center group alignment around SVG center: 61.5px 55px */
.anim-energy-bolt {
    transform-origin: 61.5px 55px;
}
.anim-energy-sparks {
    transform-origin: 61.5px 55px;
}

/* Hover triggers */
.feeling-card:hover .anim-energy-bolt {
    animation:
        jitterEnergyBolt 0.15s linear infinite,
        glowEnergyBolt 2s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-energy-sparks {
    animation: pulseEnergySparks 2s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-energy-spark {
    animation: twinkleSpark 1.4s ease-in-out infinite alternate;
}

/* Spark delay offsets for organic crackling effect */
.feeling-card:hover .anim-energy-spark:nth-child(4n) {
    animation-delay: 0.1s;
    animation-duration: 1.1s;
}
.feeling-card:hover .anim-energy-spark:nth-child(4n + 1) {
    animation-delay: 0.3s;
    animation-duration: 1.5s;
}
.feeling-card:hover .anim-energy-spark:nth-child(4n + 2) {
    animation-delay: 0.5s;
    animation-duration: 1.2s;
}
.feeling-card:hover .anim-energy-spark:nth-child(4n + 3) {
    animation-delay: 0.7s;
    animation-duration: 1.4s;
}

@keyframes jitterEnergyBolt {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-0.5px, 0.5px) scale(1.01);
    }
    50% {
        transform: translate(0.5px, -0.5px) scale(0.99);
    }
    75% {
        transform: translate(-0.5px, -0.5px) scale(1.005);
    }
    100% {
        transform: translate(0.5px, 0.5px) scale(1);
    }
}

@keyframes glowEnergyBolt {
    0% {
        filter: drop-shadow(0 0 1px rgba(255, 197, 54, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 197, 54, 0.75));
    }
}

@keyframes pulseEnergySparks {
    0% {
        transform: scale(0.98);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(255, 197, 54, 0.45));
    }
}

@keyframes twinkleSpark {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* --- Stay Focused SVG Hover Animations --- */
.anim-focus-eye,
.anim-focus-lashes,
.anim-focus-lash {
    transition:
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* Center group alignment around SVG center: 66.5px 55px (Viewbox is 133x110) */
.anim-focus-eye {
    transform-origin: 66.5px 55px;
}
.anim-focus-lashes {
    transform-origin: 66.5px 55px;
}

/* Hover triggers */
.feeling-card:hover .anim-focus-eye {
    animation: dilateFocusEye 2.5s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-focus-lashes {
    animation: pulseFocusLashes 2.5s ease-in-out infinite alternate;
}

.feeling-card:hover .anim-focus-lash {
    animation: shimmerFocusLash 1.6s ease-in-out infinite alternate;
}

/* Twinkle/Shimmer stagger delay for individual lashes */
.feeling-card:hover .anim-focus-lash:nth-child(4n) {
    animation-delay: 0.2s;
    animation-duration: 1.2s;
}
.feeling-card:hover .anim-focus-lash:nth-child(4n + 1) {
    animation-delay: 0.4s;
    animation-duration: 1.8s;
}
.feeling-card:hover .anim-focus-lash:nth-child(4n + 2) {
    animation-delay: 0.6s;
    animation-duration: 1.4s;
}
.feeling-card:hover .anim-focus-lash:nth-child(4n + 3) {
    animation-delay: 0.8s;
    animation-duration: 1.6s;
}

@keyframes dilateFocusEye {
    0% {
        transform: scale(0.97);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(120, 140, 43, 0.55));
    }
}

@keyframes pulseFocusLashes {
    0% {
        transform: scale(0.98);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.04);
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(120, 140, 43, 0.6));
    }
}

@keyframes shimmerFocusLash {
    0% {
        opacity: 0.55;
        transform: scale(0.93);
    }
    100% {
        opacity: 1;
        transform: scale(1.07);
    }
}

/* =============================================================
   PERFORMANCE: Layout containment & GPU compositor hints
   ============================================================= */

/* Isolate the cards section — layout/style changes inside it won't
   cause the browser to recalculate the hero layout above */
.feeling-section {
    contain: layout style;
    /* Skip rendering off-screen cards entirely */
    content-visibility: auto;
    /* Approximate placeholder height so the scrollbar doesn't jump */
    contain-intrinsic-size: 0 700px;
}

/* Promote every animated SVG group to its own GPU compositor layer.
   This prevents an animation on one group from dirtying another. */
.anim-moon,
.anim-cloud,
.anim-stars,
.anim-relief-top,
.anim-relief-mid-left,
.anim-relief-right,
.anim-relief-left-base,
.anim-chill-top,
.anim-chill-left,
.anim-chill-right,
.anim-chill-base,
.anim-happy-face,
.anim-happy-eyes,
.anim-happy-mouth,
.anim-happy-rays,
.anim-energy-bolt,
.anim-energy-sparks,
.anim-energy-spark,
.anim-focus-eye,
.anim-focus-lashes,
.anim-focus-lash {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* ══════════════════════════════════════════════════════════════════════════
   WHERE THE LOCALS SHOP SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.locals-section {
    position: relative;
    background-image:
        linear-gradient(
            to right,
            rgba(10, 10, 15, 0.98) 0%,
            rgba(10, 10, 15, 0.85) 45%,
            rgba(10, 10, 15, 0.3) 75%,
            rgba(10, 10, 15, 0.1) 100%
        ),
        url("../assets/images/where-locals.webp");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.locals-shell {
    width: min(100%, 1620px);
    margin: 0 auto;
    padding: 0 48px;
}

.locals-content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.locals-eyebrow {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3.38px;
    text-transform: uppercase;
    color: var(--color-deep-teal);
    margin-bottom: 16px;
}

.locals-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(54px, 6vw, 76px);
    line-height: 1.05;
    color: var(--color-text-white);
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.locals-title span {
    display: block;
}

.text-conifer {
    color: var(--color-conifer);
}

.text-cyan {
    color: var(--color-deep-teal);
}

.locals-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    max-width: 578px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.locals-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.locals-bullet-star {
    color: var(--color-conifer);
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
    margin-top: 3px
}

.locals-bullet-text {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
}

.locals-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.locals-badge {
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-text-white);
    border: 1px solid #FFFFFF4D;
    border-radius: 30px;
    padding: 8px 14px;
    text-transform: uppercase;
    transition:
        border-color 0.25s,
        background-color 0.25s;
}

.locals-badge:hover {
    border-color: var(--color-conifer);
    background-color: rgba(126, 237, 87, 0.05);
}



/* ══════════════════════════════════════════════════════════════════════════
   BORN IN THE DISTRICT SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.district-section {
    position: relative;
    width: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Main row: video left, content right */
.district-row {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 700px;
}

/* ── Video Panel (left 50%) ─────────────────────────────────────────────── */
.district-video-panel {
    position: relative;
    flex: 0 0 55%;
    overflow: hidden;
}

.district-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Right-edge gradient: video fades to black toward the content */
.district-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

/* Mural credit — bottom-left of video panel */
.district-mural-credit {
    position: absolute;
    bottom: 44px;
    left: 24px;
    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: 400;
    border-radius: 20px;
    padding-top: 7px;
    padding-right: 13px;
    padding-bottom: 5px;
    padding-left: 13px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Content panel (right side) ─────────────────────────────────────────── */
.district-content {
    position: relative;
    z-index: 2;
    flex: 0 0 45%;
    padding: 80px 80px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.district-eyebrow {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 3.38px;
    text-transform: uppercase;
    color: var(--color-text-white);
    margin-bottom: 14px;
}

/* ── Main headline ───────────────────────────────────────────────────────── */
.district-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.district-headline-white,
.district-headline-teal {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 74px;
    line-height: 58.88px;
    letter-spacing: 1.28px;
    display: block;
}

.district-headline-white {
    color: #f5f5f1;
}

.district-headline-teal {
    color: #00e0e0;
}

/* ── Sub-headline ────────────────────────────────────────────────────────── */
.district-built {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #f5f5f1;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* ── Body copy ───────────────────────────────────────────────────────────── */
.district-body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    max-width: 575px;
}

.district-body strong {
    color: var(--color-conifer);
    font-weight: 400;
}

/* ── Tagline ─────────────────────────────────────────────────────────────── */
.district-tagline {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 74px;
    line-height: 58.88px;
    letter-spacing: 1.28px;
    color: #9bea2f;
    margin-top: 20px;
    margin-bottom: 26px;
    max-width: 560px;
}

/* ── CTA Button ──────────────────────────────────────────────────────────── */
.district-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 49px;
    padding: 14px 28px 11px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    color: #f5f5f1;
    text-decoration: none;
    transition:
        border-color 0.3s,
        background-color 0.3s,
        color 0.3s;
    white-space: nowrap;
}

.district-cta:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

/* ── Bottom border graphic ───────────────────────────────────────────────── */
.district-border-graphic {
    position: relative;
    margin-top: -40px;
    z-index: 3;
    width: 100%;
    line-height: 0;
}

.district-border-graphic img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════════════════
   THE WALLS TELL OUR STORY (MURALS) SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.story-section {
    position: relative;
    background-image: 
        url("../assets/images/tell-our-story-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0;
    overflow: hidden;
}

.story-shell {
    width: min(100%, 1620px);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
    gap: 60px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 578px;
}

.story-eyebrow {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3.38px;
    text-transform: uppercase;
    color: var(--color-deep-teal);
}

.story-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(48px, 6vw, 74px);
    line-height: 0.9;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-title .text-purple {
    color: #a64cfc;
}

.story-lead {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-white);
    margin-bottom: 22px;
}

.story-description {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.65;
    max-width: 448px;
    color: var(--color-text-muted);
}

.story-slider-wrap {
    width: 100%;
    min-width: 0;
    overflow: visible;
}

.story-swiper {
    width: 65vw;
    margin-right: -100vw;
    overflow: hidden !important;
    padding: 20px 0 40px;
}

.story-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 848 / 427;
    width: 100%;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-card:hover {
    /* transform: scale(1.02); */
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.45);
;
}

.card-glow-green {
    border-color: var(--color-conifer);
    box-shadow: 0 0 25px rgba(126, 237, 87, 0.45);
}

.card-glow-purple {
    border-color: #a64cfc;
    box-shadow: 0 0 25px rgba(166, 76, 252, 0.45);
}

.card-glow-cyan {
    border-color: var(--color-deep-teal);
    box-shadow: 0 0 25px rgba(0, 179, 179, 0.45);
}

.card-glow-yellow {
    border-color: var(--color-yellow);
    box-shadow: 0 0 25px rgba(255, 197, 54, 0.45);
}

/* Pagination Dots */
.story-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.story-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(126, 237, 87, 0.3) !important;
    opacity: 1 !important;
    border-radius: 50%;
    transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
    cursor: pointer;
}

.story-pagination .swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 4px !important;
    background: #ffffff !important;
}



.rewards-section {
    position: relative;
    padding: 88px 0 120px;
}

.rewards-shell {
    width: min(100%, 1614px);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 40px);
}

.rewards-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    gap: clamp(36px, 5vw, 122px);
    align-items: center;
    padding: clamp(36px, 4.4vw, 80px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-top-color: rgba(255, 255, 255, 0.16);
    overflow: hidden;
    isolation: isolate;
    /* background:
        linear-gradient(
            108.5deg,
            rgba(255, 46, 158, 0.12) 0%,
            rgba(0, 224, 224, 0.08) 60%,
            rgba(166, 76, 240, 0.12) 100%
        ),
        linear-gradient(
            115deg,
            rgba(18, 10, 19, 0.92) 0%,
            rgba(7, 15, 18, 0.96) 53%,
            rgba(18, 11, 30, 0.9) 100%
        ); */
        background: linear-gradient(108.5deg, rgba(255, 46, 158, 0.12) 0%, rgba(0, 224, 224, 0.08) 60%, rgba(166, 76, 240, 0.12) 100%);

        box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0px 1px 0px 1px #ffffff2e inset,
        0px 30px 80px 0px #0000008c;

    backdrop-filter: blur(20px);
}

.rewards-copy {
    max-width: 600px;
}

.rewards-eyebrow {
    margin-bottom: 14px;
    color: #00b3b3;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14.7px;
    line-height: 23.55px;
    letter-spacing: 3.24px;
    text-transform: uppercase;
}

.rewards-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    color: #f5f5f1;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 74px;
    line-height: 54.72px;
    letter-spacing: 1.22px;
    text-transform: uppercase;
}

.rewards-title-accent {
    color: #7eed57;
}

.rewards-description {
    max-width: 505px;
    margin-bottom: 60px;
    color: rgba(245, 242, 234, 0.76);
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.45;
}

.rewards-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

.rewards-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 30px;
    border-radius: 999px;
    border: 1px solid rgba(205, 211, 232, 0.28);
    color: #f5f2ea;
    font-family: var(--font-secondary);
    font-size: 21px;
    letter-spacing: 1.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.rewards-btn:hover {
    transform: translateY(-1px);
}

.rewards-btn-primary {
    border-color: #7eed57;
    background: #7eed57;
    color: #070909;
}

.rewards-btn-primary:hover {
    background: #8ff26e;
    border-color: #8ff26e;
    box-shadow:
        0 0 0 1px rgba(126, 237, 87, 0.45),
        0 0 18px rgba(126, 237, 87, 0.38),
        0 0 34px rgba(126, 237, 87, 0.22);
}

.rewards-btn-secondary {
    background: rgba(12, 14, 18, 0.45);
}

.rewards-btn-secondary:hover {
    color: #7eed57;
    border-color: #7eed57;
    background: rgba(126, 237, 87, 0.08);
    box-shadow:
        0 0 0 1px rgba(126, 237, 87, 0.32),
        0 0 14px rgba(126, 237, 87, 0.28),
        inset 0 0 12px rgba(126, 237, 87, 0.08);
}

.rewards-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 33px;
    padding-top: 22px;
    border-top: 1px solid #7eed57;
}

.rewards-stat {
    display: flex;
    flex-direction: column;
    /* gap: 5px; */
}

.rewards-stat-value {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 50.51px;
    line-height: 1;
    letter-spacing: 0.83px;
    text-transform: uppercase;
}

.rewards-stat-value-purple {
    color: #a64cfc;
}

.rewards-stat-value-green {
    color: #7eed57;
}

.rewards-stat-value-cyan {
    color: #00b3b3;
}

.rewards-stat-label {
    opacity: 0.46;
    color: #c4c4bf;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rewards-tiers {
    display: grid;
    gap: 14px;
}

.rewards-tier {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 118px;
    padding: 20px 20px 20px 19px;
    border-radius: 21.38px;
    border: 1.53px solid rgba(255, 255, 255, 0.11);
    background: #121214;
    opacity: 0.7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
}

.rewards-tier.is-featured {
    background: rgba(126, 237, 87, 0.06);
    border-color: #7eed57;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 1px rgba(126, 237, 87, 0.18);
}

.rewards-tier-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: #7eed5712;
}

.rewards-tier-mark {
    font-family: var(--font-secondary);
    font-size: 40px;
    line-height: 1;
    letter-spacing: 1px;
}

.tier-bronze .rewards-tier-mark {
    color: #d07b34;
}

.tier-silver .rewards-tier-mark {
    color: #bcc5cf;
}

.tier-gold .rewards-tier-mark {
    color: #f0c14a;
}

.tier-elite .rewards-tier-mark {
    color: #7eed57;
}

.rewards-tier-copy {
    min-width: 0;
}

.rewards-tier-name {
    opacity: 0.68;
    margin-bottom: 8px;
    color: #f5f2ea;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 2.57px;
    text-transform: uppercase;
}

.rewards-tier-text {
    color: #f5f2ea;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.7;
}

.rewards-tier-points {
    color: #d6d6d0;
    opacity: 0.44;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 61.2px;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}



.daily-deals-section {
    padding: 116px 0 124px;
    /* background: #020303; */
}

.daily-deals-shell {
    width: min(100%, 1620px);
    margin: 0 auto;
    padding: 0 48px;
}

.daily-deals-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.daily-deals-eyebrow {
    margin-bottom: 6px;
    color: #a64cfc;
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.daily-deals-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    color: #f5f2ea;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(54px, 4.2vw, 74px);
    line-height: 0.96;
    text-transform: uppercase;
}

.daily-deals-title-accent {
    color: #7eed57;
}

.daily-deals-link {
    color: #7eed57;
    font-family: var(--font-secondary);
    font-size: 20px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.daily-deals-link:hover {
    color: #92f26d;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 40px;
}

.deal-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 46, 158, 0.9);
    border-radius: 14px;
    background: #151518;
    box-shadow:
        0 0 0 1px rgba(255, 46, 158, 0.12),
        0 0 22px rgba(255, 46, 158, 0.24);
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.deal-card:hover {
    box-shadow:
        0 0 0 1px rgba(255, 46, 158, 0.24),
        0 0 28px rgba(255, 46, 158, 0.34);
}

.deal-card-main {
    display: flex;
    min-height: 255px;
    flex: 1;
    flex-direction: column;
    padding: 12px 10px 14px;
}

.deal-card-tag {
    color: #7eed57;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
}

.deal-card-tag-stock {
    color: #ff3c6c;
}

.deal-card-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 122px;
    margin: 14px 0 12px;
}

.deal-card-logo {
    display: block;
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.deal-card-logo-shine {
    width: 152px;
}

.deal-card-logo-keef {
    width: 140px;
}

.deal-card-logo-karma {
    width: 96px;
}

.deal-card-logo-stiiizy {
    width: 118px;
}

.deal-card-copy {
    margin-bottom: 4px;
}

.deal-card-brand {
    margin-bottom: 2px;
    color: #00e0e0;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20.58px;
    line-height: 1;
    letter-spacing: 2.47px;
    text-transform: uppercase;
}

.deal-card-description {
    min-height: 26px;
    color: rgba(245, 242, 234, 0.72);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
}

.deal-card-offer {
    margin-top: auto;
    color: #f5f2ea;
    font-family: var(--font-accent);
    font-size: 34.7px;
    line-height: 34.7px;
    text-transform: uppercase;
}

.deal-card-offer-price {
    color: #7eed57;
}

.deal-card-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-top: 1px solid rgba(255, 197, 54, 0.7);
    background: var(--color-yellow);
    color: #0b0b0c;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.68px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.deal-card-cart:hover {
    background: linear-gradient(180deg, #ffd978 0%, #ffcf5c 100%);
}

/* =============================================================
   RESPONSIVE LAYOUT
   Desktop values above remain the 1920px design target. These
   rules let the same design scale down without horizontal overflow.
   ============================================================= */

.header-container,
.hero-content,
.feeling-container {
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
}

.logo img {
    width: clamp(210px, 19.6vw, 377px);
    max-width: 100%;
}

nav {
    gap: clamp(16px, 1.7vw, 32px);
}

nav a {
    font-size: clamp(13px, 0.9vw, 17px);
    letter-spacing: clamp(1px, 0.1vw, 2px);
}

.btn {
    min-height: 49px;
    padding: 16px clamp(20px, 1.6vw, 30px);
    font-size: clamp(15px, 0.9vw, 17px);
}

.three-canvas-container {
    padding: clamp(24px, 3vw, 48px) clamp(16px, 4vw, 40px) 0;
}

#three-canvas {
    width: min(100%, 1168px);
    height: auto;
    aspect-ratio: 1168 / 662;
}

.canvas-to-content-overlay {
    height: clamp(72px, 6.25vw, 120px);
    margin-top: clamp(-60px, -3.125vw, -36px);
    margin-bottom: clamp(-60px, -3.125vw, -36px);
}

.hero-content {
    max-width: 1145px;
    margin-top: clamp(28px, 3.1vw, 60px);
}

.eyebrow {
    font-size: clamp(16px, 1.6vw, 31px);
    line-height: 1.2;
    letter-spacing: clamp(2px, 0.36vw, 7px);
}

.hero-title {
    font-size: clamp(54px, 9.16vw, 176px);
    line-height: 0.82;
    white-space: normal;
}

.hero-title.elevated,
.hero-subtitle {
    font-size: clamp(42px, 5.94vw, 114px);
    line-height: 0.9;
}

.hero-description {
    max-width: min(700px, 100%);
    font-size: clamp(14px, 0.84vw, 16px);
    line-height: 1.65;
}

.feeling-section {
    padding-top: clamp(72px, 6.25vw, 120px);
    padding-bottom: clamp(72px, 6.25vw, 120px);
}

.feeling-container {
    max-width: 1538px;
}

.feeling-title,
.district-headline-white,
.district-headline-teal,
.district-tagline {
    font-size: clamp(44px, 3.85vw, 74px);
    line-height: 0.9;
}

.feeling-card {
    max-width: none;
    min-height: 287px;
    height: auto;
}

.card-icon {
    width: min(149px, 48vw);
    height: auto;
    aspect-ratio: 149 / 110;
}

.card-icon svg,
.card-icon img {
    max-width: 100%;
    height: auto;
}

.district-row {
    min-height: clamp(600px, 36.5vw, 700px);
}

.district-content {
    padding: clamp(48px, 4.2vw, 80px) clamp(32px, 4.2vw, 80px)
        clamp(32px, 3.6vw, 70px) clamp(32px, 3.2vw, 60px);
}

.district-body,
.district-tagline {
    max-width: 575px;
}

.district-cta {
    width: auto;
    min-width: 190px;
}

/* ══════════════════════════════════════════════════════════════════════════
   LOVED IN THE DISTRICT (TESTIMONIALS) SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.testimonials-section {
    position: relative;
    padding: 120px 0 120px 0;
    overflow: hidden;
    background-color: #020202;
}

.testimonials-border-mural {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.testimonials-border-mural img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.testimonial-shell-container {
    background: linear-gradient(180deg, #020202 0%, rgba(2, 2, 2, 0.4) 50%, #020202 100%), url("../assets/images/testimonial-bg.webp");;
}

.testimonials-shell {
    position: relative;
    width: min(100%, 1300px);
    margin: 0 auto;
    padding: 100px 40px 100px 40px;
    z-index: 2;
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.testimonials-eyebrow {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3.38px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    /* margin-bottom: 12px; */
}

.testimonials-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.1;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-read-all {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-conifer);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.24s,
        color 0.24s;
    white-space: nowrap;
    margin-bottom: 6px;
}

.testimonials-read-all:hover {
    border-bottom-color: var(--color-conifer);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111115;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(126, 237, 87, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(126, 237, 87, 0.05);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.testimonial-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

/* .avatar-lp {
    background: linear-gradient(135deg, #a64cfc, #00b3b3);
}

.avatar-mm {
    background: linear-gradient(135deg, #ffc536, #ff2e9e);
}

.avatar-nm {
    background: linear-gradient(135deg, #7eed57, #00b3b3);
} */

.testimonial-user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-username {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-time {
    font-family: var(--font-primary);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.google-logo {
    flex-shrink: 0;
    margin-top: 4px;
}

.testimonial-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.testimonial-stars {
    color: var(--color-yellow);
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
}

.verified-badge {
    flex-shrink: 0;
}

.testimonial-body {
    font-family: var(--font-primary);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    flex-grow: 1;
}

.testimonial-read-more {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    transition:
        color 0.2s,
        border-color 0.2s;
}

.testimonial-read-more:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.testimonials-watermark-container{
    background-color: #020202;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-watermark {
    position: static;
    font-family: var(--font-secondary);
    font-size: clamp(60px, 12.5vw, 240px);
    font-weight: 400;
    line-height: 0.9;
    color: #30303033;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    /* white-space: nowrap; */
    pointer-events: none;
    z-index: 1;
    width: 100%;
    text-align: center;
    margin-top: -100px;
}

/* ══════════════════════════════════════════════════════════════════════════
   VISIT THE STORE (GETTING HERE) SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.store-section {
    position: relative;
    padding: 120px 0;
    background-color: #050507;
    overflow: hidden;
}

.store-shell {
    width: min(100%, 1420px);
    margin: 0 auto;
    padding: 0 48px;
}

.store-header {
    margin-bottom: 48px;
}

.store-eyebrow {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3.38px;
    text-transform: uppercase;
    color: #a64cfc;
    margin-bottom: 16px;
}

.store-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(48px, 5.5vw, 68px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-white);
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.store-info-card {
    background-color: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.store-info-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.store-info-label {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--color-conifer);
    text-transform: uppercase;
    margin-top: 2px;
}

.store-info-value {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.store-info-value a {
    color: var(--color-conifer);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.25s;
}

.store-info-value a:hover {
    opacity: 0.8;
}

.store-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background-color: var(--color-conifer);
    color: #050507;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.store-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(126, 237, 87, 0.45);
    background-color: #9bf272;
}

.store-map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 480px;
}

.store-map {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* Custom map styling & pulse pin */
.custom-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pin-pulse {
    width: 16px;
    height: 16px;
    background-color: #ff3377;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 12px #ff3377;
}

.pin-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ff3377;
    opacity: 0.6;
    animation: pinPulse 1.8s infinite ease-out;
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3.5); opacity: 0; }
}

.pin-label {
    position: absolute;
    left: 26px;
    background-color: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.map-placeholder-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1000;
}

/* ── Leaflet Dark Overlay Styles ────────────────────────────────────── */
.leaflet-container {
    background-color: #0a0a0f !important;
}

.leaflet-bar {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-bar a {
    background-color: #0d0d12 !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: background-color 0.2s, color 0.2s;
}

.leaflet-bar a:hover {
    background-color: var(--color-conifer) !important;
    color: #050507 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════════════════════════ */

.footer-pre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: min(100%, 1420px);
    margin: 0 auto 60px;
    padding: 0 48px;
}

.footer-pre-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-pre-text {
    font-family: var(--font-secondary);
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    text-transform: uppercase;
}

.site-footer {
    position: relative;
    background-image: 
        linear-gradient(to top, rgba(10, 10, 15, 0.99) 0%, rgba(10, 10, 15, 0.9) 100%),
        url("../assets/images/tell-our-story-bg.webp");
    background-size: cover;
    background-position: center bottom;
    padding: 0 0 48px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-shell {
    width: min(100%, 1420px);
    margin: 0 auto;
    padding: 0 48px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    display: block;
}

.footer-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-conifer);
    border: 1px solid rgba(126, 237, 87, 0.2);
    transition: background-color 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}

.footer-social-link svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.footer-social-link:hover {
    background-color: var(--color-conifer);
    color: #050507;
    border-color: var(--color-conifer);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-conifer);
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-primary);
    font-size: 14.5px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-info {
    font-family: var(--font-primary);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info a {
    color: var(--color-conifer);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-contact-info a:hover {
    opacity: 0.8;
}

.footer-store-img-wrap {
    position: relative;
    width: 100%;
    max-width: 220px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-store-img-wrap:hover .footer-store-img {
    opacity: 0.85;
    transform: scale(1.05);
}

.footer-store-img-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(5, 5, 7, 0.85);
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

.footer-bottom {
    width: min(100%, 1420px);
    margin: 32px auto 0;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}


