       :root {
            --accent: #e6cc8f;
            --dark: #0b0b0b;
            --muted: #7a6f66;
            --white: #ffffff;
            --radius: 14px;
            --maxW: 480px;
        }

        /* Mobile-first layout */
        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        body {
            margin: 0;
            font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            background: linear-gradient(180deg, var(--white) 0%, #f9f6f1 100%);
            color: var(--dark);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-tap-highlight-color: transparent;
            display: flex;
            justify-content: center;
            padding: 18px 12px 90px;
            /* bottom space for sticky buy */
        }

        .page {
            width: 100%;
            max-width: var(--maxW);
            background: transparent;
        }

        header {
            align-items: center;
            padding: 10px 6px;
            margin-bottom: 10px;
        }

        .logo {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(20, 20, 20, 0.06);
            flex-shrink: 0;
        }

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

        .brand {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 18px;
            line-height: 1;
            color: var(--dark)
        }

        .tag {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px
        }

        /* Slider */
        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 12px;
            box-shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
            overflow: hidden;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 360px;
            border-radius: 10px;
            overflow: hidden;
            background: linear-gradient(180deg, #fff, #f7f4ef);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slides {
            display: flex;
            height: 100%;
            transition: transform .55s cubic-bezier(.2, .9, .2, 1);
            will-change: transform;
        }

        .slides img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            padding: 8px;
            user-select: none;
        }

        .dots {
            display: flex;
            gap: 6px;
            justify-content: center;
            margin-top: 10px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
        }

        .dot.active {
            background: var(--dark)
        }
.slider {
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

        /* Info area */
        .info {
            padding: 12px 6px;
            text-align: left;
        }

        h1 {
            font-size: 16px;
            margin: 6px 0 0
        }

        .price {
            font-weight: 700;
            color: var(--dark);
            margin-top: 6px;
            font-size: 18px;
        }

        .badge {
            display: inline-block;
            background: var(--accent);
            color: #000;
            padding: 6px 10px;
            border-radius: 999px;
            font-weight: 600;
            margin-top: 8px;
            font-size: 13px;
            box-shadow: 0 6px 14px rgba(230, 204, 143, 0.18);
        }

        .section {
            margin-top: 14px;
        }

        .benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .benefit {
            background: #fff;
            padding: 10px;
            border-radius: 10px;
            text-align: left;
            box-shadow: 0 6px 18px rgba(19, 19, 19, 0.04);
            font-size: 13px;
        }

        .muted {
            color: var(--muted);
            font-size: 13px
        }

        /* How to apply */
        .how {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 8px;
            margin-top: 8px;
        }

        .step {
            min-width: 180px;
            background: linear-gradient(180deg, #fff, #f8f3ea);
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 10px 24px rgba(10, 10, 10, 0.03);
            flex-shrink: 0;
        }

        .step img {
            width: 88px;
            height: 88px;
            border-radius: 999px;
            object-fit: cover;
            display: block;
            margin: 6px auto
        }

        .step h4 {
            margin: 6px 0 2px;
            font-size: 14px
        }

        .step p {
            font-size: 13px;
            color: var(--muted)
        }

        /* Reviews */
        .reviews .review {
            background: #fff;
            padding: 12px;
            border-radius: 10px;
            margin-top: 8px;
            box-shadow: 0 6px 18px rgba(20, 20, 20, 0.03);
            font-size: 13px;
        }

        .stars {
            color: #f5b84c;
            font-size: 14px;
            margin-bottom: 6px
        }

        /* Contact / footer */
        footer {
            margin-top: 14px;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
        }

        /* Sticky bottom buy */
        .sticky-buy {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 12px;
            display: flex;
            justify-content: center;
            pointer-events: none;
            z-index: 2000;
        }

        .sticky-inner {
            width: 100%;
            max-width: var(--maxW);
            padding: 10px;
            display: flex;
            gap: 10px;
            align-items: center;
            pointer-events: auto;
        }

        .cta {
            flex: 1;
            background: linear-gradient(90deg, var(--dark), #444);
            color: #fff;
            padding: 12px 14px;
            text-align: center;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        }

        .secondary {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 12px;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.18);
        }

        /* Form styles */
        .order-form {
            margin-top: 12px;
            background: #fff;
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(20, 20, 20, 0.03);
        }

        .order-form label {
            font-size: 13px;
            color: var(--muted);
            display: block;
            margin-top: 8px
        }

        .order-form input,
        .order-form textarea {
            width: 100%;
            padding: 10px;
            margin-top: 6px;
            border-radius: 10px;
            border: 1px solid #eee;
            font-size: 14px;
        }

        .small-btn {
            display: inline-block;
            padding: 10px 12px;
            border-radius: 10px;
            background: var(--accent);
            font-weight: 700;
            margin-top: 10px;
            text-decoration: none;
            color: #000;
        }

        /* large screen tweaks */
        @media(min-width:700px) {
            body {
                padding: 30px
            }

            .slider {
                height: 420px
            }
        }
.faq-section {
  padding: 25px 0;
}
.faq {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  cursor: pointer;
}
.faq-question {
  font-size: 14px;
  font-weight: 600;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 13px;
  margin-top: 8px;
}
.faq.active .faq-answer {
  max-height: 200px;
}

.before-after .ba-container {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
}
.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position:absolute;
}
.after-img {
    clip-path: inset(0 50% 0 0);
}
#sliderBA {
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}
.daily-timer {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
    margin-bottom: -10px;
    margin-left: 30px;
}
.offer-alert{
    display:inline-block;
    background:#ff4d4d;
    color:#fff;
    padding:4px 10px;
    font-size:11px;
    font-weight:700;
    border-radius:8px;
    margin-left:10px;
    white-space:nowrap;
    box-shadow:0 4px 12px rgba(255,77,77,0.25);
}

