/* ==========================================================================
   ABBÉA SKINS — Design Tokens
   Grounded in the client's actual logo: warm foil gold monogram + botanical
   branch on white. Sage is pulled in as the "living/botanical" counterpoint
   to gold's polish — oils and butters are plant-derived, so the palette
   should feel like gold catching light through a greenhouse, not a generic
   cream-and-terracotta template.
   ========================================================================== */
:root {
  /* Color */
  --gold: #c39a4c;
  --gold-deep: #a67f37;
  --gold-pale: #e9d9b8;
  --ink: #1b1815;        /* warm near-black, not pure black */
  --cream: #faf6f0;      /* base background, lifted from the logo's white */
  --white: #ffffff;
  --sage: #6b7156;       /* botanical counterpoint, from the logo's leaf */
  --sage-pale: #e4e7dc;
  --line: #e7ddca;       /* hairline borders on cream */
  --danger: #a35b4a;

  /* Type */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.4em;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-style: italic; font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: #4a453e; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ---- Botanical divider (signature element, echoes the logo's branch) ---- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2.2em 0;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line);
  max-width: 140px;
}
.divider svg { flex-shrink: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--ink); color: var(--cream); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }

.btn-gold {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.btn-gold:hover { background: var(--gold); color: var(--white); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo-mark span { color: var(--gold); }
.logo-img { height: 54px; width: auto; display: block; }
.logo-img-lg { height: 90px; width: auto; display: block; margin: 0 auto; }

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.main-nav a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.currency-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.currency-toggle button {
  border: none;
  background: transparent;
  padding: 7px 14px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-body);
}
.currency-toggle button.active {
  background: var(--ink);
  color: var(--cream);
}

.cart-btn {
  position: relative;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -14px;
  background: var(--gold-deep);
  color: var(--white);
  font-size: 0.65rem;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-mark {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  max-width: 140vw;
  opacity: 0.07;
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero p.lede {
  max-width: 480px;
  margin: 0 auto 2em;
  font-size: 1.05rem;
  color: #5b5548;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Category strip ---- */
.category-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  margin: 60px 0;
}
.category-card {
  background: var(--white);
  padding: 56px 32px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.category-card:hover { background: var(--sage-pale); }
.category-card .eyebrow { display: block; margin-bottom: 10px; }

/* ---- Product grid ---- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 36px;
  margin-bottom: 80px;
}
.product-card {
  cursor: pointer;
}
.product-card .thumb {
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .thumb .placeholder {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-pale);
  font-size: 2.4rem;
}
.product-card .cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: var(--sage);
  border: 1px solid var(--sage-pale);
}
.product-card h3 { margin-bottom: 4px; font-size: 1.2rem; }
.product-card .scent { font-size: 0.85rem; color: #857e6f; margin-bottom: 8px; }
.product-card .price { font-family: var(--font-body); font-weight: 500; letter-spacing: 0.03em; }
.product-card .out-of-stock { color: #a35b4a; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #857e6f;
}

/* ---- Product detail ---- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: 60px 0 100px;
  align-items: flex-start;
}
.pd-gallery {
  aspect-ratio: 4/5;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .eyebrow { margin-bottom: 10px; display: block; }
.pd-price { font-size: 1.4rem; margin: 18px 0; letter-spacing: 0.02em; }
.pd-desc { color: #5b5548; margin-bottom: 24px; }
.pd-meta { display: flex; gap: 24px; margin: 24px 0; font-size: 0.85rem; color: #857e6f; }
.pd-meta div strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); }
.qty-stepper button { border: none; background: none; width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; }
.qty-stepper span { width: 34px; text-align: center; }

@media (max-width: 800px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .category-strip { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}

/* ---- Cart drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 24, 21, 0.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 92vw;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.08);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line .thumb-sm { width: 64px; height: 64px; background: var(--white); border: 1px solid var(--line); flex-shrink: 0; overflow: hidden; }
.cart-line .thumb-sm img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-info h4 { font-size: 0.95rem; margin: 0 0 4px; font-family: var(--font-body); font-weight: 500; }
.remove-line { font-size: 0.72rem; color: #a35b4a; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; margin-top: 6px; display: inline-block; }
.cart-footer { padding: 24px; border-top: 1px solid var(--line); }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.92rem; }
.cart-total { font-size: 1.15rem; margin: 14px 0; font-family: var(--font-display); }
.close-btn { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink); }

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #857e6f;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.field { margin-bottom: 18px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 32px;
  margin-top: 60px;
}
.site-footer .logo-mark { color: var(--cream); }
.site-footer .logo-mark span { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-grid h4 { color: var(--gold-pale); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: #cfc8ba; font-size: 0.88rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.75rem;
  color: #90897a;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   Premium additions: promo bar, richer hero, quick-add cards, wishlist,
   trust strip, testimonials, newsletter
   ========================================================================== */

/* ---- Announcement / promo bar ---- */
.promo-bar {
  background: var(--ink);
  color: var(--gold-pale);
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
}

/* ---- Header icon buttons (wishlist / cart) ---- */
.icon-btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--ink);
}
.icon-count {
  position: absolute;
  top: -8px;
  right: -11px;
  background: var(--gold-deep);
  color: var(--white);
  font-size: 0.62rem;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ---- Richer hero: split layout with a textured gold panel ---- */
.hero-rich {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}
.hero-rich .eyebrow { display:block; margin-bottom: 14px; }
.hero-rich h1 { text-align: left; }
.hero-rich p.lede { margin: 0 0 2em; text-align: left; max-width: 440px; }
.hero-rich .hero-actions { justify-content: flex-start; }
.hero-visual {
  aspect-ratio: 4/5;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(195,154,76,0.35), transparent 55%),
    linear-gradient(155deg, #2a251f 0%, #1b1815 55%, #33291c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(195,154,76,0.4);
}
.hero-visual svg { position: relative; z-index: 1; width: 62%; }
.hero-visual .hero-visual-caption {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  text-align: center;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  z-index: 1;
}
@media (max-width: 800px) {
  .hero-rich { grid-template-columns: 1fr; }
  .hero-rich h1, .hero-rich p.lede { text-align: center; margin-left:auto; margin-right:auto; }
  .hero-rich .hero-actions { justify-content: center; }
}

/* ---- Trust strip ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  margin: 0 0 60px;
}
.trust-item {
  background: var(--white);
  padding: 28px 16px;
  text-align: center;
}
.trust-item .glyph { font-size: 1.4rem; color: var(--gold); display:block; margin-bottom: 8px; }
.trust-item span.label { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: #5b5548; }
@media (max-width: 700px) { .trust-strip { grid-template-columns: 1fr 1fr; } }

/* ---- Product card: quick-add + wishlist + sale tag ---- */
.product-card .thumb {
  background: linear-gradient(135deg, #f5efe1 0%, #ffffff 100%);
}
.product-card .thumb .cat-tag { z-index: 2; }
.sale-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--danger);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  z-index: 2;
}
.wish-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 1rem;
  transition: transform 0.15s ease;
}
.wish-btn:hover { transform: scale(1.08); }
.wish-btn.active { color: var(--danger); border-color: var(--danger); }

.price-old {
  text-decoration: line-through;
  color: #a79f8c;
  font-size: 0.85rem;
  margin-right: 6px;
}
.qty-add-row { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
.mini-qty { display: flex; align-items: center; border: 1px solid var(--line); flex-shrink: 0; }
.mini-qty button { border: none; background: none; width: 28px; height: 34px; cursor: pointer; font-family: var(--font-body); }
.mini-qty span { width: 22px; text-align: center; font-size: 0.85rem; }
.quick-add-btn {
  flex: 1;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 10px 8px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.quick-add-btn:hover { background: var(--gold-deep); }
.quick-add-btn.added { background: var(--sage); }

/* ---- Testimonials ---- */
.testimonial-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  margin: 20px 0 80px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.testimonial-card { text-align: center; }
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-card p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ink); }
.testimonial-card .name { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: #857e6f; }
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---- Newsletter ---- */
.newsletter {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 60px 24px;
  margin-bottom: 0;
}
.newsletter h2 { color: var(--cream); }
.newsletter p { color: #cfc8ba; max-width: 420px; margin: 0 auto 24px; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--cream);
  border-radius: var(--radius);
}
.newsletter-form input::placeholder { color: #90897a; }
.newsletter-form button {
  background: var(--gold);
  border: none;
  color: var(--ink);
  padding: 13px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--gold-deep); color: var(--white); }

/* ---- Social row in footer ---- */
.social-row { display: flex; gap: 14px; margin-top: 14px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gold-pale);
}
.social-row a:hover { background: var(--gold); color: var(--ink); }

/* ---- Contact icon row (light background variant, e.g. About page) ---- */
.contact-icons {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.contact-icons .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-icons a:hover .icon-circle { background: var(--gold); color: var(--white); }
.contact-icons .icon-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b5548;
}

/* ==========================================================================
   Customer account pages (register / login / dashboard)
   ========================================================================== */
.auth-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px;
  width: 100%;
  max-width: 400px;
}
.auth-card h2 { text-align: center; margin-bottom: 4px; }
.auth-card p.sub { text-align: center; color: #857e6f; font-size: 0.85rem; margin-bottom: 26px; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 0.85rem; color: #857e6f; }
.auth-switch a { color: var(--gold-deep); text-decoration: underline; }
.error-msg {
  color: var(--danger);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: none;
  text-align: center;
}

.account-shell { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 48px 0 100px; }
.account-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--ink);
  border-left: 2px solid transparent;
  cursor: pointer;
}
.account-nav a.active, .account-nav a:hover { border-left-color: var(--gold); color: var(--gold-deep); }
.account-nav .logout-link { color: var(--danger); margin-top: 20px; }

.order-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 22px;
  margin-bottom: 16px;
}
.order-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }
.order-card-top h4 { margin: 0; font-family: var(--font-body); font-weight: 500; }
.order-card .badge { padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-paid { background:#e4e7dc; color: var(--sage); }
.badge-pending { background:#f3e6cf; color: var(--gold-deep); }
.badge-failed { background:#f3ddd7; color: var(--danger); }
.order-line { font-size: 0.85rem; color: #5b5548; padding: 4px 0; }

.address-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.address-card .default-tag { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-deep); }
.address-card .remove-line { color: var(--danger); font-size: 0.75rem; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 700px) {
  .account-shell { grid-template-columns: 1fr; }
  .account-nav { display: flex; overflow-x: auto; gap: 4px; }
  .account-nav a { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .account-nav a.active { border-bottom-color: var(--gold); }
}

