/* ======================================================
   HK GUMMIES PAGE
====================================================== */

/* ======================
   HK GUMMIES HERO
====================== */
.hk-gummies-hero {
    position: relative;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    padding: clamp(90px, 12vw, 160px) 0;
    color: #fff;
    overflow: hidden;
}

/* overlay for text readability */
.hk-gummies-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

.hk-gummies-hero .hero-inner-hk {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* breadcrumb */
.hero-breadcrumb {
    display: inline-block;
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 14px;
}

/* title */
.hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

/* description */
.hero-desc {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    opacity: .95;
}

/* mobile refinement */
@media (max-width: 768px) {
    .hk-gummies-hero {
        padding: 80px 0;
        text-align: left;
    }
}


/* ----------------------
   SECTION 2: INTRO
---------------------- */
/* ======================
   HK GUMMIES INTRO
====================== */
.hk-gummies-intro {
    position: relative;
    padding: clamp(70px, 10vw, 120px) 0;
    background: #fff;
    overflow: hidden;
}

/* soft abstract shape */
.intro-bg-shape {
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle at center,
        rgba(255, 140, 0, 0.12),
        rgba(255, 140, 0, 0.02)
    );
    top: -180px;
    right: -180px;
    border-radius: 50%;
    z-index: 0;
}

/* subtle dot texture */
.intro-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(0,0,0,0.04) 1px,
        transparent 1px
    );
    background-size: 18px 18px;
    opacity: .4;
    z-index: 0;
}

/* layout */
.intro-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}

/* image card */
.intro-image {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.intro-image::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 26px;
    border: 2px solid rgba(255,140,0,.2);
    z-index: -1;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* content */
.intro-content {
    position: relative;
    padding-left: 24px;
}

.intro-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 42px;
    background: linear-gradient(
        180deg,
        #ff8c00,
        #ffb347
    );
    border-radius: 3px;
}

.intro-content p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.85;
    color: #333;
    margin: 0;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-content {
        padding-left: 0;
    }

    .intro-content::before {
        display: none;
    }

    .intro-image {
        max-width: 420px;
        margin: 0 auto;
    }
}


/* ======================
   HK GUMMIES FEATURE
====================== */
.hk-gummies-feature {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0;
    text-align: center;
    overflow: hidden;
    background: #fff;
}

/* background image */
.feature-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
    z-index: 0;
}

/* soft overlay */
.feature-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(219deg, rgb(255 255 255 / 61%), rgb(255 255 255 / 3%));
}

/* layout */
.feature-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* content */
.feature-content h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-content p {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 48px;
    color: #ffffff;
}

/* image */
.feature-image {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* subtle floating polish */
.feature-image::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 28px;
    z-index: -1;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {
    .feature-content p {
        margin-bottom: 36px;
    }

    .feature-image {
        max-width: 90%;
    }
}


/* ----------------------
   SECTION 4: PRODUCTS
---------------------- */
.hk-gummies-products {
    padding: 90px 0 100px;
    background: #ffffff;
}

.hk-gummies-products .section-title {
    text-align: center;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    margin-bottom: 50px;
    color: #0f172a;
}

/* GRID */
.hk-gummies-products .gummies-grid {
    display: grid;
    gap: 28px;
}

/* CARD */
.gummy-card {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--card-bg),
        var(--card-bg-2)
    );
    border-radius: 28px;
    padding: 28px 24px 30px;
    text-align: center;
    text-decoration: none;
    color: #0f172a;
    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Decorative shape */
.gummy-bg-shape {
    position: absolute;
    inset: -30% -20% auto -20%;
    height: 120%;
    background:
        radial-gradient(circle at top left,
            rgba(255,255,255,.5),
            transparent 60%);
    z-index: 0;
}

.gummy-card img {
    position: relative;
    z-index: 1;
    max-width: 200px;
    margin: 0 auto 16px;
    transition: transform .4s ease;
}

.gummy-card h3 {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}

/* Hover */
.gummy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.gummy-card:hover img {
    transform: scale(1.05);
}

/* GRID BREAKPOINTS */
@media (min-width: 640px) {
    .hk-gummies-products .gummies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hk-gummies-products .gummies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ----------------------
   ANIMATIONS
---------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
