@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ── Primary tokens (match main site) ── */
  --ocean:      #0a1628;
  --ocean-2:    #0d1f3c;
  --teal:       #00c9b1;
  --teal-dim:   #00a896;
  --grad:       linear-gradient(135deg, #e040a0, #7b4fe0, #00c9b1);
  --white:      #ffffff;
  --off:        #f4f7fa;
  --muted:      #8899aa;
  --text:       #1a2a3a;
  --radius:     14px;
  --max:        1180px;

  /* ── Portal aliases — keep old var names working in page inline styles ── */
  --navy:        var(--ocean);
  --navy-2:      var(--ocean-2);
  --gold:        var(--teal);
  --gold-2:      rgba(0,201,177,.18);
  --ink:         var(--text);
  --line:        #e4eaf2;
  --bg:          var(--off);
  --panel:       #f9fbfd;
  --shadow:      0 20px 48px rgba(10,22,40,.12);
  --shadow-soft: 0 8px 24px rgba(10,22,40,.07);
  --radius-sm:   10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--off);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Top bar ── */
.topbar {
  background: var(--grad);
  color: #fff;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 10px 16px;
}
.topbar strong { color: #fff; }

/* ── Hero shell ── */
.hero { padding: 32px 0 16px; }
.hero-shell {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.hero-copy {
  padding: 42px 38px;
  background: var(--white);
}
.hero-side {
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(0,201,177,.08), transparent 40%),
    linear-gradient(135deg, rgba(10,22,40,.07), rgba(13,31,60,.16)),
    linear-gradient(180deg, #eef3fb 0%, #dde6f5 100%);
  padding: 34px;
  display: flex;
  align-items: stretch;
}
.hero-side-card {
  width: 100%;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(0,201,177,.10);
  border: 1px solid rgba(0,201,177,.25);
  color: var(--teal-dim);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

/* ── Sections ── */
.section { padding: 24px 0; }
.section-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── Headings ── */
h1, h2, h3 { margin: 0; }
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--ocean);
}
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--ocean);
  letter-spacing: -.02em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ocean);
}
.lead {
  margin: 16px 0 24px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}
.micro {
  margin-top: 14px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}

/* ── CTA grid ── */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.cta-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.cta-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: .95rem;
}

/* ── Panel ── */
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: filter .15s ease, transform .1s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(.985); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,201,177,.25);
}
.btn-primary:hover { background: var(--teal-dim); filter: none; }
.btn-secondary {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ocean);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dim); }
.btn-block { width: 100%; }

/* ── Utility ── */
.stack { display: grid; gap: 16px; }
.notice-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.notice-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
}
.notice-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 999px;
  background: var(--teal);
  margin-top: .58em;
  box-shadow: 0 0 0 5px rgba(0,201,177,.12);
}

/* ── Table ── */
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--off);
  color: var(--ocean);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
td {
  color: var(--text);
  font-size: .96rem;
}

/* ── Status pills ── */
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid var(--line);
  background: #fff;
}
.status-forming    { background: #fff9e8; color: #7a5a00; border-color: #f1df9b; }
.status-open       { background: #e8fdf9; color: #007b6a; border-color: #9fe8df; }
.status-almost     { background: #fff4ec; color: #924c19; border-color: #f3d1b8; }
.status-available  { background: #e8fdf9; color: #007b6a; border-color: #9fe8df; }
.status-unavailable{ background: #f5f6f9; color: #5e6882; border-color: #dfe4ef; }

/* ── Forms ── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full { grid-column: 1 / -1; }
label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ocean);
}
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,177,.12);
}
textarea { min-height: 110px; resize: vertical; }

.helper {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}
.status-box {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .92rem;
  display: none;
}
.status-box.show { display: block; }
.status-box.ok  { background: #e8fdf9; color: #007b6a; border: 1px solid #9fe8df; }
.status-box.err { background: #fff4f2; color: #9c2f23; border: 1px solid #f2c9c3; }

/* ── Footer ── */
.footer {
  padding: 24px 24px 54px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid, .grid-2, .cta-grid, .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero-copy, .hero-side, .panel { padding: 22px; }
  .lead { font-size: 1rem; }
}

/* ── Account bar (injected by initPortalChrome) ── */
.account-bar {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(10,22,40,.05);
}
.account-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.account-bar-copy {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}
.account-bar-copy strong { color: var(--ocean); }
.account-bar-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.account-btn { min-height: 42px; padding: 0 18px; font-size: .88rem; }

/* ── Auth panel (login / reset-password) ── */
.auth-shell { max-width: 720px; margin: 0 auto; }
.auth-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.auth-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 26px; }
.auth-tab {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ocean);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.auth-tab.active {
  background: var(--teal);
  border-color: transparent;
  color: #fff;
}
.consent-grid { display: grid; gap: 12px; margin-top: 10px; }
.consent-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.consent-box input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; }
.consent-box label { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.45; }
.readonly-note { font-size: .88rem; color: var(--muted); margin-top: 8px; }
.helper-link { color: var(--teal-dim); font-weight: 700; text-decoration: underline; }

@media (max-width: 720px) {
  .account-bar-inner { align-items: flex-start; flex-direction: column; }
  .auth-panel { padding: 22px; }
}

/* ── Discord card (ocean dark treatment — used on CTA grids) ── */
.cta-card.discord-card { background: var(--ocean); border-color: var(--ocean-2); }
.cta-card.discord-card h3 { color: #fff; }
.cta-card.discord-card p  { color: rgba(255,255,255,.75); }

/* ── Site nav ── */
.site-nav { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 56px; width: 56px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; flex: 1; justify-content: center; }
.nav-links a { font-size: .92rem; font-weight: 600; color: var(--text); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-socials { display: flex; align-items: center; gap: 6px; }
.nav-social-link { width: 36px; height: 36px; border-radius: 50%; background: var(--ocean); display: flex; align-items: center; justify-content: center; transition: transform .15s ease, background .15s; flex-shrink: 0; color: rgba(255,255,255,.85); }
.nav-social-link:hover { transform: translateY(-2px); background: var(--ocean-2); }
.btn-discord-nav { display: inline-flex; align-items: center; gap: 7px; background: #5865F2; color: #fff; font-weight: 700; font-size: .82rem; padding: 8px 15px; border-radius: 999px; white-space: nowrap; transition: filter .15s, transform .1s; }
.btn-discord-nav:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-find { background: var(--teal); color: #fff; font-weight: 700; font-size: .88rem; padding: 10px 20px; border-radius: 999px; white-space: nowrap; transition: background .15s, transform .1s; display: inline-block; }
.btn-find:hover { background: var(--teal-dim); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: auto; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 20px; border-top: 1px solid #eee; gap: 4px; background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; font-weight: 600; font-size: .95rem; color: var(--text); border-bottom: 1px solid #f0f0f0; }
.mobile-menu a:last-child { border-bottom: none; }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } .nav-inner { gap: 12px; } }

/* ── Announcement bar ── */
.announce-bar {
  background: linear-gradient(135deg, #e040a0, #7b4fe0, #00c9b1);
  text-align: center;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}

/* ── Page shell (full-width max-width container) ── */
.page-shell {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Full-width intro bar ── */
.events-intro-wrap {
  background: #fff;
  border-bottom: 2px solid #e2e6ec;
  padding: 36px 0 28px;
  margin-bottom: 28px;
}
.events-intro-h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #0a1628;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.events-intro-p {
  font-size: 1rem;
  color: #3a4a5a;
  line-height: 1.72;
  margin: 0;
  text-align: justify;
}

/* ── Three-column layout ── */
.three-col {
  display: grid;
  grid-template-columns: 210px 1fr 300px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1100px) {
  .three-col { grid-template-columns: 180px 1fr 270px; gap: 20px; }
}
@media (max-width: 800px) {
  .three-col { display: block; }
  .col-left, .col-right { display: none; }
}

/* ── Left nav sidebar ── */
.col-left { position: sticky; top: 20px; }
.left-section { margin-bottom: 28px; }
.left-heading {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #00c9b1;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00c9b1;
}
.left-links { list-style: none; margin: 0; padding: 0; }
.left-links li a {
  display: block;
  padding: 6px 0;
  font-size: .88rem;
  color: #2a3a4a;
  text-decoration: none;
  border-bottom: 1px solid #e2e6ec;
  transition: color .15s, padding-left .15s;
}
.left-links li:last-child a { border-bottom: none; }
.left-links li a:hover { color: #00c9b1; padding-left: 4px; }
.left-back {
  display: inline-block;
  margin-top: 20px;
  font-size: .84rem;
  font-weight: 700;
  color: #8899aa;
  text-decoration: none;
}
.left-back:hover { color: #00c9b1; }

/* ── Right rail (dark sidebar) ── */
.col-right {
  position: sticky;
  top: 20px;
  background: #0a1628;
  border-radius: 16px;
  overflow: hidden;
}
.sidebar-search-bar {
  background: #00c9b1;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-search-text { font-size: 1.3rem; font-weight: 900; color: #0a1628; letter-spacing: -.01em; }
.sidebar-search-text span { color: #fff; }
.sidebar-search-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sidebar-cal {
  background: #fff;
  margin: 16px;
  border-radius: 12px;
  padding: 16px;
}
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-month-label { font-size: .95rem; font-weight: 900; color: #0a1628; }
.cal-nav { background: none; border: none; cursor: pointer; color: #8899aa; font-size: 1rem; padding: 2px 6px; border-radius: 4px; }
.cal-nav:hover { color: #0a1628; background: #f0f0f0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-dow { font-size: .62rem; font-weight: 800; color: #8899aa; text-transform: uppercase; padding-bottom: 6px; letter-spacing: .03em; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: .82rem; font-weight: 700; color: #1a2a3a;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent; transition: background .12s;
}
.cal-day.empty { visibility: hidden; pointer-events: none; }
.cal-day.plain:hover { background: #f0f0f0; }
.cal-day.available { background: #00c9b1; color: #fff; border-color: #00c9b1; }
.cal-day.available:hover { background: #00a896; }
.cal-day.forming { background: #d4a017; color: #fff; border-color: #d4a017; }
.cal-day.forming:hover { background: #b8891a; }
.cal-day.locked { background: #f0f0f0; color: #aaa; }
.cal-day.today { border-color: #0a1628 !important; font-weight: 900; }
.cal-quick {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid #e2e6ec;
  display: flex; flex-wrap: wrap; gap: 4px 10px;
}
.cal-quick a { font-size: .78rem; color: #00c9b1; text-decoration: none; font-weight: 600; }
.cal-quick a:hover { text-decoration: underline; }
.cal-legend { margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 4px; font-size: .7rem; color: #8899aa; font-weight: 600; }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.sidebar-section-divider { height: 1px; background: rgba(255,255,255,.1); margin: 0 20px 20px; }
.sidebar-section { padding: 0 20px 20px; }
.sidebar-heading { font-size: 1.05rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: #00c9b1; margin: 0 0 12px; }
.sidebar-links { list-style: none; margin: 0; padding: 0; }
.sidebar-links li a {
  display: block; padding: 6px 0; font-size: .9rem;
  color: rgba(255,255,255,.75); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07); transition: color .15s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: #fff; }

/* ── Loading card ── */
.loading-card {
  background: #fff; border: 1px solid #e2e6ec;
  border-radius: 14px; padding: 32px;
  text-align: center; color: #8899aa;
}

/* ── Site footer (shared across portal pages) ── */
.site-footer {
  background: #0a1628;
  margin-top: 64px;
  padding-top: 56px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
}
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .15s, transform .15s;
}
.footer-social:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #00c9b1;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 16px 24px;
  font-size: .76rem;
  color: rgba(255,255,255,.28);
}

/* ── Center content ── */
.col-center {}
/* ── Status badge ── */
.badge-status {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #0a1628;
  color: #fff;
  border-radius: 5px;
  padding: 2px 8px;
}


/* Cart nav */
.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #0a1628;
  color: #fff;
  text-decoration: none;
  transition: transform .12s, filter .12s;
  flex-shrink: 0;
}
.nav-cart-link:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nav-cart-icon { width: 20px; height: 20px; display: block; }
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #00c9b1;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.mobile-cart-link { font-weight: 800; color: var(--teal) !important; }
