/* ============================================================
   Lucen Skincare — Design System (Tesla-Inspired)
   Colors, typography, and components based on DESIGN.md
   ============================================================ */

/* ===== ROOT ===== */
:root {
  /* Colors */
  --electric-blue:  #3E6AE1;
  --pure-white:     #FFFFFF;
  --carbon-dark:    #171A20;
  --graphite:       #393C41;
  --pewter:         #5C5E62;
  --silver-fog:     #8E8E8E;
  --light-ash:      #F4F4F4;
  --cloud-gray:     #EEEEEE;
  --pale-silver:    #D0D1D2;
  --line-green:     #06C755;

  /* Legacy aliases (used in cart.css) */
  --primary: #3E6AE1;
  --primary-light: #EEF2FC;
  --primary-dark: #2f56c8;
  --secondary: #171A20;
  --text: #393C41;
  --text-light: #5C5E62;
  --bg: #F4F4F4;
  --white: #FFFFFF;
  --border: #D0D1D2;
  --shadow: none;
  --radius: 12px;

  /* Typography */
  --font-display: 'Universal Sans Display', -apple-system, Arial, sans-serif;
  --font-text:    'Universal Sans Text',    -apple-system, Arial, sans-serif;
  --font-body:    'Universal Sans Text',    -apple-system, Arial, sans-serif;

  /* Motion */
  --transition: all 0.33s cubic-bezier(0.5, 0, 0, 0.75);
  --transition-btn: border-color 0.33s, background-color 0.33s, color 0.33s, box-shadow 0.25s;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
body {
  font-family: var(--font-text);
  color: var(--graphite);
  background: var(--pure-white);
  line-height: 1.43;
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background-color 0.33s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar.opaque { background: var(--pure-white); }
.nav-container {
  max-width: 1383px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 56px;
}
.logo {
  display: flex; align-items: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--carbon-dark); letter-spacing: 5px; text-transform: uppercase;
}

.nav-links { display: flex; gap: 0; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--carbon-dark);
  padding: 4px 16px; min-height: 32px;
  display: inline-flex; align-items: center;
  border-radius: 4px; transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover { background-color: rgba(0,0,0,0.05); }
.navbar.hero-dark .logo,
.navbar.hero-dark .nav-links a,
.navbar.hero-dark .lang-btn,
.navbar.hero-dark .cart-icon { color: var(--pure-white); }
.navbar.hero-dark .nav-links a:hover { background-color: rgba(255,255,255,0.15); }
.nav-actions { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; color: var(--carbon-dark);
  padding: 4px 16px; border-radius: 4px; cursor: pointer;
  font-size: 14px; font-weight: 500; font-family: var(--font-text);
  min-height: 32px; transition: var(--transition);
}
.lang-btn:hover { background-color: rgba(0,0,0,0.05); }
.cart-icon {
  position: relative; font-size: 14px; font-weight: 500; color: var(--carbon-dark);
  padding: 4px 16px; border-radius: 4px; min-height: 32px;
  display: inline-flex; align-items: center; gap: 4px; transition: var(--transition);
}
.cart-icon:hover { background-color: rgba(0,0,0,0.05); }
.cart-badge {
  background: var(--electric-blue); color: white;
  font-size: 11px; font-weight: 500;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--carbon-dark);
  padding: 4px; border-radius: 4px; transition: var(--transition);
}

/* ── Auth nav (login link / user greeting) ── */
.auth-nav { display: flex; align-items: center; gap: 6px; }
.btn-login {
  padding: 6px 16px; border-radius: 4px;
  background: var(--electric-blue); color: var(--pure-white);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: var(--transition-btn);
}
.btn-login:hover { background: #2a58d4; }
.navbar.hero-dark .btn-login { background: rgba(255,255,255,0.18); color: var(--pure-white); }
.navbar.hero-dark .btn-login:hover { background: var(--electric-blue); }
.nav-username {
  font-size: 13px; font-weight: 500; color: var(--graphite);
  max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.navbar.hero-dark .nav-username { color: rgba(255,255,255,0.85); }
.btn-logout {
  padding: 4px 12px; border-radius: 4px; background: none;
  border: 1px solid var(--pale-silver); color: var(--pewter);
  font-size: 12px; cursor: pointer; font-family: var(--font-text);
  transition: var(--transition-btn);
}
.btn-logout:hover { border-color: var(--graphite); color: var(--graphite); }
.navbar.hero-dark .btn-logout { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.75); }
.nav-my-orders {
  font-size: 13px; font-weight: 500; color: var(--pewter);
  text-decoration: none; padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-my-orders:hover { color: var(--electric-blue); border-bottom-color: var(--electric-blue); }
.navbar.hero-dark .nav-my-orders { color: rgba(255,255,255,0.7); }
.navbar.hero-dark .nav-my-orders:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  overflow: hidden; background: var(--carbon-dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 40%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.hero-text {
  position: relative; z-index: 1; text-align: center; padding-top: 120px;
}
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 400; margin-bottom: 8px;
}
.hero h1 {
  font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1.2;
  color: var(--pure-white); margin-bottom: 8px;
}
.hero-promo {
  font-size: 22px; font-weight: 400; line-height: 1.2;
  color: var(--electric-blue); margin-bottom: 0;
}
.hero-cta-row {
  position: absolute; z-index: 1;
  bottom: 48px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-cta-row .cta-desc {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.85); margin-bottom: 16px;
}
.hero-cta-row .btn-row { display: flex; gap: 16px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--electric-blue); color: var(--pure-white);
  font-family: var(--font-text); font-size: 14px; font-weight: 500;
  padding: 4px 24px; min-height: 40px; min-width: 160px;
  border-radius: 4px; border: 3px solid transparent;
  cursor: pointer; line-height: 1.2;
  box-shadow: rgba(0,0,0,0) 0px 0px 0px 2px inset;
  transition: var(--transition-btn);
}
.btn-primary:hover { background: #2f56c8; }
.btn-primary:focus-visible { box-shadow: rgba(62,106,225,0.5) 0px 0px 0px 3px; outline: none; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85); color: var(--graphite);
  font-family: var(--font-text); font-size: 14px; font-weight: 500;
  padding: 4px 24px; min-height: 40px; min-width: 160px;
  border-radius: 4px; border: 3px solid transparent;
  cursor: pointer; line-height: 1.2; transition: var(--transition-btn);
}
.btn-secondary:hover { background: var(--pure-white); }
.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line-green); color: white;
  font-family: var(--font-text); font-size: 14px; font-weight: 500;
  padding: 4px 24px; min-height: 40px;
  border-radius: 4px; border: none; cursor: pointer; transition: var(--transition-btn);
}
.btn-line:hover { background: #05a848; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 500; line-height: 1.2;
  color: var(--carbon-dark); margin-bottom: 12px;
}
.section-header p { font-size: 14px; font-weight: 400; color: var(--pewter); }

/* ===== PRODUCTS ===== */
.products { background: var(--pure-white); }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--pure-white); border-radius: 12px; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0, 0, 1),
              box-shadow 0.35s cubic-bezier(0.25, 0, 0, 1),
              background-color 0.33s;
  cursor: pointer;
}
.product-card:hover {
  background: var(--pure-white);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}
.product-img {
  height: 280px; background: var(--light-ash);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.soldout-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.product-card--soldout { opacity: 0.75; }
.product-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.25, 0, 0, 1);
}
.product-card:hover .product-img img { transform: scale(1.07); }
.product-img .placeholder-icon { font-size: 5rem; }
.product-body { padding: 24px 20px; }
.product-type { font-size: 14px; font-weight: 500; color: var(--pewter); display: block; margin-bottom: 4px; }
.product-name {
  font-family: var(--font-display); font-size: 17px; font-weight: 500; line-height: 1.18;
  color: var(--carbon-dark); margin-bottom: 8px;
}
.product-desc, .product-desc-card { font-size: 14px; color: var(--pewter); line-height: 1.43; margin-bottom: 16px; }
.product-price {
  font-size: 22px; font-weight: 400; color: var(--carbon-dark); margin-bottom: 20px;
}
.product-price-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.product-price-sale { font-size: 22px; font-weight: 500; color: #e03535; }
.product-price-original { font-size: 15px; font-weight: 400; color: var(--silver-fog); text-decoration: line-through; }
.product-badge-sale {
  display: inline-flex; align-items: center;
  background: #e03535; color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}
.product-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.product-role-badge {
  display: inline-block; margin-bottom: 6px;
  background: var(--electric-blue); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 20px; padding: 2px 10px;
}
.btn-cart {
  flex: 1; background: var(--electric-blue); color: white;
  border: 3px solid transparent; border-radius: 4px;
  padding: 4px 16px; min-height: 40px;
  cursor: pointer; font-size: 14px; font-weight: 500; font-family: var(--font-text);
  transition: var(--transition-btn);
}
.btn-cart:hover { background: #2f56c8; }
.btn-cart:disabled { background: var(--silver-fog, #aaa); cursor: not-allowed; opacity: 0.7; }
.btn-detail {
  background: var(--pure-white); color: var(--graphite);
  border: 3px solid var(--pale-silver); border-radius: 4px;
  padding: 4px 16px; min-height: 40px;
  cursor: pointer; font-size: 14px; font-weight: 500; font-family: var(--font-text);
  transition: var(--transition-btn);
}
.btn-detail:hover { background: var(--light-ash); border-color: var(--graphite); }

/* ===== HOW TO USE ===== */
.how-to-use { background: var(--light-ash); }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.how-card { background: var(--pure-white); border-radius: 12px; padding: 32px 24px; text-align: center; }
.how-step {
  width: 40px; height: 40px; background: var(--electric-blue); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; margin: 0 auto 16px;
}
.how-card h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--carbon-dark);
}
.how-card p { font-size: 14px; color: var(--pewter); line-height: 1.43; }
.how-tag {
  display: inline-block; background: var(--electric-blue); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 20px; padding: 2px 10px; margin-bottom: 8px;
}

/* ===== WHY LUCEN ===== */
.why-lucen { background: var(--carbon-dark); }
.why-lucen .section-header h2 { color: var(--pure-white); }
.why-lucen .section-header p { color: rgba(255,255,255,0.55); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 32px 24px; text-align: center;
  transition: background-color 0.33s, transform 0.33s;
}
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  color: var(--pure-white); margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ===== REVIEWS ===== */
.reviews { background: var(--pure-white); }
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.review-card { background: var(--light-ash); border-radius: 12px; padding: 28px; }
.stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--graphite); line-height: 1.43; margin-bottom: 16px; }
.reviewer { font-size: 14px; color: var(--pewter); font-weight: 500; }
.review-product-tag {
  display: inline-block; margin-top: 10px;
  background: var(--cloud-gray); color: var(--pewter);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  border-radius: 20px; padding: 2px 10px;
}

/* ===== CONTACT ===== */
.contact { background: var(--light-ash); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; max-width: 960px; margin: 0 auto; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  margin-bottom: 16px; color: var(--carbon-dark);
}
.contact-info p { margin-bottom: 12px; font-size: 14px; color: var(--graphite); }
.contact-info a { color: var(--electric-blue); transition: color 0.33s; }
.contact-info a:hover { color: #2f56c8; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--pale-silver); border-radius: 4px; padding: 11px 14px;
  font-size: 14px; font-family: var(--font-text);
  color: var(--carbon-dark); background: var(--pure-white);
  transition: border-color 0.33s; width: 100%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--silver-fog); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--electric-blue); }
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: #e03535;
}
.form-msg { font-size: 14px; color: var(--graphite); }

/* ===== FOOTER ===== */
.footer { background: var(--carbon-dark); color: var(--pewter); padding: 40px 24px; text-align: center; }
.footer-logo {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--pure-white); letter-spacing: 6px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-nav {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin: 16px 0; font-size: 13px;
}
.footer a { color: var(--pewter); transition: color 0.33s; }
.footer a:hover { color: var(--pure-white); }
.footer p { font-size: 14px; margin-bottom: 6px; }


/* ===== FLOATING LINE ===== */
.float-line {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 48px; height: 48px; background: var(--line-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.33s;
}
.float-line:hover { background: #05a848; }

/* ===== NAV OVERLAY (mobile) ===== */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
body.menu-open .nav-overlay { display: block; }
body.menu-open { overflow: hidden; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: var(--pure-white); padding: 16px 24px;
    border-bottom: 1px solid var(--cloud-gray); gap: 4px;
    z-index: 950;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .float-line { bottom: 80px; }
  .hero h1 { font-size: 28px; }
  .hero-promo { font-size: 18px; }
  .hero-cta-row .btn-row { flex-direction: column; align-items: center; }
  .product-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 24px; }
}

/* ===== FOCUS VISIBLE ===== */
/* Consistent keyboard-focus rings for all interactive elements */
.btn-secondary:focus-visible,
.btn-cart:focus-visible,
.btn-detail:focus-visible,
.btn-line:focus-visible {
  outline: none;
  box-shadow: rgba(62,106,225,0.5) 0px 0px 0px 3px;
}
.lang-btn:focus-visible,
.hamburger:focus-visible,
.cart-icon:focus-visible {
  outline: none;
  box-shadow: rgba(62,106,225,0.5) 0px 0px 0px 3px;
  border-radius: 4px;
}
.btn-logout:focus-visible,
.nav-my-orders:focus-visible {
  outline: none;
  box-shadow: rgba(62,106,225,0.5) 0px 0px 0px 3px;
  border-radius: 4px;
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page { padding: 96px 24px 80px; max-width: 1100px; margin: 0 auto; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-img {
  border-radius: 12px; overflow: hidden; background: var(--light-ash);
  min-height: 400px; display: flex; align-items: center; justify-content: center; font-size: 8rem;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-info .product-type { margin-bottom: 8px; font-size: 14px; font-weight: 500; color: var(--pewter); }
.product-detail-info h1 {
  font-family: var(--font-display); font-size: 32px; font-weight: 500;
  margin-bottom: 12px; color: var(--carbon-dark);
}
.product-detail-info .product-desc-full { color: var(--pewter); line-height: 1.43; margin-bottom: 24px; font-size: 14px; }
.product-detail-info .price-lg { font-size: 32px; font-weight: 400; color: var(--carbon-dark); margin-bottom: 24px; }
.price-wrap-lg { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.price-sale-lg { font-size: 32px; font-weight: 400; color: #e03535; }
.price-original-lg { font-size: 18px; color: var(--silver-fog); text-decoration: line-through; }
.price-badge-lg {
  font-size: 13px; font-weight: 700; background: #e03535; color: white;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap;
}
.qty-selector { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-selector button {
  width: 40px; height: 40px; border: 1px solid var(--pale-silver);
  border-radius: 4px; background: white; cursor: pointer; font-size: 14px;
  transition: border-color 0.33s;
}
.qty-selector button:hover { border-color: var(--electric-blue); color: var(--electric-blue); }
.qty-selector span { font-size: 14px; font-weight: 500; min-width: 30px; text-align: center; }
.ingredients-section, .howto-section {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--cloud-gray);
}
.ingredients-section h3, .howto-section h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  margin-bottom: 10px; color: var(--carbon-dark);
}
.ingredients-section p, .howto-section p { font-size: 14px; color: var(--pewter); line-height: 1.43; }
.back-link {
  display: inline-block; margin-bottom: 24px;
  color: var(--electric-blue); font-size: 14px; font-weight: 500; transition: color 0.33s;
}
.back-link:hover { color: #2f56c8; }
@media (max-width: 768px) { .product-detail-layout { grid-template-columns: 1fr; } }

/* ===== CHECKOUT BREADCRUMB ===== */
.checkout-steps {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px 0; font-size: 13px; font-weight: 500;
}
.checkout-step { color: var(--silver-fog); }
.checkout-step--done { color: var(--pewter); }
.checkout-step--active { color: var(--electric-blue); }
.checkout-step-arrow { color: var(--pale-silver); font-size: 16px; }

/* ===== MY ORDERS: SHOP LINK ===== */
.orders-shop-link {
  display: inline-block; margin-top: 8px;
  font-size: 13px; font-weight: 500; color: var(--electric-blue);
  transition: color 0.33s;
}
.orders-shop-link:hover { color: #2f56c8; }
