/* Reset + scroll-behavior now in global.css */

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .ann-bar {
    background: var(--pink);
    text-align: center;
    padding: 10px 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .ann-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
  }
  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
/* ── HERO ── */
  .hero {
    width: min(1220px, calc(100vw - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 440px);
    align-items: start;
    padding: 68px 0 44px;
    gap: 36px;
    position: relative;
    overflow: hidden;
  }

  /* grid lines background */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(219,38,108,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(219,38,108,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }

  /* pink glow bottom right */
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219,38,108,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-left { position: relative; z-index: 2; padding-top: 18px; }

  .hero-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.7));
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .hero-title-brand {
    display: block;
    margin-bottom: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
  }

  .hero-title em {
    font-style: italic;
    color: var(--pink);
  }
  .hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #ccc;
    font-style: normal;
    margin-bottom: 22px;
    letter-spacing: 0;
  }

  .hero-desc {
    font-size: 18px;
    line-height: 1.82;
    color: #aaa;
    max-width: 680px;
    margin-bottom: 48px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-actions .btn-ghost {
    background: rgba(255, 250, 252, 0.92);
    color: #1f1720;
    border-color: rgba(31, 19, 27, 0.12);
    box-shadow: 0 16px 40px rgba(8, 6, 10, 0.18);
    backdrop-filter: blur(12px);
  }

  .hero-actions .btn-ghost:hover {
    background: rgba(255, 250, 252, 0.98);
    border-color: rgba(214, 33, 94, 0.32);
    color: #b51f5a;
  }

  .btn-primary,
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }
  .btn-primary {
    background: #d6215e;
    color: #fff;
    border: none;
  }
  .btn-primary:hover { background: #ff0060; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(219,38,108,0.3); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
  }
  .btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

  /* HERO RIGHT — product visual */
  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .product-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
  }
  .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(219,38,108,0.06), transparent 60%);
    pointer-events: none;
  }

  .product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
  }
  .product-brand {
    color: var(--pink);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .doc-chip {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #aaa;
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .product-hero-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    filter: drop-shadow(0 20px 60px rgba(219,38,108,0.2));
    border-radius: 4px;
  }
  .product-title {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
  }
  .product-dose {
    margin-top: 6px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }
  .spec-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 14px;
  }
  .spec-label {
    color: var(--pink, #db266c);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .spec-value {
    margin-top: 8px;
    color: #fff;
    line-height: 1.5;
  }
  .spec-value.pink { color: var(--pink); }

  .hero-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 14px;
  }
  .hero-qty-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--border2);
    background: var(--surface);
    color: var(--white);
    font-family: var(--mono);
    font-size: 18px;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    border-radius: 50%;
  }
  .hero-qty-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--pink-soft);
  }
  .hero-qty-display {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .hero-qty-display span {
    color: var(--white);
    font-weight: 600;
  }

  .price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
  }
  .price-main {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
  }
  .price-unit {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--gray);
    letter-spacing: .1em;
  }
  .price-sub {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 24px;
  }

  .order-btn {
    width: 100%;
    background: var(--pink);
    color: #fff;
    border: none;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 16px;
    cursor: pointer;
    border-radius: 999px;
    transition: background .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
  }
  .order-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform .5s;
  }
  .order-btn:hover::before { transform: translateX(100%); }
  .order-btn:hover { background: #ff0060; box-shadow: 0 8px 32px rgba(219,38,108,0.4); }

  .stock-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--gray);
    letter-spacing: .1em;
    justify-content: center;
  }
  .stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 8px #00e676;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    border-right: 1px solid var(--border);
  }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: none; }
  .trust-icon {
    font-size: 20px;
    flex-shrink: 0;
  }
  .trust-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.5;
  }
  .trust-label strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2px;
  }

  /* ── SCIENCE SECTION ── */
  .science {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 200px;
  }
  .section-title {
    font-family: var(--serif);
    font-size: var(--type-section-h2);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 48px;
    max-width: 640px;
  }
  .section-title em { font-style: italic; color: var(--pink); }

  .receptor-desc a,
  .detail-right p a,
  .side-effects-prose a,
  .landing-faq-item .faq-answer a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .side-effects-prose {
    max-width: 800px;
  }

  .side-effects-prose p {
    font-size: 17px;
    line-height: 1.8;
    color: #888;
    font-weight: 300;
  }

  .side-effects-prose h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
  }

  .receptor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 80px;
  }
  .receptor-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
  }
  .receptor-card:hover { border-color: var(--pink); }
  .receptor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: transparent;
    transition: background .3s;
  }
  .receptor-card:hover::before { background: var(--pink); }
  .receptor-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--pink);
    margin-bottom: 20px;
  }
  .receptor-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 8px;
  }
  .receptor-abbr {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--pink);
    margin-bottom: 20px;
    letter-spacing: .1em;
  }
  .receptor-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #888;
    font-weight: 300;
  }

  /* DATA STATS */
  .data-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .data-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
  }
  .data-num {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 8px;
  }
  .data-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ── PRODUCT DETAIL ── */
  .product-detail {
    padding: 120px 48px;
    background: var(--deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .detail-specs-list {
    list-style: none;
    margin-bottom: 48px;
  }
  .detail-specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .detail-specs-list li:last-child { border-bottom: none; }
  .spec-key {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .spec-val {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--white);
    text-align: right;
  }
  .spec-val.highlight { color: var(--pink); }

  .contents-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
  }
  .contents-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 20px;
  }
  .contents-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contents-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
  }
  .contents-list li::before {
    content: '→';
    color: var(--pink);
    font-family: var(--mono);
    font-size: 12px;
    flex-shrink: 0;
  }

  .detail-right .section-title { margin-bottom: 32px; }
  .detail-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 24px;
    font-weight: 300;
  }

  /* dosing visual */
  .dosing-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    margin-top: 40px;
  }
  .dosing-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 20px;
  }
  .dosing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .dosing-row:last-child { border-bottom: none; }
  .dosing-key { font-family: var(--mono); font-size: 10px; color: var(--gray); letter-spacing: .1em; text-transform: uppercase; }
  .dosing-val { font-family: var(--mono); font-size: 13px; color: var(--white); }
  .dosing-val .pink { color: var(--pink); }

  /* ── ORDER SECTION ── */
  .order-section {
    padding: 120px 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .order-section .section-tag { justify-content: center; }
  .order-section .section-tag::after { display: none; }
  .order-section .section-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--pink); }
  .order-section .section-title { max-width: 100%; text-align: center; margin: 0 auto 16px; }

  .order-note {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.7;
  }

  .order-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 48px;
    text-align: left;
  }
  .order-option {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 36px 28px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    position: relative;
  }
  .order-option:hover, .order-option.selected {
    border-color: var(--pink);
    background: var(--pink-glow);
  }
  .order-option.selected::before {
    content: '✓';
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--pink);
    font-family: var(--mono);
    font-size: 12px;
  }
  .option-qty {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
  }
  .option-price {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 4px;
  }
  .option-per {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gray);
  }
  .option-save {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--pink);
    margin-top: 8px;
    letter-spacing: .1em;
  }

  .order-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    text-align: left;
    margin-bottom: 24px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-group.full { grid-column: 1 / -1; }
  .form-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .form-input {
    background: var(--black);
    border: 1px solid var(--border2);
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    padding: 14px 16px;
    border-radius: 12px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
  }
  .form-input:focus { border-color: var(--pink); }
  .form-input::placeholder { color: var(--gray2); }

  select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .payment-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0 28px;
  }
  .payment-option {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .payment-option:hover, .payment-option.active {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--pink-glow);
  }
  .payment-icon { font-size: 18px; display: block; margin-bottom: 6px; }

  .disclaimer {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--gray2);
    line-height: 1.7;
    letter-spacing: .05em;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.01);
  }

  /* ── COA SECTION ── */
  .coa-section {
    padding: 120px 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .coa-section .section-tag { justify-content: center; }
  .coa-section .section-tag::after { display: none; }
  .coa-section .section-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--pink); }
  .coa-section .section-title { max-width: 100%; text-align: center; margin: 0 auto 16px; }
  .coa-desc {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.7;
  }
  .coa-image-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  .coa-image-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
  }
  .coa-image-wrap img {
    max-width: 100%;
    width: 520px;
    border-radius: 12px;
    display: block;
  }
  .coa-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .coa-meta-item {
    text-align: center;
  }
  .coa-meta-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 4px;
  }
  .coa-meta-value {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
  }
  .coa-meta-value.pink { color: var(--pink); }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .footer-logo span { color: var(--pink); }
  .footer-links {
    display: flex;
    gap: 12px;
  }
  .footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .15em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--gray2);
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
  }
  .footer-links a:hover { color: var(--pink); border-color: var(--pink); background: var(--pink-soft); transform: translateY(-1px); }
  .footer-social { display: flex; gap: 16px; align-items: center; }
  .footer-social a { color: var(--gray2); transition: color .2s; display: flex; align-items: center; }
  .footer-social a:hover { color: var(--pink); }
  .footer-ruo {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--gray2);
    letter-spacing: .1em;
  }

  /* ── WHATSAPP FLOATING BUTTON ── */
  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
  }

  /* ── COA MODAL ── */
  .coa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 24px;
  }
  .coa-modal-overlay.open { display: flex; }
  .coa-modal-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(219,38,108,0.2);
    cursor: default;
  }
  .coa-modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
    transition: background .2s;
  }
  .coa-modal-close:hover { background: rgba(255,255,255,0.2); }
  .coa-modal-close svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }

  .coa-image-wrap { cursor: zoom-in; }

  /* ── TOAST ── */
  .toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--surface);
    border: 1px solid var(--pink);
    border-radius: 999px;
    padding: 16px 24px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--white);
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 320px;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* ── ANIMATIONS (no fade — show content immediately) ── */
  .fade-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  /* ── HAMBURGER ── */

@media (max-width: 768px) {
    body::before { display: none; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
.hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; width: 100%; }
    .trust-bar { grid-template-columns: 1fr 1fr; padding: 24px; gap: 16px; }
    .trust-item { border-right: none; padding: 0; }
    .science { padding: 80px 24px; }
    .receptor-grid { grid-template-columns: 1fr; }
    .data-row { grid-template-columns: 1fr; }
    .product-detail { padding: 80px 24px; }
    .detail-inner { grid-template-columns: 1fr; gap: 48px; }
    .order-section { padding: 80px 24px; }
    .coa-section { padding: 80px 24px; }
    .coa-image-wrap { padding: 20px; }
    .coa-image-wrap img { width: 100%; }
    .order-options { grid-template-columns: 1fr; }
    .order-form { padding: 28px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .payment-row { grid-template-columns: 1fr; }
    footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  }

  /* ── BACK TO TOP ── */
  .back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    background: var(--surface, #111);
    border: 1px solid var(--border, #222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, border-color .3s, background .3s;
    z-index: 900;
    text-decoration: none;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; }
  .back-to-top:hover {
    border-color: var(--pink, #db266c);
    background: rgba(219,38,108,0.08);
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--gray, #888);
    transition: stroke .3s;
  }
  .back-to-top:hover svg { stroke: var(--pink, #db266c); }
  /* Push up if WhatsApp float is present */
  .whatsapp-float ~ .back-to-top { bottom: 90px; }
  @media (max-width: 768px) {
    .back-to-top { bottom: 24px; left: 24px; width: 40px; height: 40px; }
    .whatsapp-float ~ .back-to-top { bottom: 80px; }
  }

  /* ── HOMEPAGE ALIGNMENT PASS ── */
  body::before {
    display: none;
  }

  .ann-bar {
    display: none;
  }

  main {
    background: linear-gradient(180deg, #120d13 0, #120d13 1080px, #f7f3f5 1080px, #f7f3f5 100%);
  }

  .hero {
    width: min(1220px, calc(100vw - 48px));
    padding: 64px 0 48px;
    gap: 52px;
    overflow: hidden;
  }

  .hero::before {
    background-image: none;
  }

  .hero::after {
    width: 320px;
    height: 320px;
    right: -36px;
    bottom: -88px;
    background: radial-gradient(circle, rgba(219, 38, 108, 0.14) 0%, transparent 72%);
  }

  .hero-right {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-subtitle {
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 16px;
  }

  .hero-desc {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 20px;
  }

  .hero-proof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
  }

  .hero-proof-chips li {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-support-note {
    max-width: 36rem;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-support-note a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.32);
    text-underline-offset: 3px;
  }

  .hero-support-note a:hover,
  .hero-support-note a:focus-visible {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.92);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: none;
    width: auto;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto;
  }

  .btn-primary {
    background: #d62a69;
  }

  .btn-primary:hover {
    background: #c3245f;
    box-shadow: 0 14px 40px rgba(214, 42, 105, 0.28);
  }

  .product-card {
    background: rgba(255, 250, 252, 0.98);
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 28px 80px rgba(18, 13, 19, 0.26);
    max-width: min(430px, 100%);
    overflow: hidden;
  }

  .product-card::before {
    display: none;
  }

  .product-card::after {
    inset: auto;
    top: -80px;
    right: 0;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(219, 38, 108, 0.08) 0%, transparent 72%);
  }

  .product-brand {
    color: #b42963;
  }

  .doc-chip {
    background: rgba(219, 38, 108, 0.08);
    color: #a51f56;
  }

  .product-fallback-label,
  .product-title,
  .price-main {
    color: #1f1720;
  }

  .product-dose,
  .product-micro-note,
  .price-sub,
  .stock-badge {
    color: #635461;
  }

  .product-micro-note {
    margin-bottom: 0;
  }

  .product-specs {
    gap: 10px;
  }

  .spec-item {
    background: #f7f0f4;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 14px;
  }

  .spec-label {
    color: #a51f56;
  }

  .spec-value {
    color: #1f1720;
  }

  .tier-selector {
    gap: 10px;
  }

  .tier-card {
    background: #ffffff;
    border: 1px solid rgba(31, 19, 27, 0.12);
    border-radius: 14px;
  }

  .tier-card.selected {
    background: #fcf1f5;
    border-color: #cf2c66;
    box-shadow: inset 0 0 0 1px rgba(207, 44, 102, 0.14);
  }

  .tier-card .qty,
  .tier-card .price {
    color: #1f1720;
  }

  .tier-card .qty-label,
  .tier-card .price-sub {
    color: #635461;
  }

  .tier-card .badge {
    background: #cf2c66;
    color: #ffffff;
  }

  .tier-card .save {
    color: #18804b;
  }

  .order-btn {
    background: #cf2c66;
    box-shadow: 0 18px 40px rgba(207, 44, 102, 0.18);
  }

  .order-btn:hover {
    background: #bb245b;
    box-shadow: 0 18px 42px rgba(187, 36, 91, 0.24);
  }

  .stock-dot {
    box-shadow: none;
  }

  .trust-bar {
    width: min(1220px, calc(100vw - 48px));
    margin: 24px auto 0;
    padding: 0;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(18, 13, 19, 0.08);
    overflow: hidden;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 28px 24px;
    border-right: 1px solid rgba(31, 19, 27, 0.08);
    text-align: center;
  }

  .trust-item:last-child {
    border-right: none;
  }

  .trust-kicker {
    display: block;
    margin-bottom: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b42963;
  }

  .trust-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #1f1720;
  }

  .trust-item p {
    margin: 0;
    max-width: 17ch;
    font-size: 15px;
    line-height: 1.7;
    color: #625460;
  }

  .order-band,
  .science,
  .coa-section {
    width: min(1220px, calc(100vw - 48px));
    max-width: none;
    margin: 0 auto;
    padding: 96px 0;
  }

  .order-band {
    padding: 36px 0 28px;
  }

  .order-band-card {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 420px);
    gap: 28px;
    padding: 32px;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(18, 13, 19, 0.06);
  }

  .order-band-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .order-band-copy .section-title {
    max-width: 18ch;
    margin-bottom: 0;
    font-size: clamp(44px, 3.7vw, 58px);
    line-height: 1.04;
  }

  .order-band-text {
    max-width: 42rem;
    font-size: 18px;
    line-height: 1.78;
    color: #625460;
  }

  .order-band-text a {
    color: #1f1720;
    text-decoration: underline;
    text-decoration-color: rgba(180, 41, 99, 0.34);
    text-underline-offset: 3px;
  }

  .order-band-text a:hover,
  .order-band-text a:focus-visible {
    color: #b42963;
    text-decoration-color: rgba(180, 41, 99, 0.85);
  }

  .order-band-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .order-band-meta-item {
    padding: 18px 18px 20px;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 14px;
    background: #faf7f8;
  }

  .order-band-meta-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b42963;
  }

  .order-band-meta-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1f1720;
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -0.02em;
  }

  .order-band-meta-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #625460;
  }

  .order-band-panel {
    padding: 22px;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 16px;
    background: #fcfafb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .order-band-panel .tier-selector {
    margin-bottom: 16px;
  }

  .order-band-footer {
    display: grid;
    gap: 12px;
  }

  .order-band-footer .price-sub {
    margin-bottom: 0;
  }

  .order-band-footer .stock-badge {
    justify-content: flex-start;
    margin-top: 0;
  }

  .science:first-of-type {
    padding-top: 56px;
  }

  .section-tag,
  .product-detail .section-tag,
  .coa-section .section-tag {
    color: #b42963;
  }

  .section-tag::after,
  .product-detail .section-tag::after {
    background: rgba(31, 19, 27, 0.1);
  }

  .section-title,
  .receptor-name,
  .detail-right .section-title,
  .landing-faq-item summary {
    color: #1f1720;
  }

  .receptor-card .receptor-name {
    color: #241822;
    font-weight: 400;
  }

  .section-title em {
    color: #cf2c66;
  }

  .landing-prose,
  .receptor-desc,
  .detail-right p,
  .side-effects-prose p,
  .coa-desc,
  .faq-answer {
    color: #625460;
  }

  .receptor-card .receptor-desc {
    color: #5b4a58;
  }

  .receptor-desc a,
  .detail-right p a,
  .side-effects-prose a,
  .landing-faq-item .faq-answer a,
  .landing-prose a {
    color: #b42963;
  }

  .receptor-card,
  .data-card,
  .contents-box,
  .dosing-visual,
  .coa-image-wrap,
  .landing-faq-item {
    background: #ffffff;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(18, 13, 19, 0.05);
  }

  .receptor-card::before,
  .coa-image-wrap::before {
    display: none;
  }

  .receptor-card:hover {
    border-color: rgba(180, 41, 99, 0.24);
  }

  .receptor-num,
  .receptor-abbr,
  .dosing-title,
  .side-effects-prose h3,
  .contents-title {
    color: #b42963;
  }

  .data-num {
    color: #cf2c66;
  }

  .data-label,
  .spec-key,
  .dosing-key,
  .coa-meta-label {
    color: #8d7586;
  }

  .dosing-row,
  .detail-specs-list li {
    border-bottom-color: rgba(31, 19, 27, 0.08);
  }

  .detail-specs-list .spec-val,
  .dosing-val,
  .coa-meta-value {
    color: #1f1720;
  }

  .contents-list li {
    color: #625460;
  }

  .product-detail {
    margin-top: 0;
    padding: 96px 24px;
    background: #f1eaee;
    border-top: 1px solid rgba(31, 19, 27, 0.08);
    border-bottom: 1px solid rgba(31, 19, 27, 0.08);
  }

  .detail-inner {
    max-width: 1220px;
    gap: 64px;
  }

  .landing-prose-stack,
  .side-effects-prose {
    display: grid;
    gap: 18px;
  }

  .landing-note {
    color: #625460;
  }

  .coa-section {
    text-align: center;
  }

  .coa-desc {
    max-width: 700px;
    margin-inline: auto;
  }

  .coa-image-wrap {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .coa-image-wrap img {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .coa-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
    max-width: 860px;
    margin-inline: auto;
  }

  .coa-meta-item {
    padding: 18px 16px;
    border: 1px solid rgba(31, 19, 27, 0.08);
    border-radius: 14px;
    background: #ffffff;
  }

  .coa-meta-value.pink {
    color: #cf2c66;
  }

  .landing-faq-list {
    display: grid;
    gap: 14px;
  }

  .landing-faq-item {
    overflow: hidden;
  }

  .landing-faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    font-family: var(--serif);
    font-size: clamp(28px, 2.6vw, 36px);
    line-height: 1.08;
  }

  .landing-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .landing-faq-item[open] summary {
    border-bottom: 1px solid rgba(31, 19, 27, 0.08);
  }

  .landing-faq-toggle {
    flex-shrink: 0;
    padding-top: 6px;
    font-family: var(--mono);
    font-size: 14px;
    color: #cf2c66;
  }

  .faq-answer {
    padding: 0 28px 24px;
    font-size: 18px;
    line-height: 1.78;
  }

  .science#side-effects,
  .science#faq,
  .coa-section {
    border-top: none !important;
  }

  .footer-capture__heading {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
  }

  .footer-capture__sub,
  .footer-compliance,
  .footer-copyright {
    color: rgba(255, 255, 255, 0.68);
  }

  .footer-capture__input {
    background: #ffffff;
    border-color: rgba(31, 19, 27, 0.1);
    color: #1f1720;
  }

  .footer-social a {
    border-color: rgba(31, 19, 27, 0.1);
    background: #ffffff;
    color: #625460;
  }

  @media (max-width: 900px) {
    main {
      background: linear-gradient(180deg, #120d13 0, #120d13 1080px, #f7f3f5 1080px, #f7f3f5 100%);
    }

    .hero,
    .order-band,
    .trust-bar,
    .science,
    .coa-section {
      width: calc(100vw - 32px);
    }

    .hero {
      padding: 44px 0 36px;
      gap: 32px;
      overflow: hidden;
    }

    .hero-title {
      max-width: none;
      font-size: clamp(48px, 14vw, 68px);
    }

    .hero-actions {
      grid-template-columns: 1fr;
      max-width: none;
    }

    .order-band {
      padding: 28px 0 22px;
    }

    .order-band-card {
      grid-template-columns: 1fr;
      padding: 24px;
    }

    .order-band-copy .section-title {
      max-width: 14ch;
      font-size: clamp(34px, 8vw, 46px);
    }

    .order-band-meta {
      grid-template-columns: 1fr;
    }

    .trust-bar {
      grid-template-columns: 1fr 1fr;
      border-radius: 16px;
      margin-top: 18px;
    }

    .order-band,
    .science,
    .coa-section {
      padding: 72px 0;
    }

    .section-title {
      max-width: none;
      font-size: clamp(40px, 11vw, 56px);
    }

    .product-detail {
      padding: 72px 16px;
    }

    .detail-inner {
      gap: 40px;
    }

    .coa-meta {
      grid-template-columns: 1fr 1fr;
    }

    .landing-faq-item summary {
      padding: 20px 22px;
      font-size: 28px;
    }

    .faq-answer {
      padding: 0 22px 22px;
      font-size: 17px;
    }
  }

  @media (max-width: 640px) {
    main {
      background: linear-gradient(180deg, #120d13 0, #120d13 1080px, #f7f3f5 1080px, #f7f3f5 100%);
    }

    .trust-bar {
      grid-template-columns: 1fr;
    }

    .order-band-copy .section-title {
      max-width: 12ch;
      font-size: 34px;
    }

    .product-card,
    .order-band-card,
    .order-band-panel,
    .receptor-card,
    .data-card,
    .contents-box,
    .dosing-visual,
    .coa-image-wrap {
      padding: 22px;
    }

    .product-card {
      box-shadow: 0 24px 56px rgba(18, 13, 19, 0.22);
    }

    .product-head {
      gap: 8px;
    }

    .product-brand {
      font-size: 9px;
      letter-spacing: 0.03em;
    }

    .doc-chip {
      padding: 7px 8px;
      font-size: 9px;
      letter-spacing: 0.03em;
    }

    .hero-actions .btn-ghost {
      background: rgba(255, 250, 252, 0.94);
      border-color: rgba(31, 19, 27, 0.12);
      color: #1f1720;
      box-shadow: 0 10px 24px rgba(18, 13, 19, 0.08);
    }
  }

  /* Mobile: hide Purity/Batch/Device trust-items; only Delivery + Compliance remain */
  @media (max-width: 900px) {
    .trust-bar .trust-item:nth-child(-n+3) {
      display: none;
    }
  }

  /* Mobile: tighten tier-selector to match glow's compact 3-up layout */
  @media (max-width: 720px) {
    .order-band-panel .tier-selector {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 16px;
    }
    .order-band-panel .tier-card {
      flex: none;
      width: auto;
      min-height: 0;
      padding: 12px 7px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .order-band-panel .tier-card .price {
      font-size: 12px;
      white-space: normal;
    }
    .order-band-panel .tier-card .price-sub,
    .order-band-panel .tier-card .save {
      font-size: 8px;
    }
    .order-band-panel .tier-card .qty {
      font-size: 20px;
      margin-bottom: 0;
    }
    .order-band-panel .tier-card .qty-label {
      font-size: 10px;
      margin-bottom: 4px;
    }
    .order-band-panel .tier-card .badge {
      font-size: 8px;
      padding: 2px 6px;
    }
  }

  /* Mobile narrow: collapse 3-up tier grid to 1 column on iPhone SE / 11 Pro Max.
     Placed after the 720px rule so it wins by source order at <=480. */
  @media (max-width: 480px) {
    .order-band-panel .tier-selector {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .order-band-panel .tier-card {
      padding: 14px 12px 12px;
    }
    .order-band-panel .tier-card .price {
      font-size: 15px;
    }
    .order-band-panel .tier-card .qty {
      font-size: 22px;
    }
  }
