@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;600;800;900&family=Fraunces:ital,wght@1,400;1,500&display=swap');

:root{
  --black: #0a0710;
  --plum: #1c0e2e;
  --violet: #7b2ff7;
  --violet-bright: #a855f7;
  --glow: #d9b8ff;
  --paper: #f6f3f8;
  --steel: #9a92a8;
}

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

html{ scroll-behavior: smooth; }

body{
  background: var(--black);
  color: var(--paper);
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

/* ---------- NAV ---------- */
nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: linear-gradient(to bottom, rgba(10,7,16,0.9), transparent);
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.brand img{ width: 34px; height: 34px; border-radius: 6px; object-fit: cover; }
.nav-links{ display: flex; gap: 28px; font-size: 0.92rem; font-weight: 600; color: var(--steel); align-items: center;}
.nav-links a:hover{ color: var(--paper); }
.nav-links .pill{
  border: 1px solid rgba(168,85,247,0.5);
  padding: 8px 18px;
  border-radius: 100px;
  color: var(--paper);
}
.nav-links .pill:hover{ border-color: var(--violet-bright); color: var(--violet-bright); }

/* ---------- HERO ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 8vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 78% 18%, rgba(168,85,247,0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(123,47,247,0.25), transparent 65%),
    var(--black);
}
.hero-mark{
  position: absolute;
  top: 12vh; right: -8vw;
  width: min(52vw, 480px);
  opacity: 0.9;
  filter: drop-shadow(0 0 60px rgba(168,85,247,0.35));
  transform: rotate(6deg);
}
.hero-mark img{ width: 100%; }
.eyebrow-line{ width: 46px; height: 2px; background: var(--violet-bright); margin-bottom: 22px; }
h1.hero-headline{
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-sub{ margin-top: 24px; max-width: 46ch; color: var(--steel); font-size: 1.05rem; }
.hero-cta-row{ display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.btn-primary{
  display: inline-block;
  background: var(--violet-bright);
  color: #0a0710;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover{ background: var(--glow); transform: translateY(-2px); }
.btn-primary:disabled{ opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-primary:disabled:hover{ background: var(--violet-bright); }
.btn-ghost{
  color: var(--paper);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--steel);
  padding-bottom: 3px;
}

/* ---------- QUOTE BREAK ---------- */
.quote-section{ background: var(--paper); color: var(--black); padding: 14vh 8vw; text-align: center; }
.quote-section p{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.35;
  color: #1c1526;
}
.quote-mark{ display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; color: var(--violet); margin-bottom: 20px; }

/* ---------- CATEGORIES ---------- */
.catalog{ background: var(--black); padding: 12vh 6vw; }
.catalog-head{ display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 6vh; flex-wrap: wrap; }
.catalog-head h2{ font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; max-width: 14ch; line-height: 1.08; }
.catalog-head p{ color: var(--steel); max-width: 34ch; font-size: 0.98rem; }

.cat-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat-card{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(154,146,168,0.18);
  background: linear-gradient(155deg, rgba(123,47,247,0.10), rgba(28,14,46,0.4));
  padding: 16px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cat-card:hover{ border-color: rgba(168,85,247,0.55); background: linear-gradient(155deg, rgba(123,47,247,0.22), rgba(28,14,46,0.55)); }
.cat-card .cat-name{ font-weight: 800; font-size: 1.05rem; }
.cat-card .cat-index{ align-self: flex-start; color: var(--steel); font-size: 0.8rem; }
.cat-icon{ flex: 1; width: 100%; display: flex; align-items: center; justify-content: center; min-height: 0; }
.cat-icon svg{ width: 68%; height: 68%; }

@media (max-width: 860px){
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PRODUCT LIST (full catalog page) ---------- */
.product-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card{
  display: block;
  border: 1px solid rgba(154,146,168,0.18);
  border-radius: 16px;
  padding: 18px;
  background: rgba(246,243,248,0.03);
  transition: border-color 0.25s ease;
}
.product-card:hover{ border-color: rgba(168,85,247,0.5); }
.product-thumb{
  aspect-ratio: 1;
  border-radius: 12px;
  margin-bottom: 14px;
  background: linear-gradient(155deg, rgba(123,47,247,0.18), rgba(28,14,46,0.5));
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  font-size: 0.8rem;
}
.product-card .p-name{ font-weight: 700; font-size: 0.98rem; }
.product-card .p-cat{ color: var(--steel); font-size: 0.8rem; margin-top: 4px; }
.p-name-brand{
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #c9a7ff, #7b2ff7, #c9a7ff, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wave-shimmer 5s linear infinite;
}
@keyframes wave-shimmer{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}
.product-card .p-name-brand{ font-size: 1.1rem; }
.brand-card-simple{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  padding: 28px 18px;
}
.brand-card-simple .p-name-brand{ font-size: 1.25rem; }
.nav-links .cart-link{ position: relative; }
.cart-badge{
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px; right: -14px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 100px;
  background: var(--violet-bright);
  color: #0a0710;
  font-size: 0.7rem;
  font-weight: 800;
}
.p-price{ margin-top: 10px; font-weight: 800; color: var(--violet-bright); }
.p-price.pending{ color: var(--steel); font-weight: 600; font-size: 0.85rem; }
.item-note{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(168,85,247,0.08);
  border: 1px dashed rgba(168,85,247,0.35);
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.4;
}
.qty-stepper{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.qty-btn{
  width: 30px; height: 30px;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.4);
  background: transparent;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover{ border-color: var(--violet-bright); color: var(--violet-bright); }
.qty-value{ font-weight: 700; min-width: 18px; text-align: center; }
.add-cart-btn{
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.5);
  background: transparent;
  color: var(--paper);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.add-cart-btn:hover{ border-color: var(--violet-bright); color: var(--violet-bright); }
.add-cart-btn:disabled{ opacity: 0.5; cursor: default; }

.product-card.link-card{
  cursor: pointer;
  border-style: dashed;
  border-color: rgba(168,85,247,0.45);
}
.product-card.link-card:hover{ border-color: var(--violet-bright); background: rgba(168,85,247,0.08); }
.product-card.link-card .p-name{ color: var(--violet-bright); }

/* ---------- MEMBER PRICE BANNER ---------- */
.price-banner{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 30px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--violet), var(--violet-bright));
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.price-banner span{
  display: inline-block;
  padding-left: 100%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0a0710;
  animation: price-marquee 15s linear infinite;
}
@keyframes price-marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-100%); }
}
body.has-banner nav{ top: 30px; }

.cart-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(154,146,168,0.15);
}
.cart-row .item-info{ display: flex; flex-direction: column; }
.cart-row .item-name{ font-weight: 700; }
.cart-row .item-meta{ color: var(--steel); font-size: 0.8rem; }
.cart-row .item-price{ font-weight: 800; color: var(--violet-bright); }
.remove-btn{
  background: none;
  border: none;
  color: var(--steel);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 14px;
}
.remove-btn:hover{ color: var(--violet-bright); }
.cart-total-row{
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1.3rem;
  font-weight: 800;
}

/* ---------- DISCOUNT CODE ---------- */
.discount-row{ display: flex; gap: 10px; align-items: stretch; }
.discount-row input{
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.discount-row input:disabled{ color: var(--glow); opacity: 1; }
.discount-row button{
  flex: 0 0 auto;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,0.5);
  background: rgba(168,85,247,0.12);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.discount-row button:hover{ background: rgba(168,85,247,0.22); }
.discount-row button:disabled{ opacity: 0.55; cursor: default; }
.discount-msg{ font-size: 0.82rem; margin-top: 8px; color: var(--steel); }
.discount-msg.is-good{ color: var(--glow); font-weight: 700; }
.discount-msg.is-bad{ color: #ff9d9d; font-weight: 700; }
.discount-hint{ font-size: 0.76rem; color: var(--steel); margin-top: 8px; }
.discount-hint a{ color: var(--violet-bright); font-weight: 700; }
.cart-total-row.discount-line{
  font-size: 1rem;
  padding: 0 0 14px;
  color: var(--glow);
}

/* ---------- VENDOR CODE DESK ---------- */
.codes-table{ width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 0.85rem; }
.codes-table th{
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
  padding: 0 12px 10px 0;
  border-bottom: 1px solid rgba(154,146,168,0.2);
}
.codes-table td{
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid rgba(154,146,168,0.12);
  vertical-align: top;
}
.codes-table .code-cell{ font-weight: 800; letter-spacing: 0.06em; }
.code-state{
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.code-state.open{ background: rgba(168,85,247,0.18); color: var(--glow); }
.code-state.held{ background: rgba(255,196,90,0.16); color: #ffc45a; }
.code-state.spent{ background: rgba(154,146,168,0.15); color: var(--steel); }
.codes-table tr.is-spent .code-cell{ color: var(--steel); }
.new-codes{ margin-top: 18px; }
.new-codes .code-chip{
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(168,85,247,0.5);
  background: rgba(168,85,247,0.1);
  font-weight: 800;
  letter-spacing: 0.06em;
}

@media (max-width: 860px){
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- VENDOR PANEL ---------- */
.vendor{
  background: linear-gradient(135deg, var(--plum), var(--black) 70%);
  border-top: 1px solid rgba(168,85,247,0.25);
  border-bottom: 1px solid rgba(168,85,247,0.25);
  padding: 12vh 6vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
  align-items: center;
}
.vendor-eyebrow{ color: var(--violet-bright); font-weight: 700; font-size: 0.85rem; margin-bottom: 16px; }
.vendor h2{ font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.12; max-width: 13ch; }
.vendor p{ color: var(--steel); margin-top: 18px; max-width: 42ch; font-size: 1rem; }
.vendor-card{ background: rgba(246,243,248,0.04); border: 1px solid rgba(168,85,247,0.3); border-radius: 20px; padding: 34px; }
.vendor-card .row{ display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(154,146,168,0.15); }
.vendor-card .row:last-child{ border-bottom: none; }
.vendor-card .label{ color: var(--steel); font-size: 0.85rem; }
.vendor-card .value{ font-weight: 700; font-size: 1.02rem; }

@media (max-width: 860px){ .vendor{ grid-template-columns: 1fr; } }

/* ---------- AUTH / PAY PAGES ---------- */
.auth-wrap{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14vh 6vw 8vh;
  background:
    radial-gradient(ellipse 55% 40% at 85% 10%, rgba(168,85,247,0.28), transparent 60%),
    var(--black);
}
.auth-card{
  width: min(420px, 100%);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 22px;
  padding: 40px 34px;
  background: rgba(246,243,248,0.03);
}
.auth-card .auth-eyebrow{ color: var(--violet-bright); font-weight: 700; font-size: 0.82rem; margin-bottom: 10px; }
.auth-card h1{ font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.auth-card p.desc{ color: var(--steel); font-size: 0.92rem; margin-bottom: 28px; }
.field{ margin-bottom: 16px; }
.field label{ display: block; font-size: 0.82rem; color: var(--steel); margin-bottom: 6px; }
.field input{
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(154,146,168,0.3);
  background: rgba(255,255,255,0.03);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
}
.field input:focus{ outline: 2px solid var(--violet-bright); outline-offset: 1px; }
.auth-submit{ width: 100%; margin-top: 6px; }
.auth-switch{ text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--steel); }
.auth-switch a{ color: var(--violet-bright); font-weight: 700; }

.price-line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(154,146,168,0.2);
  border-bottom: 1px solid rgba(154,146,168,0.2);
  margin: 22px 0 26px;
}
.price-line .amount{ font-size: 1.6rem; font-weight: 900; }
.price-line .period{ color: var(--steel); font-size: 0.85rem; }
.note-box{
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(168,85,247,0.08);
  border: 1px dashed rgba(168,85,247,0.4);
  font-size: 0.82rem;
  color: var(--steel);
}

/* ---------- FOOTER ---------- */
footer{
  background: var(--black);
  padding: 8vh 6vw 6vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(154,146,168,0.15);
}
footer .brand{ margin-bottom: 8px; }
footer .tag{ color: var(--steel); font-size: 0.9rem; max-width: 30ch; }
.footer-right{ text-align: right; }
.tiktok-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.4);
  margin-bottom: 14px;
}
.tiktok-link:hover{ border-color: var(--violet-bright); color: var(--violet-bright); }
.fine{ color: var(--steel); font-size: 0.8rem; }

/* ---------- MEMBER NOTICE POPUP ---------- */
body.notice-open{ overflow: hidden; }
.notice-overlay,
.brand-modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10,7,16,0.82);
  backdrop-filter: blur(6px);
  animation: notice-fade 0.25s ease;
}
@keyframes notice-fade{ from{ opacity: 0; } to{ opacity: 1; } }
.notice-modal,
.brand-modal{
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 34px 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(168,85,247,0.45);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(168,85,247,0.22), transparent 65%),
    var(--plum);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  animation: notice-rise 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes notice-rise{ from{ transform: translateY(18px); opacity: 0; } to{ transform: translateY(0); opacity: 1; } }
.notice-close,
.brand-modal-close{
  position: absolute;
  top: 14px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(154,146,168,0.35);
  background: transparent;
  color: var(--steel);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.notice-close:hover,
.brand-modal-close:hover{ color: var(--paper); border-color: var(--violet-bright); }
.notice-eyebrow,
.brand-modal-eyebrow{
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--violet-bright);
  margin-bottom: 10px;
}
.notice-title,
.brand-modal-title{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  margin-bottom: 16px;
}
.notice-body p{ font-size: 0.95rem; color: var(--paper); margin-bottom: 12px; }
.notice-body strong{ font-weight: 800; }
.notice-callout{
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.35);
}
.notice-phone{
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--glow);
}
.notice-phone:hover{ color: var(--violet-bright); }
.notice-agree{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(154,146,168,0.2);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.notice-agree input{ width: 18px; height: 18px; margin-top: 1px; accent-color: var(--violet-bright); cursor: pointer; }
.notice-continue{ width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; font-size: 0.98rem; }
.notice-continue:disabled{ opacity: 0.45; cursor: not-allowed; }
.notice-continue:disabled:hover{ background: var(--violet-bright); transform: none; }
.notice-hint{ margin-top: 10px; text-align: center; font-size: 0.78rem; color: var(--steel); }
@media (max-width: 520px){
  .notice-modal,
  .brand-modal{ padding: 30px 22px 24px; }
}

/* ---------- CLICKABLE CATEGORY CARDS (preview) ---------- */
.cat-card.is-tappable{
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  color: inherit;
  text-align: center;
}
.cat-foot{ display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cat-card .cat-hint{
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--steel);
  margin-top: 6px;
  transition: color 0.25s ease;
}
.cat-card.is-tappable:hover .cat-hint{ color: var(--violet-bright); }

/* ---------- BRAND LIST (shared: preview modal + member category page) ---------- */
.brand-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.brand-pill{
  display: inline-block;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.32);
  background: rgba(168,85,247,0.08);
  font-size: 0.86rem;
}
.brand-pill .p-name-brand{ font-size: 0.86rem; }
.brand-more{
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--glow);
}
.brand-count{ color: var(--steel); font-size: 0.82rem; margin-bottom: 16px; }
.brand-modal-foot{
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(154,146,168,0.2);
  font-size: 0.85rem;
  color: var(--steel);
}
.brand-modal-foot a{ color: var(--violet-bright); font-weight: 700; }

/* Brand list panel on the member category page */
.brand-panel{
  border: 1px solid rgba(168,85,247,0.28);
  border-radius: 18px;
  background: rgba(246,243,248,0.03);
  padding: 24px 26px;
  margin-bottom: 34px;
}
.brand-panel-title{
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--violet-bright);
  margin-bottom: 14px;
}

/* ---------- ITEM DEAL ---------- */
.deal-badge{
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,0.45);
  background: rgba(168,85,247,0.12);
}
.deal-badge .deal-tag{
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--violet-bright);
}
.deal-badge .deal-text{ font-size: 0.84rem; font-weight: 800; }
.line-total{
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--steel);
}
.line-total .lt-amount{ color: var(--paper); font-weight: 800; }
.line-total .lt-applied{ color: var(--violet-bright); font-weight: 800; }
.cart-row .item-deal{ color: var(--violet-bright); font-size: 0.76rem; font-weight: 700; }
