  :root {
      --bg-dark: #020617;
      --bg-card: #020617;
      --bg-soft: #0b1220;
      --accent-gold: #fbbf24;
      --accent-gold-deep: #d97706;
      --accent-green: #22c55e;
      --border-soft: rgba(148, 163, 184, 0.5);
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --radius-lg: 20px;
      --radius-md: 14px;
      --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.9);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top left, #111827 0, #020617 45%, #02010a 100%);
      color: var(--text-main);
      line-height: 1.6;
    }

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

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

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

    /* HEADER */
    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.85));
      border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-circle {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: radial-gradient(circle at 25% 10%, #ffffff, #fbbf24 50%, #b45309 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #020617;
      font-weight: 700;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
      font-size: 18px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text span:first-child {
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .logo-text span:last-child {
      font-size: 11px;
      color: var(--text-muted);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
    }

    .nav a {
      position: relative;
      padding: 2px 0;
      color: rgba(249, 250, 251, 0.7);
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, var(--accent-gold), var(--accent-green));
      transition: width 0.2s ease;
    }

    .nav a:hover {
      color: #f9fafb;
    }

    .nav a:hover::after,
    .nav a.active::after {
      width: 100%;
    }

    .nav a.active {
      color: #f9fafb;
      font-weight: 500;
    }

    .nav-cta {
      padding: 5px 12px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(2, 6, 23, 0.9);
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
    }

    .nav-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.45);
    }

    .mobile-btn {
      display: none;
    }

    /* HERO */
    .hero {
      padding: 100px 0 32px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -120px;
      pointer-events: none;
      background:
        radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.12), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.16), transparent 55%),
        radial-gradient(circle at 100% 90%, rgba(34, 197, 94, 0.18), transparent 55%);
      opacity: 0.9;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 11px;
      color: #e5e7eb;
      margin-bottom: 14px;
      animation: floatSoft 5s ease-in-out infinite;
    }

    .hero-tag {
      padding: 2px 8px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 9px;
      border: 1px solid rgba(251, 191, 36, 0.7);
      background: rgba(24, 24, 27, 0.9);
    }

    .hero-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(28px, 3.9vw, 36px);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .hero-title span {
      background: linear-gradient(115deg, #fde68a, #fbbf24, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      font-size: 14px;
      color: #e5e7eb;
      max-width: 500px;
      margin-bottom: 18px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .rating-stars {
      font-size: 16px;
      letter-spacing: 1px;
    }

    .rating-stars .gold {
      color: #facc15;
    }

    .rating-stars .grey {
      color: #6b7280;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.85);
      font-size: 11px;
      color: #e5e7eb;
    }

    .hero-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 14px;
    }

    .btn-primary {
      border: none;
      cursor: pointer;
      padding: 9px 18px;
      border-radius: 999px;
      background: linear-gradient(115deg, #facc15, #f59e0b, #d97706);
      color: #111827;
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 18px 32px rgba(234, 179, 8, 0.5);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 40px rgba(234, 179, 8, 0.65);
    }

    .btn-ghost {
      border-radius: 999px;
      padding: 9px 16px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.9);
      font-size: 13px;
      color: #e5e7eb;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease;
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 1);
      transform: translateY(-1px);
    }

    .hero-note {
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-note strong {
      color: #e5e7eb;
      font-weight: 500;
    }

    /* HERO SHOWCASE */
    .hero-show {
      display: grid;
      place-items: center;
    }

    .hero-orbit {
      width: 250px;
      height: 250px;
      border-radius: 999px;
      border: 1px dashed rgba(251, 191, 36, 0.4);
      display: grid;
      place-items: center;
      position: relative;
      animation: slowSpin 26s linear infinite;
    }

    .hero-core {
      width: 170px;
      border-radius: 22px;
      background: linear-gradient(140deg, #020617, #020617, #111827);
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 14px 14px 12px;
      box-shadow: var(--shadow-soft);
      animation: floatStrong 4.5s ease-in-out infinite;
    }

    .hero-core-top {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .hero-core-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-core-main {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .hero-device {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: radial-gradient(circle at 20% 0, #ffffff, #fbbf24 45%, #f97316 85%);
      display: grid;
      place-items: center;
      font-size: 26px;
      color: #111827;
      box-shadow: 0 18px 32px rgba(0, 0, 0, 0.7);
    }

    .hero-core-text h4 {
      font-size: 13px;
      margin-bottom: 2px;
    }

    .hero-core-text p {
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-core-meta {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: var(--text-muted);
    }

    .hero-core-meta span.price {
      color: #facc15;
      font-weight: 600;
    }

    .hero-tag-card {
      position: absolute;
      top: -16px;
      left: -10px;
      background: rgba(15, 23, 42, 0.96);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 10px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      animation: floatSoft 6s ease-in-out infinite;
    }

    .hero-tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #f97316;
    }

    .hero-tip-card {
      position: absolute;
      bottom: -14px;
      right: -6px;
      border-radius: 999px;
      padding: 7px 10px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.7);
      font-size: 10px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      animation: floatSoft 7s ease-in-out infinite;
    }

    .hero-tip-pill {
      padding: 2px 6px;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.2);
      border: 1px solid rgba(22, 163, 74, 0.8);
      color: #bbf7d0;
    }

    /* SECTION HEADERS */
    section {
      padding: 26px 0;
      position: relative;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: baseline;
      margin-bottom: 14px;
    }

    .section-kicker {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 20px;
    }

    .section-title span {
      background: linear-gradient(115deg, #fde68a, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }

    .section-sub {
      font-size: 12px;
      color: var(--text-muted);
      max-width: 420px;
    }

    /* CATEGORIES */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .category-card {
      border-radius: var(--radius-md);
      background: radial-gradient(circle at top left, rgba(31, 41, 55, 0.9), #020617);
      border: 1px solid var(--border-soft);
      padding: 12px 12px 14px;
      box-shadow: var(--shadow-soft);
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .category-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.95);
      border-color: rgba(250, 204, 21, 0.9);
    }

    .category-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: rgba(15, 23, 42, 0.96);
      display: grid;
      place-items: center;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .category-name {
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .category-copy {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .category-tag {
      font-size: 10px;
      color: #e5e7eb;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .category-tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent-green);
    }

    /* PRODUCTS */
    .category-row {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #020617, #020617, #020617);
      border: 1px solid var(--border-soft);
      padding: 14px 14px 16px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 16px;
    }

    .category-row-header {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: baseline;
      margin-bottom: 10px;
    }

    .category-row-title {
      font-size: 15px;
      font-weight: 600;
    }

    .category-row-copy {
      font-size: 11px;
      color: var(--text-muted);
    }

    .category-chip {
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: rgba(15, 23, 42, 0.96);
      color: #e5e7eb;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .product-card {
      border-radius: 16px;
      background: radial-gradient(circle at top, #020617, #020617);
      border: 1px solid var(--border-soft);
      padding: 9px 9px 10px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .product-card:hover {
      transform: translateY(-3px);
      border-color: rgba(250, 204, 21, 0.9);
      box-shadow: 0 22px 44px rgba(0, 0, 0, 1);
    }

    .product-label {
      font-size: 10px;
      padding: 2px 7px;
      border-radius: 999px;
      align-self: flex-start;
      background: rgba(22, 163, 74, 0.24);
      border: 1px solid rgba(22, 163, 74, 0.8);
      color: #bbf7d0;
    }

    .product-image-wrap {
      border-radius: 13px;
      background: radial-gradient(circle at top, #1f2937, #020617);
      padding: 8px 6px;
      display: grid;
      place-items: center;
    }

    .product-placeholder {
      width: 80%;
      height: 60px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(148, 163, 184, 0.35), #020617);
      display: grid;
      place-items: center;
      font-size: 24px;
    }

    .product-name {
      font-size: 12px;
      font-weight: 500;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: var(--text-muted);
    }

    .product-price {
      font-size: 12px;
      font-weight: 600;
      color: #facc15;
    }

    .product-cta-row {
      margin-top: 3px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6px;
    }

    .availability {
      font-size: 10px;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .availability-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .btn-mini {
      border-radius: 999px;
      border: none;
      cursor: pointer;
      padding: 5px 10px;
      font-size: 10px;
      font-weight: 500;
      background: linear-gradient(115deg, #fbbf24, #d97706);
      color: #111827;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      box-shadow: 0 14px 24px rgba(234, 179, 8, 0.5);
    }

    .btn-mini:hover {
      filter: brightness(1.05);
    }

    /* BRAND STRIP */
    .brands-strip {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      background: linear-gradient(135deg, #020617, #020617);
      padding: 10px 12px 12px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .brands-row {
      display: flex;
      align-items: center;
      gap: 18px;
      white-space: nowrap;
      animation: marquee 5s linear infinite;
    }

    .brand-pill {
      padding: 5px 14px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: rgba(15, 23, 42, 0.95);
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .brand-tag {
      font-size: 9px;
      padding: 2px 6px;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.2);
      border: 1px solid rgba(22, 163, 74, 0.8);
      color: #bbf7d0;
    }

    /* BENEFITS */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .benefit-card {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: radial-gradient(circle at top left, rgba(31, 41, 55, 0.9), #020617);
      padding: 13px 13px 14px;
      box-shadow: var(--shadow-soft);
    }

    .benefit-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: rgba(15, 23, 42, 0.95);
      display: grid;
      place-items: center;
      font-size: 16px;
      margin-bottom: 8px;
    }

    .benefit-title {
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .benefit-copy {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .benefit-foot {
      font-size: 10px;
      color: #e5e7eb;
    }

    /* HOW ORDERING WORKS */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .step-card {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: radial-gradient(circle at top, #020617, #020617);
      padding: 13px 13px 14px;
      box-shadow: var(--shadow-soft);
    }

    .step-num {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid rgba(250, 204, 21, 0.9);
      display: grid;
      place-items: center;
      font-size: 11px;
      color: #facc15;
      margin-bottom: 6px;
    }

    .step-title {
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 3px;
    }

    .step-copy {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .step-tag {
      font-size: 10px;
      color: #e5e7eb;
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .faq-item {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: radial-gradient(circle at top left, rgba(31, 41, 55, 0.9), #020617);
      padding: 11px 13px 13px;
      box-shadow: var(--shadow-soft);
    }

    .faq-q {
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 3px;
    }

    .faq-a {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* FOOTER */
    .footer {
      margin-top: 16px;
      border-top: 1px solid var(--border-soft);
      padding: 16px 0 24px;
      background: radial-gradient(circle at top, #020617, #020617);
      font-size: 11px;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-inner strong {
      color: #e5e7eb;
    }

    /* ANIMATIONS */
    .fade-up {
      opacity: 0;
      transform: translateY(14px);
      animation: fadeUp 0.7s ease forwards;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }

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

    @keyframes floatSoft {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    @keyframes floatStrong {
      0%, 100% { transform: translateY(0) rotate(-0.5deg); }
      50% { transform: translateY(-10px) rotate(0.5deg); }
    }

    @keyframes slowSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .nav {
        display: none;
      }
      .mobile-btn {
        display: inline-flex;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 1px solid var(--border-soft);
        background: rgba(15, 23, 42, 0.9);
        align-items: center;
        justify-content: center;
        color: #e5e7eb;
        font-size: 16px;
      }
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-show {
        order: -1;
      }
      .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: 1fr 1fr;
      }
      .categories-grid {
        grid-template-columns: 1fr 1fr;
      }
      .steps-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.35; /* adjust higher or lower */
}

.hero-device img {
  width: 75px;       /* adjust */
  height: auto;
  display: block;
}

.hero-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;   /* force side-by-side on all screens */
}

.hero-cta-row a,
.hero-cta-row button {
  white-space: nowrap;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left align */
  gap: 10px;
}
.category-card.active {
  border-color: rgba(250, 204, 21, 0.9);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

#categories,
#categories + section {
  background: #f8f1e4; /* cream */
}
.section-header,
.section-header * {
  color: #000;
}

.categories-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.category-card {
  min-width: 260px;   /* controls size */
  scroll-snap-align: start;
}

.category-card {
  background: #4a2e19;   /* deep rich brown */
  color: #000;           /* black text */
  border: none;
  box-shadow: none;      /* remove all shadows */
}

.category-card * {
  color: #000;           /* force all inner text/icons to black */
}

.category-card .category-tag {
  background: rgba(0,0,0,0.1); 
}

.category-card .category-tag-dot {
  background: #000;
}

.category-card * {
  color: rgba(255,255,255,0.95); /* high-opacity white */
  font-weight: 600;              /* bold */
}

.product-card {
  background: #4a2e19; /* same deep rich brown */
  color: rgba(255,255,255,0.95);
}

.product-card * {
  color: rgba(255,255,255,0.95);
}


/* 1. Base (mobile / default) */
.product-placeholder img {
  width: 49%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* 2. Desktop override – put this NEAR BOTTOM of your CSS */
@media (min-width: 900px) {
  .product-placeholder img {
    width: 50% !important;
    max-width: 140px !important;
  }
}


.brand-section {
  background: #f8f1e4;
  padding: 40px 0;
}


.products-section {
  background: #f8f1e4;  /* same cream */
  padding-top: 0;
  padding-bottom: 49px; /* extend cream down */
}

/* SECTION: deep brown background, white text */
.benefits-section {
  background: #4a2e19;          /* same deep brown */
  padding: 40px 0;
}

.benefits-section .section-header,
.benefits-section .section-header * {
  color: rgba(255,255,255,0.95); /* high-opacity white */
}

/* CARDS: cream with black text */
.benefit-card {
  background: #f8f1e4;          /* cream */
  color: #000;
  border-radius: 18px;
  border: none;
  box-shadow: 0 14px 26px rgba(0,0,0,0.35);
  animation: benefitBounce 3s ease-in-out infinite;
}

.benefit-card * {
  color: #000;
}

/* small stagger so they don't bounce same time */
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* BOUNCE ANIMATION */
@keyframes benefitBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px); /* bigger lift */
  }
}

.benefit-card {
  animation: benefitBounce 1.6s ease-in-out infinite; /* faster + stronger */
}

/* SECTION: deep brown bg + white text */
.steps-section {
  background: #4a2e19;           /* deep rich brown */
  padding: 50px 0;
}

.steps-section .section-header,
.steps-section .section-header * {
  color: rgba(255,255,255,0.95); /* high-opacity white */
}

/* CARDS: cream with black text */
.step-card {
  background: #f8f1e4;           /* cream */
  color: #000;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 26px rgba(0,0,0,0.25);
}

.step-card * {
  color: #000;
}

.step-card {
  animation: stepBounce 1.6s ease-in-out infinite;
}

@keyframes stepBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }
.step-card:nth-child(4) { animation-delay: 0.6s; }

.faq-section .section-header,
.faq-section .section-header * {
  color: rgba(255,255,255,0.95);
}

footer .container {
  text-align: center;
}

footer .container img {
  margin: 0 auto;
  display: block;
}


.order-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.order-modal.show {
  display: flex;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.order-modal-box {
  position: relative;
  max-width: 420px;
  width: 90%;
  background: #f8f1e4; /* cream */
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.order-modal-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.order-modal-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.order-modal-text span {
  font-weight: 700;
}

.order-modal-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.order-modal-btn-primary,
.order-modal-btn-ghost {
  flex: 1;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.order-modal-btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111827;
}

.order-modal-btn-ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.2);
  color: #111827;
}

.order-modal-note {
  font-size: 11px;
  color: #4b5563;
  margin-top: 6px;
}
.order-modal-box,
.order-modal-box * {
  color: #111 !important;
}
