    /* DESIGN SYSTEM - Variables */
    :root {
      --cream: #FFFBF3;
      --coral: #FF5757;
      --coral-dk: #E03E3E;
      --coral-lt: #FFF0F0;
      --yellow: #FFC947;
      --yellow-lt: #FFF8E1;
      --green: #2ECC88;
      --green-lt: #E8FAF2;
      --purple: #9B5DE5;
      --purple-lt: #F3EEFF;
      --text: #1A1A2E;
      --mid: #6B6B88;
      --light: #A0A0B8;
      --border: #EEEEF5;

      --sh: 0 4px 24px rgba(0, 0, 0, .09);
      --sh-lg: 0 12px 48px rgba(0, 0, 0, .14);
      --r: 22px;
      --r-sm: 14px;
    }

    /* Global Rules */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 70px;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--cream);
      font-family: 'Nunito', sans-serif;
      color: var(--text);
      overflow-x: hidden;
      font-size: 1rem;
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .display-font {
      font-family: 'Fredoka One', cursive;
      letter-spacing: 0.01em;
      margin-top: 0;
      font-weight: normal;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
    }

    p {
      margin-top: 0;
      margin-bottom: 1rem;
    }

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

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    button,
    a,
    [onclick] {
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
      cursor: pointer;
    }

    input,
    textarea,
    select {
      font-family: 'Nunito', sans-serif;
      font-size: 16px !important;
      -webkit-appearance: none;
    }

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

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: none;
      outline: none;
      font-family: 'Nunito', sans-serif;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-pill {
      border-radius: 50px;
    }

    .btn-primary {
      background-color: var(--coral);
      color: white;
      font-weight: 800;
      box-shadow: 0 5px 22px rgba(255, 87, 87, .4);
      padding: 0.9rem 1.8rem;
    }

    .btn-primary:not(:disabled):hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 87, 87, .5);
      background-color: var(--coral-dk);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      font-weight: 700;
      padding: 0.9rem 1.2rem;
    }

    .btn-ghost:hover {
      color: var(--coral);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--coral);
      color: var(--coral);
      font-weight: 700;
      padding: 0.6rem 1.2rem;
    }

    .btn-outline:hover {
      background-color: var(--coral);
      color: white;
    }

    .btn:disabled {
      opacity: 0.5;
      pointer-events: none;
      box-shadow: none !important;
    }

    /* Animations */
    @keyframes bob {

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

      50% {
        transform: translateY(-18px) scale(1.05);
      }
    }

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

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

    @keyframes pop {
      0% {
        transform: scale(0);
      }

      100% {
        transform: scale(1);
      }
    }

    .section-label {
      display: inline-block;
      background-color: var(--coral);
      color: white;
      font-weight: 800;
      font-size: 0.8rem;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
    }

    /* NAVIGATION */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(255, 251, 243, .93);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 0.9rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Fredoka One', cursive;
      color: var(--coral);
      font-size: 1.4rem;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--mid);
      font-weight: 700;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

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

    /* SECTION 1 — HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: 7rem;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--cream);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 75%;
      width: 70%;
      height: 60%;
      background: radial-gradient(ellipse, #FFE0E0 0%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 75%;
      left: 15%;
      width: 50%;
      height: 50%;
      background: radial-gradient(ellipse, #FFF0C0 0%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 0;
    }

    .hero-dots .dot {
      position: absolute;
      border-radius: 50%;
      z-index: 1;
      animation: bob linear infinite;
      animation-timing-function: ease-in-out;
    }

    .dot-1 {
      width: 80px;
      height: 80px;
      background: #FFE0A0;
      top: 15%;
      left: 10%;
      animation-duration: 7s;
    }

    .dot-2 {
      width: 50px;
      height: 50px;
      background: #FFD6E0;
      bottom: 20%;
      left: 5%;
      animation-duration: 5.5s;
      animation-delay: 1.5s;
    }

    .dot-3 {
      width: 60px;
      height: 60px;
      background: #D6F0FF;
      top: 20%;
      right: 10%;
      animation-duration: 6.5s;
      animation-delay: 0.8s;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 4rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      background: var(--yellow-lt);
      color: #7A5A00;
      border: 1px solid #FFE0A0;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      color: var(--coral);
      font-style: normal;
    }

    .hero-subtext {
      color: var(--mid);
      font-size: 1.1rem;
      font-weight: 600;
      max-width: 460px;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
    }

    .stat-val {
      font-family: 'Fredoka One';
      font-size: 1.9rem;
      color: var(--coral);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
      margin-top: 0.4rem;
    }

    .pack-preview-card {
      background: white;
      border-radius: var(--r);
      box-shadow: var(--sh-lg);
      padding: 1.5rem;
      position: relative;
    }

    .pack-preview-title {
      font-family: 'Fredoka One';
      color: var(--coral);
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .pack-preview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .preview-item {
      text-align: center;
      background: var(--cream);
      padding: 1rem 0.5rem;
      border-radius: var(--r-sm);
    }

    .preview-emoji {
      font-size: 2rem;
      margin-bottom: 0.3rem;
    }

    .preview-label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text);
    }

    .pack-preview-footer {
      background: var(--coral-lt);
      border-radius: var(--r-sm);
      padding: 0.8rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .preview-price {
      font-family: 'Fredoka One';
      color: var(--coral);
      font-size: 1.1rem;
    }

    .preview-orders {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--mid);
    }

    .floating-chip {
      position: absolute;
      padding: 0.5rem 0.9rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 800;
      box-shadow: var(--sh);
      z-index: 10;
    }

    .chip-1 {
      top: -15px;
      left: -20px;
      background: var(--yellow-lt);
      color: #7A5A00;
    }

    .chip-2 {
      bottom: -15px;
      right: -20px;
      background: white;
      color: var(--green);
    }

    /* SECTION 2 — SOCIAL PROOF BAR */
    .social-proof {
      background-color: var(--coral);
      padding: 1rem 2rem;
    }

    .social-proof-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
    }

    /* SECTION 3 — HOW IT WORKS */
    .how-it-works {
      padding: 5rem 0;
      text-align: center;
    }

    .how-it-works-subtitle {
      color: var(--mid);
      font-weight: 600;
      margin-bottom: 3rem;
      font-size: 1.1rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 1.5rem;
    }

    .step-card {
      background: white;
      box-shadow: var(--sh);
      border-radius: var(--r);
      padding: 2.5rem 1.5rem 1.5rem;
      position: relative;
      text-align: center;
    }

    .step-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 32px;
      background: var(--coral);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fredoka One';
      font-size: 1rem;
    }

    .step-emoji {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }

    .step-desc {
      color: var(--mid);
      font-size: 0.95rem;
    }

    .step-arrow {
      color: var(--coral);
      font-size: 1.5rem;
      opacity: 0.4;
    }

    /* SECTION 4 — BESTSELLERS */
    .bestsellers {
      padding: 5rem 0;
      background: white;
      text-align: center;
    }

    .bestsellers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      text-align: left;
    }

    .bestseller-card {
      background: white;
      border-radius: var(--r);
      box-shadow: var(--sh);
      overflow: hidden;
      transition: all 0.25s ease;
    }

    .bestseller-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--sh-lg);
    }

    .bs-thumb {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      position: relative;
      background: linear-gradient(135deg, #FFF3CC 0%, #FFE0B0 100%);
    }

    .bs-thumb.t-2 {
      background: linear-gradient(135deg, #FFE0E8 0%, #F0D0FF 100%);
    }

    .bs-thumb.t-3 {
      background: linear-gradient(135deg, #E0F0FF 0%, #D0E8FF 100%);
    }

    .bs-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--coral);
      color: white;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
    }

    .bs-badge.purple {
      background: var(--purple);
    }

    .bs-badge.navy {
      background: var(--text);
    }

    .bs-body {
      padding: 1.5rem;
    }

    .bs-name {
      font-family: 'Fredoka One';
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .bs-items {
      color: var(--mid);
      font-size: 0.82rem;
      margin-bottom: 1.5rem;
      min-height: 40px;
    }

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

    .bs-price {
      font-family: 'Fredoka One';
      color: var(--coral);
      font-size: 1.1rem;
    }

    /* SECTION 5 — TESTIMONIALS */
    .testimonials {
      background: linear-gradient(135deg, #FFF0F0 0%, #FFF8E0 100%);
      padding: 5rem 2rem;
      text-align: center;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1180px;
      margin: 3rem auto 0;
      text-align: left;
    }

    .testi-card {
      background: white;
      border-radius: var(--r);
      box-shadow: var(--sh);
      padding: 1.8rem;
    }

    .stars {
      color: var(--yellow);
      letter-spacing: 0.1em;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .quote {
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .author-row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .av-1 {
      background: linear-gradient(135deg, #FF85A2, #FF5757);
    }

    .av-2 {
      background: linear-gradient(135deg, #FFC947, #FF9500);
    }

    .av-3 {
      background: linear-gradient(135deg, #2ECC88, #00A870);
    }

    .author-name {
      font-weight: 800;
      font-size: 0.9rem;
      line-height: 1.2;
      margin-bottom: 0.2rem;
    }

    .author-meta {
      font-size: 0.78rem;
      color: var(--mid);
    }

    /* SECTION 6 — PACK BUILDER */
    .builder-section {
      padding: 5rem 0;
      background: white;
    }

    .builder-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .builder-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 3rem;
      position: relative;
    }

    .builder-steps {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .builder-step-card {
      background: var(--cream);
      border: 2px solid transparent;
      border-radius: var(--r);
      padding: 1.6rem;
      position: relative;
      transition: border-color 0.3s;
    }

    .builder-step-card.active {
      border-color: var(--coral);
    }

    .step-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.5rem;
    }

    .step-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--coral);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fredoka One';
    }

    .step-circle.purple {
      background: var(--purple);
    }

    .step-circle.green {
      background: var(--green);
    }

    .step-title {
      font-family: 'Fredoka One';
      font-size: 1.2rem;
      margin: 0;
    }

    .split-header {
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .split-header .left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    /* Budget Slider */
    .budget-display {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .budget-val {
      font-family: 'Fredoka One';
      font-size: 2.8rem;
      color: var(--coral);
      line-height: 1;
    }

    .budget-suffix {
      font-size: 1rem;
      color: var(--mid);
      font-family: 'Nunito';
      margin-left: 0.2rem;
    }

    .slider-wrap {
      position: relative;
      padding: 1rem 0;
    }

    .slider {
      width: 100%;
      -webkit-appearance: none;
      background: transparent;
      height: 22px;
      cursor: pointer;
    }

    .slider::-webkit-slider-runnable-track {
      width: 100%;
      height: 6px;
      background: linear-gradient(to right, var(--coral) var(--pct), #E0E0EE var(--pct));
      border-radius: 3px;
    }

    .slider::-moz-range-track {
      width: 100%;
      height: 6px;
      background: linear-gradient(to right, var(--coral) var(--pct), #E0E0EE var(--pct));
      border-radius: 3px;
    }

    .slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      height: 22px;
      width: 22px;
      border-radius: 50%;
      background: white;
      border: 3px solid var(--coral);
      box-shadow: 0 2px 8px rgba(255, 87, 87, .4);
      margin-top: -8px;
    }

    .slider::-moz-range-thumb {
      height: 22px;
      width: 22px;
      border-radius: 50%;
      background: white;
      border: 3px solid var(--coral);
      box-shadow: 0 2px 8px rgba(255, 87, 87, .4);
    }

    .slider-labels {
      display: flex;
      justify-content: space-between;
      color: var(--light);
      font-size: 0.8rem;
      margin-top: 0.5rem;
    }

    /* Packaging Grid */
    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .option-card {
      background: white;
      border: 2px solid var(--border);
      border-radius: var(--r-sm);
      overflow: hidden;
      cursor: pointer;
      position: relative;
      transition: all 0.25s;
    }

    .option-card:hover:not(.disabled) {
      border-color: var(--coral-lt);
    }

    .option-card.selected {
      border-color: var(--coral);
      box-shadow: 0 0 0 2px rgba(255, 87, 87, .18);
    }

    .option-card.disabled {
      opacity: 0.4;
      pointer-events: none;
    }

    .option-img-wrap {
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
      background: #F8F8FC;
    }

    .option-card.prod .option-img-wrap {
      aspect-ratio: 4/3;
    }

    .option-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .option-card:hover:not(.disabled) .option-img {
      transform: scale(1.05);
    }

    .option-card.disabled .option-img {
      filter: grayscale(50%);
    }

    .zoom-icon {
      position: absolute;
      bottom: 8px;
      right: 8px;
      width: 28px;
      height: 28px;
      background: rgba(0, 0, 0, .6);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .option-card:hover .zoom-icon,
    .touch-device .zoom-icon {
      opacity: 1;
    }

    .photo-count {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(0, 0, 0, .6);
      color: white;
      font-size: 0.65rem;
      padding: 0.2rem 0.5rem;
      border-radius: 50px;
      font-weight: 700;
    }

    .select-check {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 24px;
      height: 24px;
      background: var(--coral);
      color: white;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      z-index: 5;
    }

    .option-card.selected .select-check {
      display: flex;
    }

    .option-body {
      padding: 0.8rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .option-name {
      font-weight: 800;
      font-size: 0.88rem;
      margin-bottom: 0.3rem;
    }

    .option-card.prod .option-name {
      font-weight: 700;
      font-size: 0.78rem;
    }

    .option-price {
      font-family: 'Fredoka One';
      color: var(--coral);
      font-size: 0.95rem;
      margin-top: auto;
    }

    .option-card.disabled .option-price {
      color: var(--light);
    }

    .option-desc {
      font-size: 0.7rem;
      color: var(--mid);
      margin-top: auto;
      padding-top: 0.4rem;
    }

    /* Product Section */
    .rem-pill {
      font-weight: 800;
      font-size: 0.85rem;
      padding: 0.4rem 0.8rem;
      border-radius: 50px;
    }

    .rem-pill.green {
      background: var(--green-lt);
      color: #1A7A4A;
    }

    .rem-pill.yellow {
      background: var(--yellow-lt);
      color: #8B6000;
    }

    .rem-pill.red {
      background: #FFE0E0;
      color: #C02020;
    }

    .cat-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .cat-tab {
      background: white;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--mid);
      flex-shrink: 0;
      white-space: nowrap;
      transition: all 0.2s;
    }

    .cat-tab.active {
      background: var(--coral);
      color: white;
      border-color: var(--coral);
    }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    /* Thank You Card */
    .note-subtitle {
      color: var(--mid);
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }

    .free-badge {
      background: var(--green-lt);
      color: #1A7A4A;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 0.2rem 0.6rem;
      border-radius: 50px;
      vertical-align: middle;
      margin-left: 0.5rem;
    }

    .sug-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .sug-chip {
      background: white;
      border: 2px solid var(--border);
      border-radius: var(--r-sm);
      padding: 0.7rem 0.85rem;
      font-size: 0.82rem;
      color: var(--mid);
      font-weight: 600;
      text-align: left;
      transition: all 0.2s;
    }

    .sug-chip:hover {
      border-color: var(--coral);
      background: var(--coral-lt);
    }

    .sug-chip.active {
      border-color: var(--coral);
      background: var(--coral-lt);
    }

    .sug-chip.active::before {
      content: "✓ ";
      color: var(--coral);
    }

    .note-input {
      width: 100%;
      min-height: 80px;
      resize: vertical;
      border: 2px solid var(--border);
      background: var(--cream);
      border-radius: var(--r-sm);
      padding: 0.8rem;
      transition: all 0.2s;
      outline: none;
    }

    .note-input:focus {
      border-color: var(--coral);
      background: white;
    }

    .char-count {
      text-align: right;
      color: var(--light);
      font-size: 0.73rem;
      font-weight: 700;
      margin-top: 0.5rem;
    }

    .note-preview {
      background: var(--yellow-lt);
      border: 1px solid #FFE0A0;
      border-radius: var(--r-sm);
      padding: 0.8rem;
      margin-top: 1rem;
      font-size: 0.8rem;
      font-style: italic;
      color: var(--text);
      display: none;
    }

    .theme-toggle {
      background: var(--purple-lt);
      border: 2px solid var(--border);
      border-radius: var(--r-sm);
      padding: 1rem 1.1rem;
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      cursor: pointer;
      transition: border-color 0.2s;
    }

    .theme-toggle.active {
      border-color: var(--purple);
    }

    .checkbox {
      width: 22px;
      height: 22px;
      border: 2px solid var(--purple);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .theme-toggle.active .checkbox {
      background: var(--purple);
    }

    .theme-toggle.active .checkbox::after {
      content: '✓';
      color: white;
      font-size: 0.8rem;
      font-weight: 800;
    }

    .theme-title {
      font-family: 'Fredoka One';
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      color: var(--text);
      font-size: 0.95rem;
      margin-bottom: 0.3rem;
    }

    .theme-price {
      color: var(--purple);
    }

    .theme-desc {
      font-size: 0.78rem;
      color: var(--mid);
      font-weight: 600;
      line-height: 1.5;
    }

    /* SIDEBAR */
    .sidebar {
      position: sticky;
      top: 90px;
    }

    .summary-card {
      background: var(--cream);
      border: 2px solid var(--border);
      border-radius: var(--r);
      padding: 1.6rem;
    }

    .sum-title {
      font-family: 'Fredoka One';
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }

    .sum-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .sum-row.strong {
      font-weight: 800;
      font-size: 0.9rem;
    }

    .sum-val-b {
      text-align: right;
    }

    .divider {
      border-top: 1px dashed var(--border);
      margin: 1rem 0;
    }

    .hairline {
      border-top: 1px solid var(--border);
      margin: 0.5rem 0;
    }

    .sec-label {
      font-size: 0.82rem;
      color: var(--mid);
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 0.8rem;
    }

    .items-list {
      min-height: 40px;
    }

    .sum-item-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.82rem;
      padding: 0.4rem 0;
    }

    .empty-list {
      text-align: center;
      color: var(--light);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 0.5rem 0;
    }

    .note-sum-prev {
      background: var(--yellow-lt);
      border-radius: 8px;
      padding: 0.6rem;
      font-size: 0.8rem;
      font-style: italic;
    }

    .theme-row {
      color: var(--purple);
      font-weight: 700;
      font-size: 0.82rem;
      display: flex;
      justify-content: space-between;
      margin-top: 0.5rem;
    }

    .qty-stepper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin: 1.5rem 0;
    }

    .qty-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--coral);
      background: white;
      color: var(--coral);
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .qty-btn:hover {
      background: var(--coral);
      color: white;
    }

    .qty-num {
      font-family: 'Fredoka One';
      font-size: 1.5rem;
      min-width: 40px;
      text-align: center;
    }

    .val-green {
      color: var(--green);
      font-weight: 900;
    }

    .total-strip {
      background: var(--coral);
      border-radius: var(--r-sm);
      padding: 0.9rem 1rem;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 1rem 0;
    }

    .tot-lbl {
      font-weight: 800;
    }

    .tot-val {
      font-family: 'Fredoka One';
      font-size: 1.4rem;
    }

    .btn-proceed {
      width: 100%;
      font-size: 1.05rem;
      min-height: 50px;
    }

    .fine-print {
      text-align: center;
      font-size: 0.75rem;
      color: var(--light);
      font-weight: 600;
      margin-top: 0.8rem;
    }

    /* MOBILE STICKY BAR */
    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 150;
      background: white;
      border-top: 2px solid var(--border);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
      padding: 0.85rem 1.2rem;
      padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
      justify-content: space-between;
      align-items: center;
    }

    .mob-l-lbl {
      font-size: 0.72rem;
      color: var(--mid);
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 0.2rem;
    }

    .mob-l-val {
      font-family: 'Fredoka One';
      font-size: 1.3rem;
      color: var(--coral);
      line-height: 1;
    }

    .mob-proceed {
      min-height: 44px;
      padding: 0.5rem 1.5rem;
      font-size: 0.95rem;
    }

    /* SECTION 7 — LIGHTBOX */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 900;
      background: rgba(10, 10, 20, .92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .lightbox.active {
      display: flex;
    }

    .lb-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .1);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      border: none;
      cursor: pointer;
      z-index: 20;
    }

    .lb-close:hover {
      background: rgba(255, 255, 255, .2);
    }

    .lb-content {
      width: 100%;
      max-width: 680px;
      padding: 0 1rem;
      position: relative;
    }

    .lb-img-wrap {
      width: 100%;
      max-height: 62vh;
      border-radius: var(--r);
      background: #000;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-counter {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: rgba(0, 0, 0, .5);
      color: white;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      z-index: 10;
    }

    .lb-img {
      width: 100%;
      max-height: 62vh;
      object-fit: contain;
      transition: opacity 0.15s ease;
    }

    .lb-arr {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .5);
      color: white;
      border: none;
      font-size: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      line-height: 1;
      padding-bottom: 4px;
    }

    .lb-prev {
      left: 1rem;
    }

    .lb-next {
      right: 1rem;
    }

    .lb-info {
      margin-top: 1rem;
      text-align: center;
    }

    .lb-title {
      font-family: 'Fredoka One';
      color: white;
      font-size: 1.1rem;
    }

    .lb-price {
      color: var(--yellow);
      font-size: 0.85rem;
      font-weight: 700;
    }

    .lb-thumbs {
      display: flex;
      gap: 0.8rem;
      justify-content: center;
      margin-top: 1.5rem;
    }

    .lb-thumb {
      width: 58px;
      height: 58px;
      border-radius: 10px;
      border: 2px solid rgba(255, 255, 255, .3);
      object-fit: cover;
      cursor: pointer;
    }

    .lb-thumb.active {
      border-color: var(--coral);
      box-shadow: 0 0 12px rgba(255, 87, 87, .6);
    }

    /* SECTION 8 — ORDER MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(26, 26, 46, .55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-box {
      background: white;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: var(--r);
      padding: 2.2rem;
      box-shadow: var(--sh-lg);
      position: relative;
    }

    .modal-active-anim {
      animation: slideUp 0.3s ease;
    }

    .mdl-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      color: var(--light);
      cursor: pointer;
    }

    .mdl-head {
      font-family: 'Fredoka One';
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .os-box {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 1.2rem;
      margin-bottom: 1.5rem;
    }

    .os-title {
      font-family: 'Fredoka One';
      color: var(--coral);
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .osi-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border);
    }

    .osi-row:last-child {
      border-bottom: none;
    }

    .osi-bold {
      font-weight: 800;
      color: var(--text);
    }

    .osi-tot {
      font-size: 0.95rem;
      font-weight: 900;
      color: var(--coral);
      padding-top: 0.8rem;
      border-top: 1px dashed var(--border);
      margin-top: 0.3rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .form-inp {
      width: 100%;
      padding: 0.7rem 1rem;
      background: var(--cream);
      border: 2px solid var(--border);
      border-radius: var(--r-sm);
      transition: all 0.2s;
      outline: none;
    }

    .form-inp:focus {
      background: white;
      border-color: var(--coral);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .pay-methods {
      display: flex;
      gap: 0.8rem;
      margin-bottom: 2rem;
    }

    .pay-btn {
      flex: 1;
      padding: 0.8rem 0;
      background: white;
      border: 2px solid var(--border);
      border-radius: var(--r-sm);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      transition: all 0.2s;
    }

    .pay-btn.active {
      border-color: var(--coral);
      background: var(--coral-lt);
    }

    .pay-icon {
      font-size: 1.4rem;
    }

    .pay-lbl {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--mid);
    }

    .pay-btn.active .pay-lbl {
      color: var(--coral);
    }

    /* Confirmation State */
    .success-view {
      text-align: center;
      padding: 2rem 0;
      display: none;
    }

    .succ-emoji {
      font-size: 5rem;
      animation: pop 0.4s cubic-bezier(.175, .885, .32, 1.275);
      margin-bottom: 1rem;
    }

    .succ-tit {
      font-family: 'Fredoka One';
      font-size: 1.8rem;
      color: var(--green);
      margin-bottom: 1rem;
    }

    .succ-desc {
      font-weight: 600;
      color: var(--mid);
      margin-bottom: 2rem;
    }

    .succ-ref {
      background: var(--cream);
      border: 2px dashed var(--border);
      border-radius: var(--r-sm);
      padding: 1rem;
      font-family: 'Fredoka One';
      font-size: 1.1rem;
      color: var(--coral);
      margin-bottom: 1.5rem;
    }

    .succ-magic {
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2rem;
    }

    /* SECTION 9 — FOOTER */
    footer {
      background: #1A1A2E;
      color: white;
      padding: 4rem 2rem 2rem;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      max-width: 1180px;
      margin: 0 auto;
    }

    .f-logo {
      font-family: 'Fredoka One';
      font-size: 1.5rem;
      color: var(--coral);
      margin-bottom: 1rem;
    }

    .f-tag {
      color: #A0A0B8;
      font-size: 0.88rem;
      font-weight: 600;
      max-width: 320px;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .f-socials {
      display: flex;
      gap: 0.8rem;
    }

    .f-soc-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      font-size: 1.1rem;
    }

    .f-soc-btn:hover {
      background: var(--coral);
    }

    .f-head {
      font-family: 'Fredoka One';
      color: var(--yellow);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .f-links {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .f-links a,
    .f-info {
      color: #A0A0B8;
      font-size: 0.88rem;
      font-weight: 600;
      transition: color 0.2s;
    }

    .f-links a:hover {
      color: white;
    }

    .f-info {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.8rem;
    }

    .f-bot {
      max-width: 1180px;
      margin: 3rem auto 0;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, .08);
      display: flex;
      justify-content: space-between;
      color: #666688;
      font-size: 0.8rem;
      font-weight: 700;
    }

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

      .nav-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
      }

      .hero {
        padding-top: 6rem;
        min-height: auto;
        padding-bottom: 3rem;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-visual {
        display: none;
      }

      .hero-subtext {
        margin: 0 auto 2rem;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
        margin-top: 1.5rem;
      }

      .how-it-works,
      .bestsellers,
      .testimonials,
      .builder-section {
        padding: 3.5rem 0;
      }

      .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }

      .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
      }

      .builder-layout {
        grid-template-columns: 1fr;
      }

      .sidebar-wrapper {
        display: none;
      }

      .mobile-bar {
        display: flex;
      }

      .builder-section {
        padding-bottom: 120px;
        /* clear mobile bar */
      }
    }

    @media (max-width: 600px) {
      nav {
        padding: 0.8rem 1rem;
      }
      
      .nav-logo {
        font-size: 1.15rem;
        white-space: nowrap;
      }
      
      .nav-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
      }

      h1 {
        font-size: 2.4rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      .container { padding: 0 1.2rem; }
      
      .builder-step-card { padding: 1.2rem; }
      
      .pkg-grid { grid-template-columns: 1fr; }

      .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 2.5rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
      }

      .social-proof-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .bestsellers-grid,
      .testi-grid {
        grid-template-columns: 1fr;
      }

      .bestseller-card:hover {
        transform: none;
      }

      .prod-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sug-grid {
        grid-template-columns: 1fr;
      }

      .grid-2 {
        grid-template-columns: 1fr;
      }

      .modal-overlay {
        align-items: flex-end;
      }

      .modal-box {
        border-radius: var(--r) var(--r) 0 0;
        max-height: 92vh;
        margin: 0;
        padding: 1.8rem 1.5rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
      }

      .modal-box::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        border-radius: 4px;
        background: var(--border);
      }

      .mdl-close {
        top: 1.2rem;
        right: 1.2rem;
      }

      .lb-img-wrap {
        max-height: 55vh;
        border-radius: var(--r-sm);
      }

      .lb-img {
        max-height: 55vh;
      }

      .lb-arr {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
      }

      .lb-prev {
        left: 8px;
      }

      .lb-next {
        right: 8px;
      }

      .lb-thumb {
        width: 48px;
        height: 48px;
      }

      .lb-close {
        width: 38px;
        height: 38px;
        top: 0.5rem;
        right: 0.5rem;
      }

      .foot-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .f-bot {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
      }
    }

/* --- COUPON STYLES --- */
.coupon-box {
  margin-top: 15px;
  margin-bottom: 25px;
}
.coupon-input-group {
  display: flex;
  gap: 10px;
}
#coupon-code-inp {
  flex: 1;
  text-transform: uppercase;
}
.btn-apply {
  padding: 0 20px;
  font-weight: 700;
  white-space: nowrap;
}
.coupon-msg {
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coupon-msg.error {
  color: #C02020;
}
.coupon-msg.success {
  color: var(--green);
}
.remove-coupon {
  color: var(--coral);
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.8rem;
}
