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

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

::selection{
    background:rgba(212,176,106,0.35);
    color:#111;
}

body::before{
    content:'';
    position:fixed;
    inset:0;

    background:
    radial-gradient(ellipse 90% 55% at 100% 0%,
    rgba(212,176,106,0.12),
    transparent 52%),

    radial-gradient(ellipse 70% 50% at 0% 100%,
    rgba(27,42,34,0.28),
    transparent 55%),

    radial-gradient(ellipse 50% 40% at 50% 50%,
    rgba(159,232,112,0.03),
    transparent 60%);

    pointer-events:none;
    z-index:-2;
}

body{
    background:
    radial-gradient(circle at 15% 10%, rgba(255,79,162,0.22), transparent 45%),
    radial-gradient(circle at 85% 14%, rgba(255,138,0,0.2), transparent 40%),
    radial-gradient(circle at 75% 82%, rgba(22,199,154,0.18), transparent 40%),
    linear-gradient(135deg, #fff7fb 0%, #f7edff 46%, #ecf9ff 100%);
    color:var(--text-primary);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    position:relative;
}

body::after{
    content:'';
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    opacity:0.035;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* AGE GATE */

.age-gate{
    position:fixed;
    inset:0;
    width:100%;
    height:100vh;

    background:rgba(113,23,120,0.45);

    backdrop-filter:blur(10px);

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

    z-index:999999;

    padding:20px;
}

.age-box{
    width:100%;
    max-width:600px;

    background:linear-gradient(
        155deg,
        rgba(255,255,255,0.82),
        rgba(255,255,255,0.62) 45%,
        rgba(255,79,162,0.08)
    );

    border:1px solid rgba(212,176,106,0.14);

    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-soft), 0 0 0 1px rgba(255,255,255,0.04) inset;

    padding:70px 50px;

    text-align:center;

    position:relative;

    overflow:hidden;
}
.logo-img {
  height: 70px;
  width: auto;
  max-height: 70px;
  display: block;
  object-fit: contain;
}
/* GLOW */

.age-box::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(159,232,112,0.08);
    border-radius:50%;
    filter:blur(100px);
    top:-100px;
    right:-100px;
}

.age-logo{
    font-size:40px;
    font-weight:800;
    margin-bottom:30px;
    position:relative;
    z-index:2;
    font-family:'Poppins',sans-serif;
}

.age-box h2{
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.age-box p{
    max-width:450px;
    margin:auto;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.age-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

/* HIDE */

.age-gate.hidden{
    display:none;
}

/* VARIABLES */

:root{

    --bg-primary:#FFF7FB;
    --bg-secondary:#FFF0FA;
    --bg-elevated:#FFFFFF;
    --bg-section:#FCEAFF;

    --accent:#FF4FA2;
    --accent-soft:#FF8A00;
    --accent-glow:rgba(255,79,162,0.32);

    --deep-green:#0A7A74;

    --text-primary:#2C1238;
    --text-muted:#704A83;

    --border-color:rgba(255,79,162,0.2);
    --border-accent:rgba(255,138,0,0.25);

    --glass-bg:rgba(255,255,255,0.62);

    --accent-green:#16C79A;
    --accent-green-soft:rgba(22,199,154,0.2);

    --shadow-soft:0 24px 80px rgba(129,25,123,0.16);
    --shadow-card:0 28px 64px -12px rgba(118,35,137,0.22);
    --radius-lg:28px;
    --radius-xl:36px;

}

/* GLOBAL STYLES */

section{
        padding:140px 8%;
    position:relative;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

h1,h2,h3,h4,h5{
    font-family:'Cormorant Garamond', serif;
    letter-spacing:-0.5px;
    line-height:1;
    color:var(--text-primary);
}

h1,h2,h3{
    background:linear-gradient(
        120deg,
        #9B1B83 0%,
        #FF4FA2 38%,
        #FF8A00 70%,
        #16C79A 100%
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}


h1{
    font-size:clamp(64px, 8vw, 110px);
    font-weight:700;
    line-height:0.95;
}

h2{
    font-size:clamp(42px, 5vw, 72px);
    font-weight:600;
    line-height:1;
}

h3{
    font-size:28px;
    font-weight:600;
}

p{
    color:var(--text-muted);
    line-height:1.8;
    font-size:16px;
}

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

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

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    font-weight:600;

    transition:all 0.35s ease;

    cursor:pointer;

    position:relative;

    overflow:hidden;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        #E4C67E,
        var(--accent) 40%,
        var(--accent-soft)
    );

    color:#0D0D0D;

    box-shadow:
    0 4px 0 rgba(0,0,0,0.12) inset,
    0 12px 36px rgba(212,176,106,0.22);
}

.nav-links .btn-primary{
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:
    0 4px 0 rgba(0,0,0,0.1) inset,
    0 20px 48px rgba(212,176,106,0.28);
}

.btn-secondary{
    background:rgba(255,255,255,0.7);

    border:1px solid rgba(255,79,162,0.26);

    backdrop-filter:blur(14px);

    color:var(--text-primary);
    box-shadow:0 0 0 1px rgba(255,255,255,0.55) inset;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.92);
    border-color:rgba(255,79,162,0.34);
}

.white-label-hero-ctas{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:28px;
}

.white-label-hero-ctas .btn{
    text-decoration:none;
}

/* NAVBAR */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.88) 0%,
        rgba(255,241,251,0.78) 100%
    );
    backdrop-filter:blur(16px) saturate(1.3);

    border-bottom:1px solid rgba(255,79,162,0.16);

    box-shadow:
    0 1px 0 rgba(255,255,255,0.75) inset,
    0 16px 42px rgba(129,25,123,0.12);
}

.nav-container{
    width:100%;
    max-width:1600px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;

    padding:20px 5%;
}

/* LOGO */

.logo{
    flex-shrink:0;

    font-size:34px;
    font-weight:700;

    letter-spacing:4px;

    color:var(--accent);

    font-family:'Poppins',sans-serif;

    white-space:nowrap;
}

a.logo{
    text-decoration:none;
    color:var(--accent);
}

/* NAVIGATION */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:28px;

    flex:1;

    min-width:0;
}

.nav-links a{
    display:flex;
    align-items:center;
    gap:8px;

    color:var(--text-muted);

    transition:0.3s;

    font-weight:500;

    white-space:nowrap;

    font-size:14px;
}

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

/* ACTIVE NAV LINK */

.nav-links a.active{
    color:var(--text-primary);

    position:relative;

    background:
    linear-gradient(
        135deg,
        rgba(255,79,162,0.16),
        rgba(255,138,0,0.10)
    );

    border:1px solid rgba(255,79,162,0.18);

    padding:12px 18px;

    border-radius:999px;

    box-shadow:
    0 6px 18px rgba(255,79,162,0.10),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* SMALL GLOW DOT */

.nav-links a.active::after{
    content:'';

    position:absolute;

    bottom:-6px;
    left:50%;

    transform:translateX(-50%);

    width:6px;
    height:6px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #FF4FA2,
        #16C79A
    );

    box-shadow:
    0 0 12px rgba(255,79,162,0.5);
}

.nav-links a.btn{
    padding:14px 28px;
    min-width:auto;
    border-radius:999px;
    font-weight:700;
    color:#0D0D0D;
    text-decoration:none;
    box-shadow:
      0 4px 0 rgba(0,0,0,0.12) inset,
      0 12px 36px rgba(212,176,106,0.22);
}

.nav-links a.btn:hover{
    transform:translateY(-2px);
}

/* AUX LINKS */

.nav-aux-link{
    font-size:14px;
    letter-spacing:0;
    text-transform:none;
    font-weight:500;
    color:var(--text-muted)!important;
}

/* DIVIDER */

.nav-divider{
    width:1px;
    height:18px;

    background:rgba(255,255,255,0.1);

    flex-shrink:0;
}

/* ICONS */

.icon-nav{
    font-size:13px;
}

.hero-highlights{
    display:flex;
    flex-wrap:wrap;

    justify-content:center;
    align-items:center;

    gap:34px;

    width:100%;
    max-width:1400px;

    margin:80px auto 110px;   /* PERFECT VERTICAL SPACING */

    padding:0 40px;

    position:relative;
    z-index:2;
}

/* CIRCLE CARD */

/* HERO HIGHLIGHT CIRCLES */

.highlight-item{
    width:170px;
    height:170px;

    border-radius:50%;

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

    text-align:center;
    padding:22px;

    position:relative;
    overflow:hidden;

    color:var(--text-primary);

    font-size:14px;
    font-weight:600;
    line-height:1.45;
    letter-spacing:0.02em;

    /* PREMIUM GLASS BACKGROUND */
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,245,251,0.88) 45%,
        rgba(255,255,255,0.72) 100%
    );

    border:1px solid rgba(255,255,255,0.75);

    backdrop-filter:blur(20px) saturate(1.3);

    /* DEPTH */
    box-shadow:
    0 20px 45px rgba(255,79,162,0.10),
    0 10px 25px rgba(22,199,154,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -10px 30px rgba(255,255,255,0.4);

    transition:
    transform 0.45s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;

    border:1px solid rgba(255,255,255,0.65);

box-shadow:
0 0 0 1px rgba(255,79,162,0.08),
0 20px 45px rgba(255,79,162,0.10),
0 10px 25px rgba(22,199,154,0.08),
inset 0 1px 0 rgba(255,255,255,0.95),
inset 0 -10px 30px rgba(255,255,255,0.4);
}

/* TOP LIGHT GLOW */

.highlight-item::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,79,162,0.16),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(22,199,154,0.14),
        transparent 40%
    ),

    radial-gradient(
        circle at center,
        rgba(255,255,255,0.45),
        transparent 65%
    );

    z-index:0;
}

/* SHINY GLASS REFLECTION */

.highlight-item::after{
    content:'';

    position:absolute;

    top:12px;
    left:18px;

    width:55%;
    height:28%;

    border-radius:50%;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.7),
        rgba(255,255,255,0)
    );

    transform:rotate(-18deg);

    pointer-events:none;

    opacity:0.9;
}

/* ICON */

.highlight-item i{
    font-size:48px;

    margin-bottom:16px;

    position:relative;
    z-index:2;

    background:linear-gradient(
        135deg,
        #FF4FA2,
        #FF8A00,
        #16C79A
    );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;

    filter:
    drop-shadow(0 4px 14px rgba(255,79,162,0.22));

    transition:0.4s ease;
}

/* TEXT */

.highlight-item span,
.highlight-item p{
    position:relative;
    z-index:2;
}

/* HOVER */

.highlight-item:hover{
    transform:
    translateY(-10px)
    scale(1.06);

    border-color:rgba(255,79,162,0.28);

    box-shadow:
    0 30px 60px rgba(255,79,162,0.16),
    0 18px 42px rgba(22,199,154,0.14),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}

.highlight-item:hover i{
    transform:scale(1.12) rotate(-4deg);
}
/* HAMBURGER */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:2000;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#000000;
    border-radius:20px;
    transition:0.3s ease;
}

/* ACTIVE ANIMATION */

.hamburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* HERO SECTION */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
   padding:180px 8% 120px;
    gap:72px;
    position:relative;
     overflow:hidden;
}

.hero-content{
    flex:1;
}

.hero-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#7F1D8D;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:12px;
    font-weight:700;
    background:linear-gradient(90deg, rgba(255,79,162,0.22), rgba(255,138,0,0.2));
    border:1px solid rgba(255,79,162,0.28);
    border-radius:999px;
    padding:10px 18px;
    box-shadow:0 10px 24px rgba(154,38,140,0.1);
}

.hero h1{
max-width:720px;
    margin-bottom:36px;
}

.hero h1 span{
    color:var(--accent-green);
}

.hero-description{
    max-width:600px;
    font-size:18px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:min(720px,55vw);
    margin-left:auto;
    position:relative;
    animation:floatHero 7s ease-in-out infinite;
}

@keyframes floatHero{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

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

.hero-image img{
    position:relative;
    z-index:1;
    border-radius:var(--radius-lg);
    max-width:100%;
    height:auto;
    width:150%;
    display:block;

    border:1px solid rgba(212,176,106,0.14);
    transform:rotate(-1.5deg);

    transition:transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease;

    box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 80px rgba(212,176,106,0.08);
}

.hero-image img:hover{
    transform:rotate(0deg) scale(1.015);
    box-shadow:
    0 36px 88px -16px rgba(0,0,0,0.65),
    0 0 0 1px rgba(212,176,106,0.22) inset,
    0 0 100px rgba(159,232,112,0.06);
}

/* Premium frame ring */

.hero-image::after{
    content:'';
    position:absolute;
    inset:-14px;
    border-radius:calc(var(--radius-lg) + 10px);
    border:1px solid rgba(212,176,106,0.09);
    pointer-events:none;
    z-index:0;
    opacity:0.85;
}

/* GLOW EFFECT */

.hero-image::before{
    content:'';

    position:absolute;

    width:min(520px,90%);
    height:min(520px,90%);

    background:
    radial-gradient(
        circle,
        rgba(212,176,106,0.2),
        rgba(27,42,34,0.06) 45%,
        transparent 70%
    );

    filter:blur(72px);

    z-index:-1;
}


.hero::after{
    content:'';

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:160px;

    background:linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.02)
    );

    pointer-events:none;
}
/* SECTION TITLE */

.section-title{
    color:var(--accent);
    letter-spacing:0.28em;
    text-transform:uppercase;
    font-size:12px;
    font-weight:600;
    position:relative;
    margin-bottom:44px;
}

.section-title > p::after,
p.section-title::after{
    content:'';
    display:block;
    width:48px;
    height:2px;
    margin-top:12px;
    border-radius:2px;
    background:linear-gradient(
        90deg,
        var(--accent-green),
        rgba(212,176,106,0.4),
        transparent
    );
    opacity:0.85;
}

/* Inline page hero labels: keep rule compact */

p.section-title::after{
    flex-basis:100%;
    order:10;
    width:48px;
    margin-top:6px;
    margin-left:auto;
    margin-right:auto;
}

.section-title p{
    display:inline-flex;
    align-items:center;
    color:#7F1D8D;
    margin-bottom:12px;
    letter-spacing:0.16em;
    font-weight:700;
    font-size:11px;
    text-transform:uppercase;
    background:linear-gradient(90deg, rgba(255,79,162,0.2), rgba(255,138,0,0.18));
    border:1px solid rgba(255,79,162,0.24);
    border-radius:999px;
    padding:8px 14px;
}

.section-title h2{
    max-width:700px;
    letter-spacing:-0.02em;
}

/* CATEGORY SECTION */

.categories{
    background:var(--bg-section);
}

.features,
.white-label-section,
.dispensary-section{
    background:linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
}

.featured-products,
.wellness-section,
.newsletter-section{
    background:
    radial-gradient(circle at 85% 14%, rgba(255,138,0,0.1), transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(255,79,162,0.08), transparent 44%),
    var(--bg-section);
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
}

.category-card{
    background:linear-gradient(
        165deg,
        rgba(255,255,255,0.72),
        rgba(255,255,255,0.52) 55%,
        rgba(255,79,162,0.08)
    );
    border:1px solid var(--border-color);
    border-radius:var(--radius-lg);
    overflow:hidden;
    transition:transform 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, box-shadow 0.45s ease;
    position:relative;
    box-shadow:0 18px 48px rgba(129,25,123,0.14);
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:rgba(159,232,112,0.28);
    box-shadow:var(--shadow-card), 0 0 0 1px rgba(212,176,106,0.06) inset;
}

.category-card-media{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;

    background:
    radial-gradient(
        circle at top,
        rgba(255,79,162,0.10),
        transparent 45%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(22,199,154,0.08),
        transparent 40%
    ),
    linear-gradient(
        145deg,
        rgba(255,255,255,0.95),
        rgba(255,245,251,0.92)
    );

    border-bottom:1px solid rgba(255,79,162,0.08);
}

.category-card-media::after{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        transparent 40%,
        rgba(255,255,255,0.12) 100%
    );

    pointer-events:none;
    z-index:1;
}

.category-card-media img{
    position:relative;
    z-index:0;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:28px 32px 36px;
    transition:transform 0.55s cubic-bezier(0.22,1,0.36,1);
    filter:drop-shadow(0 24px 36px rgba(0,0,0,0.55));
}

.category-card:hover .category-card-media img{
    transform:scale(1.04) translateY(-4px);
}

.category-content{
    padding:28px 32px 32px;
    position:relative;
    z-index:2;
}

.category-content h3{
    margin-bottom:15px;
}

.category-content p{
    margin-bottom:25px;
}

.category-content a{
    color:var(--accent-green);
    font-weight:600;
    letter-spacing:0.04em;
    font-size:14px;
    transition:color 0.25s ease, gap 0.25s ease;
}

.category-content a:hover{
    color:#B8F085;
}

/* CARD GLOW EFFECT */

.category-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(159,232,112,0.06);
    border-radius:50%;
    top:-100px;
    right:-100px;
    filter:blur(80px);
    z-index:0;
    pointer-events:none;
}

.category-card > *{
    position:relative;
    z-index:1;
}


/* FEATURES SECTION */

.features{
    position:relative;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:linear-gradient(
        165deg,
        rgba(255,255,255,0.8),
        rgba(255,255,255,0.55) 55%,
        rgba(255,79,162,0.08)
    );

    border:1px solid var(--border-color);

    border-radius:var(--radius-lg);

    padding:36px 28px;

    transition:transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, box-shadow 0.4s ease;

    backdrop-filter:blur(12px);

    box-shadow:0 12px 40px rgba(129,25,123,0.12);
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(159,232,112,0.28);
    box-shadow:0 20px 52px rgba(0,0,0,0.3);
}

.feature-card h3{
    margin-bottom:18px;
    color:var(--text-primary);
}

.feature-card p{
    font-size:15px;
}

/* FEATURED PRODUCTS */

.featured-products{
    background:var(--bg-section);
}

.products-grid{
    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:40px;

    align-items:stretch;
}
.product-card{
    position:relative;

    background:
    linear-gradient(
        165deg,
        rgba(255,255,255,0.82),
        rgba(255,255,255,0.58) 50%,
        rgba(255,79,162,0.08)
    );

    border:1px solid rgba(255,79,162,0.18);

    border-radius:var(--radius-lg);

    overflow:hidden;

    transition:transform 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, box-shadow 0.5s ease;

    backdrop-filter:blur(16px) saturate(1.1);

    isolation:isolate;
    box-shadow:0 16px 48px rgba(129,25,123,0.14);
}

.product-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,176,106,0.35),
        rgba(159,232,112,0.2),
        transparent
    );
    opacity:0.55;
    z-index:3;
    pointer-events:none;
}

.product-card:hover{
    transform:
    translateY(-12px)
    scale(1.008);

    border-color:
    rgba(212,176,106,0.28);

    box-shadow:
    var(--shadow-card),
    0 0 40px rgba(159,232,112,0.04);
}

.product-glow{
    position:absolute;

    width:240px;
    height:240px;

    background:
    radial-gradient(
        circle,
        rgba(212,176,106,0.12),
        transparent 70%
    );

    top:-80px;
    right:-80px;

    filter:blur(50px);

    z-index:-1;
}

.product-image{
    height:380px;

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

    padding:50px;

    position:relative;
}

.product-image::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(159,232,112,0.08);
    border-radius:50%;
    filter:blur(80px);
}

.product-image img{
    max-height:300px;

    object-fit:contain;

    transition:0.6s ease;

    filter:
    drop-shadow(
        0 30px 60px rgba(0,0,0,0.35)
    );
}

.product-info{
    padding:30px;
}

.product-category{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(159,232,112,0.1);
    color:var(--accent-green);
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.product-info h3{
    margin-bottom:15px;
}

.product-card:hover .product-image img{
    transform:
    translateY(-10px)
    scale(1.04)
    rotate(-2deg);
}

.product-badges{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-top:24px;
    margin-bottom:24px;
}

.product-link{
    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--accent);

    font-weight:600;

    transition:0.3s ease;
}

.product-link:hover{
    gap:16px;
}

.badge{
    padding:10px 16px;

    border-radius:999px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.06);

    font-size:13px;

    color:var(--text-primary);

    backdrop-filter:blur(10px);

    transition:0.3s ease;
}
.badge:hover{
    border-color:
    rgba(212,176,106,0.25);

    transform:translateY(-2px);
}

/* DISPENSARY SECTION */

.dispensary-section{
    position:relative;
}

.dispensary-box{
    background:linear-gradient(
        165deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015) 40%,
        rgba(0,0,0,0.28)
    );

    border:1px solid var(--border-color);

    border-radius:var(--radius-xl);

    padding:80px 60px;

    text-align:center;

    position:relative;

    overflow:hidden;
    box-shadow:var(--shadow-soft), 0 0 0 1px rgba(212,176,106,0.05) inset;
}

.dispensary-box::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(159,232,112,0.06);
    border-radius:50%;
    filter:blur(100px);
    top:-150px;
    right:-100px;
}

.dispensary-box p{
    color:var(--accent-green);
    letter-spacing:2px;
    margin-bottom:20px;
    font-weight:600;
}

.dispensary-box h2{
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

.dispensary-search{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.dispensary-search input{
    width:350px;
    padding:18px 24px;
    border-radius:50px;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.85);
    color:var(--text-primary);
    outline:none;
    font-size:16px;
    transition:border-color 0.25s ease, box-shadow 0.25s ease;
}

.dispensary-search input:focus{
    border-color:rgba(159,232,112,0.38);
    box-shadow:0 0 0 3px rgba(159,232,112,0.1);
}

.states-grid{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.state-card{
    padding:18px 40px;
    border-radius:50px;
    background:rgba(255,255,255,0.8);
    border:1px solid var(--border-color);
    transition:0.3s ease;
    cursor:pointer;
    font-weight:600;
}

.state-card:hover{
    background:rgba(159,232,112,0.08);
    border-color:rgba(159,232,112,0.3);
}


.state-dropdown {
    width: 280px;
    padding: 16px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,243,251,0.82));
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    appearance: none;
}

.state-dropdown option {
    background: #fff3fb;
    color: var(--text-primary);
}

.state-dropdown:hover {
    border-color: rgba(159, 232, 112, 0.4);
}

.state-dropdown:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(159, 232, 112, 0.15);
}

.state-select-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
}

.state-select-wrap i {
    font-size: 18px;
    color: var(--text-primary);
    flex-shrink: 0;
}

/* FIX: prevent duplicate box rule conflict */
.dispensary-box {
    position: relative;
}

/* MAP SAFE FIX */
#map {
    width: 100%;
    height: 500px;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212,176,106,0.12);
    overflow: hidden;
    box-shadow:0 24px 56px rgba(0,0,0,0.35);
}

/* WELLNESS SECTION */

.wellness-section{
    background:var(--bg-section);
    position:relative;
}

.wellness-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.wellness-subtitle{
    display:inline-flex;
    align-items:center;
    color:#7F1D8D;
    letter-spacing:2px;
    margin-bottom:20px;
    font-weight:700;
    text-transform:uppercase;
    font-size:12px;
    background:linear-gradient(90deg, rgba(255,79,162,0.2), rgba(22,199,154,0.2));
    border:1px solid rgba(255,79,162,0.2);
    border-radius:999px;
    padding:8px 16px;
}

.wellness-content h2{
    max-width:600px;
    margin-bottom:30px;
}

.wellness-description{
    max-width:550px;
    margin-bottom:40px;
}

.wellness-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.wellness-item{
    background:rgba(255,255,255,0.03);
    border:1px solid var(--border-color);
    padding:18px 20px;
    border-radius:18px;
    transition:0.3s ease;
    font-weight:500;
}

.wellness-item:hover{
    border-color:rgba(159,232,112,0.3);
    transform:translateY(-4px);
}

.video-card{
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.75);
    position:relative;
}

.video-card iframe{
    width:100%;
    height:450px;
    display:block;
}

.video-placeholder-panel{
    min-height:450px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 32px;
    background:
    radial-gradient(
        ellipse 80% 60% at 50% 0%,
        rgba(212,176,106,0.08),
        transparent 55%
    ),
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(0,0,0,0.35)
    );
    border:1px dashed rgba(212,176,106,0.2);
}

.video-placeholder-panel .fa-circle-play{
    font-size:3.2rem;
    color:rgba(212,176,106,0.5);
    margin-bottom:4px;
}

.video-placeholder-title{
    font-weight:600;
    color:var(--text-primary);
    margin-bottom:12px;
    font-size:18px;
    font-family:'Cormorant Garamond',serif;
    letter-spacing:0.02em;
}

.video-placeholder-copy{
    font-size:15px;
    color:var(--text-muted);
    max-width:360px;
    line-height:1.75;
}


/* WHITE LABEL SECTION */

.white-label-section{
    position:relative;
}

.white-label-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.white-label-subtitle{
    display:inline-flex;
    align-items:center;
    color:#7F1D8D;
    letter-spacing:2px;
    margin-bottom:20px;
    font-weight:700;
    text-transform:uppercase;
    font-size:12px;
    background:linear-gradient(90deg, rgba(255,79,162,0.2), rgba(22,199,154,0.2));
    border:1px solid rgba(255,79,162,0.2);
    border-radius:999px;
    padding:8px 16px;
}

.white-label-content h2{
    max-width:650px;
    margin-bottom:30px;
}

.white-label-description{
    max-width:600px;
    margin-bottom:40px;
}

.white-label-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.white-label-item{
    background:rgba(255,255,255,0.03);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:18px 20px;
    transition:0.3s ease;
    font-weight:500;
}

.white-label-item:hover{
    border-color:rgba(159,232,112,0.3);
    transform:translateY(-4px);
}

/* RIGHT CARD */

.white-label-card{
    position:relative;
    background:linear-gradient(
        165deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02) 50%,
        rgba(0,0,0,0.25)
    );

    border:1px solid rgba(212,176,106,0.1);

    border-radius:var(--radius-xl);

    padding:60px 50px;

    overflow:hidden;
    box-shadow:var(--shadow-card);
}

.label-glow{
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(159,232,112,0.08);
    border-radius:50%;
    filter:blur(90px);
    top:-100px;
    right:-100px;
}

.label-content{
    position:relative;
    z-index:2;
}

.label-content h3{
    margin-bottom:25px;
}

.label-content p{
    margin-bottom:40px;
}

.label-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    flex:1;
    min-width:180px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    padding:24px;
    border-radius:20px;
}

.stat-box h4{
    font-size:26px;
    margin-bottom:10px;
    color:var(--accent-green);
}

.stat-box span{
    color:var(--text-muted);
    font-size:14px;
}


/* NEWSLETTER SECTION */

.newsletter-section{
    background:var(--bg-section);
    position:relative;
}

.newsletter-box{
    position:relative;

    background:linear-gradient(
        165deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.018) 45%,
        rgba(0,0,0,0.3)
    );

    border:1px solid rgba(212,176,106,0.1);

    border-radius:var(--radius-xl);

    padding:88px 56px;

    text-align:center;

    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

/* GLOW */

.newsletter-box::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(159,232,112,0.06);
    border-radius:50%;
    filter:blur(100px);
    top:-150px;
    left:-100px;
}

.newsletter-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#7F1D8D;
    letter-spacing:2px;
    margin-bottom:20px;
    font-weight:700;
    text-transform:uppercase;
    font-size:12px;
    background:linear-gradient(90deg, rgba(255,79,162,0.2), rgba(255,138,0,0.18));
    border:1px solid rgba(255,79,162,0.24);
    border-radius:999px;
    padding:10px 16px;
    position:relative;
    z-index:2;
}

.newsletter-box h2{
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.newsletter-description{
    max-width:650px;
    margin:auto;
    margin-bottom:45px;
    position:relative;
    z-index:2;
}

/* FORM */

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.newsletter-form input{
    width:380px;
    max-width:100%;
    padding:18px 24px;
    border-radius:50px;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.9);
    color:var(--text-primary);
    outline:none;
    font-size:16px;
    transition:border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form input:focus{
    border-color:rgba(159,232,112,0.4);
    box-shadow:0 0 0 3px rgba(159,232,112,0.1);
}

/* SOCIAL LINKS */

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

.social-links a{
    padding:14px 26px;
    border-radius:50px;
    background:rgba(255,255,255,0.03);
    border:1px solid var(--border-color);
    transition:0.3s ease;
    font-weight:500;
}

.social-links a:hover{
    border-color:rgba(159,232,112,0.3);
    transform:translateY(-4px);
}


/* FOOTER */

.footer{
    background:
    radial-gradient(circle at 8% 20%, rgba(255,79,162,0.15), transparent 38%),
    radial-gradient(circle at 92% 10%, rgba(255,138,0,0.14), transparent 34%),
    linear-gradient(180deg, #fff4fb 0%, #f6e8ff 100%);
    border-top:1px solid rgba(255,79,162,0.2);
    padding:100px 8% 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:60px;
}

.footer-logo{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
    font-family:'Poppins',sans-serif;
    background:linear-gradient(
        135deg,
        #F0D9A6,
        var(--accent) 45%,
        var(--accent-soft)
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    letter-spacing:0.08em;
}

.footer-column p{
    max-width:350px;
}

.footer-column h3{
    font-size:20px;
    margin-bottom:25px;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column a{
    color:var(--text-muted);
    margin-bottom:16px;
    transition:0.3s ease;
}

.footer-column a:hover{
    color:var(--accent-green);
    transform:translateX(4px);
}

/* FOOTER BOTTOM */

.footer-bottom{
    padding-top:40px;
    border-top:1px solid rgba(255,255,255,0.05);

    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-bottom p{
    font-size:14px;
}

.footer-disclaimer{
    max-width:700px;
}


html{
    scroll-behavior:smooth;
}

.products,
.featured-products{
    position:relative;
    overflow:hidden;
}

.nav-aux-link{
    font-size:14px;
    letter-spacing:0;
    text-transform:none;
    font-weight:500;
    color:var(--text-muted)!important;
}

@media(min-width:992px){
    .nav-aux-link{
        padding-left:8px;
    }

    .nav-divider{
        width:1px;
        height:18px;
        background:rgba(255,255,255,0.1);
        margin:0 4px;
        align-self:center;
    }
}

@media(max-width:991px){
    .nav-divider{
        width:80%;
        height:1px;
        background:rgba(255,255,255,0.08);
        margin:12px 0;
    }
}

.page-hero{
    padding:220px 8% 120px;

    position:relative;

    text-align:center;

    overflow:hidden;
}

.page-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(
        ellipse 80% 55% at 50% 0%,
        rgba(212,176,106,0.07),
        transparent 58%
    );
    pointer-events:none;
    z-index:0;
}

.page-hero .container{
    max-width:1100px;
    margin:auto;
    position:relative;
    z-index:1;
}

.page-hero h1{
    margin:auto;
    margin: bottom 95px;

    line-height:1.2;
    max-width:900px;
}

.page-lede{
   

    max-width:760px;

    font-size:18px;

    line-height:1.9;
}


.page-hero .page-lede{
    margin-top:50px;
}

.page-lede{
    
    font-size:17px;
    max-width:720px;
    margin:auto
}
.catalog-intro{
    margin-bottom:48px;
}

.catalog-tabs{
    display:flex;
    flex-wrap:wrap;

    justify-content:center;
    align-items:center;

    gap:18px;

    width:100%;

    margin:50px auto 70px;

    padding:0 20px;
}

.catalog-tab{
    padding:16px 30px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,0.08);

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );

    color:var(--text-muted);

    font-family:inherit;

    font-size:14px;

    font-weight:600;

    letter-spacing:0.04em;

    cursor:pointer;

    transition:all 0.35s ease;

    backdrop-filter:blur(10px);

    min-width:150px;

    text-align:center;
}

.catalog-tab:hover{
    transform:translateY(-3px);

    border-color:rgba(212,176,106,0.25);

    color:var(--text-primary);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25);
}

.catalog-tab.active{
    background:
    linear-gradient(
        135deg,
        rgba(212,176,106,0.18),
        rgba(159,232,112,0.08)
    );

    border-color:rgba(159,232,112,0.35);

    color:var(--text-primary);

    box-shadow:
    0 12px 40px rgba(159,232,112,0.08);
}


.catalog-panel{
    margin-top:30px;
}
.product-image--coming-soon{
    border:1px dashed rgba(255,255,255,0.14);
    background:
    linear-gradient(
        145deg,
        rgba(212,176,106,0.06),
        rgba(255,255,255,0.02)
    );
    border-radius:12px;
    margin:0 24px;
    min-height:280px;
}

.product-coming-soon-label{
    font-size:clamp(17px,2.4vw,24px);
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--accent);
    text-align:center;
    line-height:1.35;
    padding:0 16px;
}

.product-card--soon .product-image--coming-soon{
    opacity:1;
}

.quick-strip{
    background:rgba(255,255,255,0.76);
    border-top:1px solid rgba(255,79,162,0.16);
    border-bottom:1px solid rgba(255,79,162,0.16);
    padding:18px 8%;
}

.quick-strip-inner{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:12px 28px;
    font-size:13px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--text-muted);
}

.quick-strip-inner a{
    color:var(--accent);
    font-weight:600;
    transition:0.25s ease;
}

.quick-strip-inner a:hover{
    color:var(--text-primary);
}

.form-shell{
    max-width:560px;
    margin-top:40px;
    padding:40px;
    border-radius:28px;
    border:1px solid var(--border-color);
    background:linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
}

.form-grid{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-shell label{
    display:block;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#1b1b1b;
    margin-bottom:8px;
}

.form-shell input,
.form-shell textarea,
.form-shell select{
    width:100%;
    padding:16px 18px;
    border-radius:16px;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.92);
    color:var(--text-primary);
    font-family:inherit;
    font-size:15px;
    outline:none;
}

.form-shell textarea{
    min-height:140px;
    resize:vertical;
}

.form-shell input:focus,
.form-shell textarea:focus,
.form-shell select:focus{
    border-color:rgba(159,232,112,0.45);
}

.wellness-video-wall{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:28px;
    margin-top:48px;
}

.video-slot iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    display:block;
    border-radius:20px;
}

.video-slot{
    border-radius:22px;
    overflow:hidden;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.78);
}

.video-slot-caption{
    padding:18px 20px;
    font-size:14px;
    color:var(--text-muted);
}

.video-slot.placeholder .video-slot-placeholder{
    aspect-ratio:16/9;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:12px;
    padding:24px;
    text-align:center;
    background:rgba(255,255,255,0.02);
}

.asset-cards{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:28px;
    margin-top:48px;
}

.asset-card{
    padding:32px;
    border-radius:24px;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.03);
    transition:0.35s ease;
}

.asset-card:hover{
    border-color:rgba(212,176,106,0.25);
    transform:translateY(-6px);
}

.asset-card h3{
    margin-bottom:12px;
    font-size:22px;
}

.asset-card p{
    margin-bottom:22px;
    font-size:15px;
}

.merch-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:28px;
    margin-top:48px;
}

.merch-card{
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border-color);
    background:rgba(255,255,255,0.02);
}

.merch-card img{
    height:240px;
    object-fit:cover;
}

.merch-body{
    padding:24px;
}

.compliance-callout{
    margin-top:48px;
    padding:28px 32px;
    border-radius:20px;
    border:1px dashed rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.6);
}

.compliance-callout p{
    font-size:14px;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:start;
}

@media(max-width:991px){
    .two-col{
        grid-template-columns:1fr;
    }
}

.products::before,
.featured-products::before{
    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        circle,
        rgba(212,176,106,0.05),
        transparent 70%
    );

    top:-200px;
    left:-200px;

    filter:blur(120px);

    pointer-events:none;
}

/* TESTIMONIAL TEXT VISIBILITY FIX */

.wpt-heading{
  color: #111 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.wpt-card-title{
  color: #111 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.wpt-card-quote{
  color: #222 !important;
}

.wpt-card-meta{
  color: #0A7A74 !important;
}

/* WELLNESS SECTION LAYOUT IMPROVEMENT */

.wellness-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.wellness-content{
    flex:1 1 520px;
}

.wellness-video{
    flex:1 1 480px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* TESTIMONIAL SLIDER CARD */

.home-wellness-testimonial-slider.video-card{
    width:100%;
    max-width:540px;
    min-height:430px;
    border-radius:32px;
    overflow:hidden;
    position:relative;

    background:
      linear-gradient(
        165deg,
        rgba(255,255,255,0.96) 0%,
        rgba(252,234,255,0.92) 45%,
        rgba(255,255,255,0.95) 100%
      );

    border:1px solid rgba(255,79,162,0.10);

    box-shadow:
      0 25px 70px rgba(127,29,141,0.10),
      0 10px 30px rgba(22,199,154,0.08);

    backdrop-filter:blur(12px);
}

/* INNER WRAPPER */

.hwts-inner{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:34px 30px 28px;
}

/* TOP SMALL TITLE */

.hwts-eyebrow{
    text-align:center;
    font-size:12px;
    font-weight:700;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#7f1d8d;
    margin-bottom:18px;
}

/* VIEWPORT */

.hwts-viewport{
    flex:1;
    overflow:hidden;
    position:relative;
    border-radius:22px;

    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.72),
        rgba(255,255,255,0.42)
      );

    border:1px solid rgba(255,79,162,0.08);
}

/* TRACK */

.hwts-track{
    display:flex;
    height:100%;
    transition:transform .55s cubic-bezier(.22,1,.36,1);
}

/* EACH SLIDE */

.hwts-slide{
    flex:0 0 100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:40px 30px;
}

/* TESTIMONIAL TEXT */

.hwts-quote{
    font-size:clamp(1.1rem,2vw,1.35rem);
    line-height:1.8;
    font-weight:500;
    color:#1a0f28;
    max-width:420px;
    margin:auto;
}

/* BIG QUOTATION */

.hwts-quote::before{
    content:"“";
    display:block;

    font-size:3.4rem;
    line-height:1;

    margin-bottom:14px;

    background:linear-gradient(135deg,#ff4fa2,#16c79a);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

/* AUTHOR */

.hwts-author{
    margin-top:24px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    color:#16c79a;
}

/* CONTROLS */

.hwts-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    margin-top:24px;
}

/* BUTTONS */

.hwts-btn{
    width:46px;
    height:46px;
    border-radius:50%;
    border:none;

    background:#fff;

    color:#7f1d8d;

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

    cursor:pointer;

    transition:.25s ease;

    box-shadow:0 8px 22px rgba(127,29,141,0.10);
}

.hwts-btn:hover{
    transform:translateY(-2px) scale(1.05);

    background:linear-gradient(135deg,#ff4fa2,#16c79a);

    color:#fff;
}

/* DOTS */

.hwts-dots{
    display:flex;
    align-items:center;
    gap:8px;
}

.hwts-dot{
    width:9px;
    height:9px;
    border-radius:999px;
    border:none;

    background:rgba(127,29,141,.25);

    cursor:pointer;

    transition:.25s ease;
}

.hwts-dot.is-active{
    width:26px;

    background:linear-gradient(90deg,#ff4fa2,#16c79a);
}

/* RESPONSIVE */

@media(max-width:992px){

    .wellness-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .wellness-video{
        width:100%;
    }

    .home-wellness-testimonial-slider.video-card{
        max-width:100%;
        min-height:390px;
    }

    .hwts-slide{
        padding:32px 22px;
    }
}

@media(max-width:600px){

    .home-wellness-testimonial-slider.video-card{
        min-height:360px;
        border-radius:24px;
    }

    .hwts-inner{
        padding:24px 18px 20px;
    }

    .hwts-quote{
        font-size:1rem;
        line-height:1.7;
    }

    .hwts-btn{
        width:42px;
        height:42px;
    }
}