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

    :root {
      --navy: #0A1628;
      --navy-mid: #142440;
      --navy-light: #1E3454;
      --slate: #3D5A80;
      --teal: #00897B;
      --teal-dark: #00695C;
      --teal-light: #E0F2F1;
      --text: #1A2332;
      --text-sec: #5A6B7F;
      --text-light: #8899AA;
      --border: #E2E8F0;
      --border-light: #F1F5F9;
      --bg: #F8FAFB;
      --white: #FFFFFF;
      --green: #16A34A;
      --green-bg: #F0FDF4;
      --red: #DC2626;
      --red-bg: #FEF2F2;
      --amber-bg: #FFFBEB;
      --amber: #D97706;
      --radius: 6px;
      --radius-lg: 10px;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
      --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: var(--teal); text-decoration: none; }
    a:hover { text-decoration: underline; }
    button { cursor: pointer; font-family: inherit; }
    input, select, textarea { font-family: inherit; }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

    /* ==================== TOP BAR ==================== */
    .top-bar {
      background: var(--navy);
      color: rgba(255,255,255,0.6);
      font-size: 11px;
      letter-spacing: 0.4px;
      padding: 6px 0;
      text-transform: uppercase;
    }
    .top-bar-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .top-bar a { color: rgba(255,255,255,0.8); font-size: 11px; }

    /* ==================== HEADER ==================== */
    .header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      color: var(--navy);
    }
    .logo:hover { text-decoration: none; }
    .logo-mark {
      width: 36px;
      height: 36px;
      background: var(--teal);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-mark svg { width: 20px; height: 20px; color: white; }
    .logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
    .logo-text span { color: var(--teal); }

    .nav { display: flex; align-items: center; gap: 2px; }
    .nav-link {
      color: var(--text-sec);
      padding: 8px 14px;
      border-radius: var(--radius);
      font-size: 13.5px;
      font-weight: 500;
      transition: all 0.15s;
      cursor: pointer;
      border: none;
      background: none;
    }
    .nav-link:hover { color: var(--text); background: var(--border-light); text-decoration: none; }
    .nav-link.active { color: var(--teal); background: var(--teal-light); }
    .cart-count {
      background: var(--teal);
      color: white;
      border-radius: 10px;
      font-size: 10px;
      font-weight: 700;
      min-width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 4px;
    }

    /* ==================== BUTTONS ==================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 18px;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 13.5px;
      border: 1px solid transparent;
      transition: all 0.15s;
      line-height: 1.4;
    }
    .btn-primary { background: var(--teal); color: white; border-color: var(--teal); }
    .btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
    .btn-primary:disabled { background: var(--border); color: var(--text-light); border-color: var(--border); cursor: not-allowed; }
    .btn-bulk { background: #26A69A; color: white; border-color: #26A69A; }
    .btn-bulk:hover { background: var(--teal); border-color: var(--teal); }
    .btn-outline { background: var(--white); color: var(--text); border-color: var(--border); }
    .btn-outline:hover { background: var(--bg); border-color: var(--text-light); }
    .btn-ghost { background: none; color: var(--teal); border: none; padding: 9px 12px; }
    .btn-ghost:hover { background: var(--teal-light); }
    .btn-danger { background: var(--red); color: white; }
    .btn-sm { padding: 6px 12px; font-size: 12.5px; white-space: nowrap; }
    .btn-lg { padding: 12px 28px; font-size: 15px; }
    .btn-block { width: 100%; }

    /* ==================== HERO ==================== */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
      color: white;
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse at 70% 50%, rgba(0,137,123,0.12) 0%, transparent 70%);
    }
    .hero-content { position: relative; max-width: 620px; }
    .hero-ribbon {
      position: absolute;
      top: 122px;
      right: -150px;
      transform: rotate(45deg);
      background: #FFC400;
      color: var(--navy) !important;
      font-size: 26px;
      font-weight: 900;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      padding: 22px 240px;
      cursor: pointer;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 14px;
      animation: ribbonGlow 1.8s ease-in-out infinite;
      transition: background 0.2s, transform 0.2s;
    }
    .hero-ribbon::before {
      content: '';
      width: 13px; height: 13px;
      border-radius: 50%;
      background: var(--navy);
      flex-shrink: 0;
      animation: ribbonPulse 1.8s ease-out infinite;
    }
    .hero-ribbon:hover { background: #FFD54F; }
    @keyframes ribbonGlow {
      0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.34), 0 0 16px rgba(255,196,0,0.5); }
      50% { box-shadow: 0 8px 24px rgba(0,0,0,0.34), 0 0 36px rgba(255,196,0,0.95); }
    }
    @keyframes ribbonPulse {
      0% { box-shadow: 0 0 0 0 rgba(10,22,40,0.55); }
      70% { box-shadow: 0 0 0 13px rgba(10,22,40,0); }
      100% { box-shadow: 0 0 0 0 rgba(10,22,40,0); }
    }
    @media (max-width: 600px) {
      .hero-ribbon { font-size: 16px; padding: 14px 160px; top: 74px; right: -140px; letter-spacing: 1px; }
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,137,123,0.2);
      border: 1px solid rgba(0,137,123,0.3);
      color: #4DB6AC;
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .hero h1 {
      font-size: 40px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
    .hero p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat-value { font-size: 28px; font-weight: 800; color: #4DB6AC; }
    .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

    /* ==================== TRUST BAR ==================== */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }
    .trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-sec); font-weight: 500; }
    .trust-icon {
      width: 36px; height: 36px;
      background: var(--teal-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-icon svg { width: 18px; height: 18px; color: var(--teal); }

    /* ==================== PRODUCT GRID ==================== */
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 32px; }
    .section-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 6px;
    }
    .section-title { font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
    .section-desc { color: var(--text-sec); font-size: 14px; margin-top: 6px; }

    .catalog-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .catalog-tab {
      padding: 8px 18px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--text-sec);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .catalog-tab:hover {
      border-color: var(--teal);
      color: var(--teal);
    }
    .catalog-tab.active {
      background: var(--navy);
      color: white;
      border-color: var(--navy);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 16px;
    }
    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.15s;
      cursor: pointer;
      position: relative;
    }
    .product-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
    /* Diagonal corner ribbon (used on RETA cards) pointing to the COAs. */
    .coa-ribbon {
      position: absolute;
      top: 16px;
      right: -36px;
      transform: rotate(45deg);
      background: linear-gradient(90deg, var(--teal), var(--navy));
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      padding: 5px 42px;
      z-index: 3;
      box-shadow: 0 2px 6px rgba(10,22,40,0.3);
      cursor: pointer;
      text-align: center;
      white-space: nowrap;
    }
    .coa-ribbon:hover { filter: brightness(1.08); }
    .product-card.oos { opacity: 0.75; }
    .product-card.oos:hover { border-color: var(--border); box-shadow: none; }
    .product-card-top {
      padding: 20px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
    }
    .product-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 10.5px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }
    .badge-stock { background: var(--green-bg); color: var(--green); }
    .badge-oos { background: var(--red-bg); color: var(--red); }
    .badge-purity { background: var(--teal-light); color: var(--teal); }
    .product-card-body { padding: 16px; }
    .product-card-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .product-card-sub { font-size: 12px; color: var(--text-sec); margin-bottom: 12px; line-height: 1.5; }
    .product-card-specs {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .product-spec {
      font-size: 11px;
      color: var(--text-light);
      background: var(--bg);
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 500;
    }
    .product-card-bottom {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border-light);
    }
    .product-card-bottom .btn { width: 100%; }
    .product-price { font-size: 20px; font-weight: 800; color: var(--navy); }
    .product-price span { font-size: 12px; font-weight: 500; color: var(--text-light); }
    .volume-tag {
      background: var(--green-bg);
      color: var(--green);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 4px;
      margin-bottom: 10px;
      display: inline-block;
    }

    /* ==================== PRODUCT DETAIL ==================== */
    .detail-wrap { max-width: 920px; margin: 32px auto; }
    .detail-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .detail-top { display: flex; align-items: flex-start; flex-direction: row-reverse; }
    .detail-image {
      flex: 0 0 260px;
      height: 240px;
      background: linear-gradient(170deg, #f4f7fa 0%, #e6eaef 50%, #dde3ea 100%);
      overflow: hidden;
      position: relative;
      margin: 16px 16px 16px 0;
      border-radius: 8px;
      border: 1px solid var(--border);
    }
    .detail-image img { width: 100%; height: 100%; object-fit: cover; }
    .detail-info { flex: 1; padding: 20px 24px; }
    .detail-info .category { font-size: 10px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
    .detail-info h1 { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 2px; line-height: 1.2; }
    .detail-info .price { font-size: 26px; font-weight: 800; color: var(--navy); margin: 8px 0 2px; }
    .detail-info .price span { font-size: 12px; font-weight: 500; color: var(--text-light); margin-left: 2px; }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      margin-top: 14px;
      margin-bottom: 12px;
    }
    .status-pill.in-stock { background: var(--green-bg); color: var(--green); }
    .status-pill.out-stock { background: var(--red-bg); color: var(--red); }
    .specs-grid { margin: 10px 0; }
    .spec-row { display: flex; padding: 7px 0; border-bottom: 1px solid var(--border-light); font-size: 12.5px; }
    .spec-row:last-child { border-bottom: none; }
    .spec-label { width: 110px; color: var(--text-light); font-weight: 500; }
    .spec-value { font-weight: 600; color: var(--text); }
    .qty-row { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
    .qty-row label { font-size: 13px; font-weight: 600; color: var(--text-sec); }
    .qty-input {
      display: flex;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .qty-input button {
      width: 36px; height: 36px;
      border: none;
      background: var(--bg);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-sec);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .qty-input button:hover { background: var(--border); }
    .qty-input input {
      width: 52px; height: 36px;
      border: none;
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      text-align: center;
      font-weight: 600;
      font-size: 14px;
    }
    .detail-desc {
      padding: 18px 24px;
      border-top: 1px solid var(--border);
    }
    .detail-desc h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .detail-desc p { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

    /* ==================== CART ==================== */
    .page-wrap { max-width: 920px; margin: 32px auto; }
    .page-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
    .discount-banner {
      padding: 12px 16px;
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .discount-banner.needs-more { background: var(--red-bg); color: var(--red); border: 1px solid #FECACA; }
    .discount-banner.applied { background: var(--green-bg); color: var(--green); border: 1px solid #BBF7D0; }
    .discount-banner svg { flex-shrink: 0; }
    .cart-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
    .cart-head {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1fr 40px;
      padding: 10px 20px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-light);
    }
    .cart-row {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1fr 40px;
      padding: 14px 20px;
      align-items: center;
      border-bottom: 1px solid var(--border-light);
      font-size: 13.5px;
    }
    .cart-row:last-child { border-bottom: none; }
    .cart-name { font-weight: 600; color: var(--navy); }
    .cart-qty { display: flex; align-items: center; gap: 6px; }
    .cart-qty button {
      width: 26px; height: 26px;
      border: 1px solid var(--border);
      border-radius: 4px;
      background: var(--white);
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cart-qty button:hover { border-color: var(--teal); }
    .cart-qty input {
      width: 44px; height: 26px;
      border: 1px solid var(--border);
      border-radius: 4px;
      text-align: center;
      font-weight: 600;
      font-size: 13px;
    }
    .cart-del { color: var(--text-light); background: none; border: none; font-size: 16px; }
    .cart-del:hover { color: var(--red); }
    .summary-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 20px;
      margin-top: 16px;
    }
    .summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13.5px; color: var(--text-sec); }
    .summary-row.discount { color: var(--green); font-weight: 600; }
    .summary-row.total { border-top: 2px solid var(--navy); margin-top: 8px; padding-top: 12px; font-size: 18px; font-weight: 800; color: var(--navy); }
    .empty-state { text-align: center; padding: 56px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
    .empty-state svg { width: 48px; height: 48px; color: var(--border); margin-bottom: 12px; }
    .empty-state h3 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
    .empty-state p { color: var(--text-light); font-size: 13px; margin-bottom: 16px; }

    /* ==================== FORMS ==================== */
    .form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
    .form-card h2 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .fg { margin-bottom: 12px; }
    .fg.full { grid-column: 1 / -1; }
    .fg label { display: block; font-size: 12px; font-weight: 600; color: var(--text-sec); margin-bottom: 3px; }
    .fg input, .fg select { width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13.5px; }
    .fg input:focus, .fg select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,137,123,0.08); }

    /* ==================== CONFIRMATION ==================== */
    .confirm-card { text-align: center; max-width: 560px; margin: 56px auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; }
    .confirm-card svg { width: 56px; height: 56px; color: var(--green); margin-bottom: 16px; }
    .confirm-card h1 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
    .confirm-card .order-num { font-size: 22px; font-weight: 800; color: var(--teal); margin: 12px 0; font-family: monospace; letter-spacing: 1px; }

    /* ==================== AUTH ==================== */
    .auth-wrap { max-width: 400px; margin: 56px auto; }
    .auth-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
    .auth-card h2 { text-align: center; font-size: 18px; color: var(--navy); margin-bottom: 20px; }
    .auth-sep { text-align: center; margin: 16px 0; color: var(--text-light); font-size: 12px; }

    /* ==================== CUSTOMER ORDERS ==================== */
    .order-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; }
    .order-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; background: var(--bg); border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 8px; }
    .order-body { padding: 14px 20px; }
    .order-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-bottom: 1px solid var(--border-light); }
    .order-line:last-child { border-bottom: none; }
    .order-foot { display: flex; justify-content: space-between; padding: 10px 20px; background: var(--bg); font-size: 13px; flex-wrap: wrap; gap: 6px; }
    .status-tag { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
    .st-processing { background: var(--amber-bg); color: var(--amber); }
    .st-shipped { background: #EFF6FF; color: #2563EB; }
    .st-delivered { background: var(--green-bg); color: var(--green); }
    .st-cancelled { background: var(--red-bg); color: var(--red); }

    /* ==================== FOOTER ==================== */
    .footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 48px 0 24px; margin-top: 56px; }
    .footer-grid { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
    .footer h4 { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
    .footer p { font-size: 12.5px; line-height: 1.7; }
    .footer a { color: rgba(255,255,255,0.5); font-size: 12.5px; display: block; padding: 3px 0; }
    .footer a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 11px; max-width: 1140px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
    .footer-disclaimer { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 16px; margin-top: 16px; font-size: 10.5px; line-height: 1.7; text-align: left; }

    /* ==================== MODAL ==================== */
    .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,22,40,0.7); display: flex; align-items: center; justify-content: center; z-index: 10000; backdrop-filter: blur(3px); }
    .modal-overlay.hidden { display: none; }
    .modal { background: var(--white); border-radius: var(--radius-lg); padding: 36px; max-width: 480px; width: 92%; box-shadow: 0 24px 48px rgba(0,0,0,0.2); }
    .modal h2 { font-size: 20px; color: var(--navy); margin-bottom: 6px; }
    .modal p { font-size: 13px; color: var(--text-sec); margin-bottom: 20px; line-height: 1.6; }
    .modal-logo { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
    .modal-logo span { color: var(--teal); }
    .cb-group { margin-bottom: 20px; }
    .cb-group label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      cursor: pointer;
      font-size: 13px;
      color: var(--text-sec);
      margin-bottom: 8px;
      transition: all 0.15s;
      line-height: 1.5;
    }
    .cb-group label:hover { border-color: var(--teal); background: var(--teal-light); }
    .cb-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); margin-top: 2px; flex-shrink: 0; }

    /* ==================== LEGAL ==================== */
    .legal-content h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
    .legal-content h3:first-child { margin-top: 0; }
    .legal-content p { font-size: 13.5px; color: var(--text-sec); line-height: 1.75; margin-bottom: 10px; }
    .legal-content ul, .legal-content ol { margin: 8px 0 12px 20px; font-size: 13.5px; color: var(--text-sec); line-height: 1.75; }
    .legal-content li { margin-bottom: 4px; }
    .legal-content strong { color: var(--text); }
    .legal-content a { color: var(--teal); }

    /* ==================== TOAST ==================== */
    .toast { position: fixed; bottom: 20px; right: 20px; background: var(--navy); color: white; padding: 10px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 500; box-shadow: var(--shadow-md); z-index: 10001; }
    .toast.success { background: var(--green); }

    /* ==================== GATED CATALOG CARD ==================== */
    .gated-card { margin: 0 auto 44px; max-width: 720px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 10px 30px rgba(10,22,40,0.08), 0 2px 6px rgba(10,22,40,0.05); overflow: hidden; position: relative; }
    .gated-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--navy)); }
    .gated-tabs { display: flex; width: 100%; background: var(--bg); border-bottom: 1px solid var(--border); margin: 0; gap: 0; }
    .gated-tab { flex: 1; background: transparent; border: none; padding: 18px 16px; font-size: 15px; font-weight: 700; color: var(--text-sec); cursor: pointer; border-bottom: 3px solid transparent; transition: color 0.15s, border-color 0.15s, background 0.15s; position: relative; letter-spacing: 0.2px; }
    .gated-tab:hover { color: var(--navy); background: rgba(0,137,123,0.04); }
    .gated-tab.active { color: var(--navy); background: var(--white); border-bottom-color: var(--teal); }
    .gated-tab + .gated-tab { border-left: 1px solid var(--border); }
    .gated-tab-cta { color: var(--teal-dark); }
    .gated-tab-cta:not(.active) { background: var(--teal-light); }
    .gated-tab-cta:not(.active):hover { background: #C7EAE7; }
    .gated-tab-cta:not(.active)::after { content: ' \2192'; margin-left: 6px; font-weight: 800; display: inline-block; transition: transform 0.2s; }
    .gated-tab-cta:not(.active):hover::after { transform: translateX(3px); }
    .gated-tab-cta .pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-right: 8px; vertical-align: middle; animation: gatedPulse 1.4s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(0,137,123,0.5); }
    @keyframes gatedPulse { 0% { box-shadow: 0 0 0 0 rgba(0,137,123,0.6); } 70% { box-shadow: 0 0 0 8px rgba(0,137,123,0); } 100% { box-shadow: 0 0 0 0 rgba(0,137,123,0); } }
    .gated-body { padding: 32px 36px 36px; }
    .gated-header { text-align: center; margin-bottom: 22px; }
    .gated-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 4px 12px rgba(10,22,40,0.18); }
    .gated-tab-panel { display: none; max-width: 460px; margin: 0 auto; }
    .gated-tab-panel.active { display: block; }
    @media (max-width: 600px) {
      .gated-body { padding: 24px 20px 28px; }
      .gated-tab { padding: 14px 10px; font-size: 13.5px; }
    }

    /* ==================== CATALOG DISCLOSURE (non-exclusive) ==================== */
    .catalog-disclosure { margin-bottom: 36px; }
    .catalog-disclosure summary { cursor: pointer; list-style: none; padding: 18px 24px; background: var(--navy); color: white; border-radius: var(--radius-lg); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background 0.2s; }
    .catalog-disclosure summary::-webkit-details-marker { display: none; }
    .catalog-disclosure summary:hover { background: var(--navy-mid); }
    .catalog-disclosure-chev { transition: transform 0.2s; flex-shrink: 0; }
    .catalog-disclosure[open] summary { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .catalog-disclosure[open] .catalog-disclosure-chev { transform: rotate(180deg); }
    .catalog-disclosure-body { padding: 28px 0 4px; }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 768px) {
      .hero { padding: 48px 0; }
      .hero h1 { font-size: 28px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .detail-top { flex-direction: column; min-height: auto; }
      .detail-image { flex: none; height: 220px; border-right: none; border-bottom: 1px solid var(--border); }
      .detail-info { padding: 24px; }
      .cart-head { display: none; }
      .cart-row { grid-template-columns: 1fr; gap: 6px; }
      .footer-grid { grid-template-columns: 1fr; gap: 20px; }
      .trust-items { gap: 20px; }
      .form-grid { grid-template-columns: 1fr; }
      .header-inner { height: 52px; padding: 0 12px; }
      .logo { gap: 6px; }
      .logo-mark { width: 28px; height: 28px; border-radius: 6px; }
      .logo-mark svg { width: 16px; height: 16px; }
      .logo-text { font-size: 14px; letter-spacing: -0.2px; }
      .nav { gap: 0; }
      .nav-link { padding: 6px 7px; font-size: 11.5px; }
      .cart-count { font-size: 9px; min-width: 16px; height: 16px; padding: 0 4px; margin-left: 3px; }
      .top-bar-inner { font-size: 10px; }
    }
    @media (max-width: 380px) {
      .header-inner { padding: 0 8px; }
      .logo-text { font-size: 12.5px; }
      .nav-link { padding: 5px 5px; font-size: 11px; }
    }
