
    /* ==========================================================================
       CSS Design System & Variables
       Theme Base Color: #f1f4ff (Requested)
       Aesthetic: Gentle Healing, Editorial Layout, Gen Z & Lifestyle Blogger Appeal
       ========================================================================== */
    :root {
      --bg-canvas: #f1f4ff;
      --bg-surface: #ffffff;
      --bg-surface-subtle: #f8faff;
      --text-headline: #1e2638;
      --text-body: #3d4a61;
      --text-secondary: #64748b;
      --text-caption: #8e9bb0;
      --border-subtle: #dbe4f4;
      --border-card: #e4eaf7;
      --accent-pastel-pink: #e8a5b8;
      --accent-sage-green: #88a892;
      --accent-warm-gold: #c29d5b;
      --accent-soft-lavender: #9b93c8;
      --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --shadow-soft: 0 4px 20px rgba(30, 38, 56, 0.05);
      --shadow-hover: 0 12px 32px rgba(30, 38, 56, 0.1);
      --radius-large: 20px;
      --radius-small: 12px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      background-color: var(--bg-canvas);
      color: var(--text-body);
      font-family: var(--font-family);
      line-height: 1.65;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
      padding: 0;
      margin: 0;
    }

    .page-wrapper {
      max-width: 1160px;
      margin: 0 auto;
      padding: 48px 24px 80px;
    }

    /* ==========================================================================
       Header & Hero Banner (No Logos, No Company Names)
       ========================================================================== */
    .hero-banner {
      text-align: center;
      margin-bottom: 50px;
      padding: 36px 20px 0;
    }

    .hero-pill {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #6a7ba2;
      background: #e6ecfc;
      border: 1px solid #d3def7;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
    }

    .hero-heading {
      font-size: 38px;
      font-weight: 800;
      color: var(--text-headline);
      letter-spacing: -0.6px;
      line-height: 1.25;
      margin-bottom: 16px;
    }

    .hero-subheading {
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ==========================================================================
       Feature Highlights Ribbon
       ========================================================================== */
    .highlight-ribbon {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }

    .ribbon-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-small);
      padding: 18px 20px;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }

    .ribbon-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-headline);
      margin-bottom: 4px;
    }

    .ribbon-desc {
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.45;
    }

    /* ==========================================================================
       Product Gallery Grid (16 Images - 2 Columns Desktop / 1 Column Mobile)
       ========================================================================== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-bottom: 56px;
    }

    .gallery-card {
      background: var(--bg-surface);
      border-radius: var(--radius-large);
      border: 1px solid var(--border-card);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .gallery-image-box {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: var(--bg-canvas);
      overflow: hidden;
      position: relative;
    }

    .gallery-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-card:hover .gallery-image-box img {
      transform: scale(1.02);
    }

    .gallery-content {
      padding: 26px 26px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .gallery-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent-warm-gold);
      margin-bottom: 8px;
    }

    .gallery-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-headline);
      line-height: 1.35;
      margin-bottom: 10px;
      letter-spacing: -0.2px;
    }

    .gallery-description {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.65;
      margin-bottom: 18px;
      flex: 1;
    }

    .gallery-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px dashed var(--border-subtle);
    }

    .pill-item {
      font-size: 11.5px;
      background: var(--bg-canvas);
      color: var(--text-headline);
      padding: 4px 12px;
      border-radius: 6px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    /* ==========================================================================
       Specifications Matrix Section
       ========================================================================== */
    .specs-section {
      background: var(--bg-surface);
      border-radius: var(--radius-large);
      border: 1px solid var(--border-subtle);
      padding: 44px 38px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 56px;
    }

    .specs-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .specs-header h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-headline);
      letter-spacing: -0.4px;
      margin-bottom: 8px;
    }

    .specs-header p {
      font-size: 14px;
      color: var(--text-secondary);
    }

    .specs-table-wrapper {
      overflow-x: auto;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      text-align: left;
    }

    .specs-table th {
      background: var(--bg-surface-subtle);
      padding: 15px 20px;
      font-weight: 700;
      color: var(--text-headline);
      border-bottom: 2px solid var(--border-subtle);
      white-space: nowrap;
    }

    .specs-table td {
      padding: 15px 20px;
      border-bottom: 1px solid var(--border-subtle);
      color: var(--text-body);
      vertical-align: top;
      line-height: 1.6;
    }

    .specs-table tr:last-child td {
      border-bottom: none;
    }

    /* ==========================================================================
       FAQ Cards Section (Informational Grid, No Interactive Buttons)
       ========================================================================== */
    .faq-section {
      background: var(--bg-surface);
      border-radius: var(--radius-large);
      border: 1px solid var(--border-subtle);
      padding: 48px 40px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 48px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-header h2 {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-headline);
      letter-spacing: -0.4px;
      margin-bottom: 10px;
    }

    .faq-header p {
      font-size: 14.5px;
      color: var(--text-secondary);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .faq-card {
      background: var(--bg-surface-subtle);
      border: 1px solid #e2e8f4;
      border-radius: var(--radius-small);
      padding: 26px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-question {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-headline);
      line-height: 1.45;
    }

    .faq-q-tag {
      font-size: 12px;
      font-weight: 800;
      background: #e3ebfa;
      color: #4b628c;
      padding: 2px 8px;
      border-radius: 6px;
      letter-spacing: 0.5px;
      flex-shrink: 0;
    }

    .faq-answer {
      font-size: 14px;
      color: #55657f;
      line-height: 1.65;
      padding-left: 36px;
    }

    /* ==========================================================================
       Footer (Pure Display, No Links, No Buttons)
       ========================================================================== */
    .showcase-footer {
      text-align: center;
      padding: 28px 20px;
      color: var(--text-caption);
      font-size: 13px;
      letter-spacing: 0.3px;
    }

    /* ==========================================================================
       Responsive Rules (Desktop, Tablet, Mobile)
       ========================================================================== */
    @media (max-width: 960px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .highlight-ribbon {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-wrapper {
        padding: 32px 16px 64px;
      }

      .specs-section,
      .faq-section {
        padding: 34px 24px;
      }
    }

    @media (max-width: 600px) {
      .highlight-ribbon {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .hero-heading {
        font-size: 28px;
      }

      .hero-subheading {
        font-size: 14px;
      }

      .gallery-content {
        padding: 20px;
      }

      .faq-answer {
        padding-left: 0;
      }
    }
  