/* ============================================================
   FUTURE GOLD LTD — Main Stylesheet
   Design: Deep navy + warm gold + clean white
   Fonts: Playfair Display (display) + Inter (body)
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07830;
  --navy:        #0D1B2A;
  --navy-mid:    #162840;
  --navy-light:  #1E3A5F;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      #E2E8F0;
  --success:     #2D9D78;
  --error:       #E53E3E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);

  --transition: 0.25s ease;
  --max-w:      1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); }

/* ── Layout ── */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); }

/* ── Gold Accent Line ── */
.gold-line {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1rem;
}
.gold-line--center { margin: 0 auto 1rem; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,.4);
}
.btn--outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy-light);
}
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
/* nav-logo styles consolidated below */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,58,95,.6) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: .4rem 1rem;
  margin-bottom: 2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 1rem;
}
.hero-supporting {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}

/* ── Reality Section ── */
.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reality-problems {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}
.problem-item:hover { transform: translateX(4px); }
.problem-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.problem-text {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.reality-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.reality-cta-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.reality-cta-box h3 { color: var(--white); margin-bottom: 1rem; }
.reality-cta-box p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

/* ── Solutions / Services ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.solution-card:hover::after { transform: scaleX(1); }
.solution-card--featured {
  background: var(--navy);
  border-color: transparent;
}
.solution-card--featured h3,
.solution-card--featured .solution-number { color: var(--white); }
.solution-card--featured p,
.solution-card--featured li { color: rgba(255,255,255,.7); }
.solution-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: .5rem;
  opacity: 1;
}
.solution-card h3 { margin-bottom: .75rem; font-size: 1.25rem; }
.solution-card p { font-size: .9rem; margin-bottom: 1rem; }
.solution-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.solution-features li {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.solution-features li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.solution-outcome {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm);
  padding: .6rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ── Hospitality Page ── */
.hospitality-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 7rem 0 5rem;
  text-align: center;
}
.hospitality-hero h1 { color: var(--white); }
.hospitality-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin: 1rem auto 2rem; }
.hosp-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.hosp-problem-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
  text-align: center;
}
.hosp-problem-card .icon { font-size: 2rem; margin-bottom: .75rem; }
.hosp-problem-card h4 { margin-bottom: .5rem; font-size: 1rem; }
.hosp-problem-card p { font-size: .85rem; }

/* ── About Page ── */
.about-hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin-top: 1rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.value-card h4 { margin-bottom: .25rem; font-size: .95rem; }
.value-card p { font-size: .82rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold);
}
.team-card-body { padding: 2rem; }
.team-card-body h3 { margin-bottom: .25rem; }
.team-card-body .role {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-card-body p { font-size: .9rem; }
.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.focus-tag {
  background: rgba(201,168,76,.1);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .75rem;
  font-weight: 600;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}
.stat-card .label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
}

/* ── Contact Page ── */
.contact-hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
  text-align: center;
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,.7); max-width: 560px; margin: 1rem auto 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: .5rem; }
.contact-info-card .sub { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.contact-item-text span { color: rgba(255,255,255,.8); font-size: .9rem; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 { margin-bottom: .5rem; }
.form-card .sub { color: var(--text-light); font-size: .9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Books / Shop ── */
.shop-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  text-align: center;
}
.shop-hero h1 { color: var(--white); }
.shop-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin: 1rem auto 2rem; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.shop-filter-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.book-cover {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.book-cover--img {
  height: 280px;
  padding: 0;
}
.book-cover--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}
.book-card:hover .book-cover--img img {
  transform: scale(1.04);
}
.book-badge {
  position: absolute;
  top: .75rem; right: .75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.book-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.book-body h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
}
.book-body p { font-size: .82rem; margin-bottom: 1rem; flex: 1; }
.book-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.book-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.book-price .old {
  font-size: .8rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: .25rem;
}
.add-to-cart {
  padding: .5rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.add-to-cart:hover { background: var(--gold); color: var(--navy); }
.add-to-cart.added { background: var(--success); }

/* ── Cart ── */
.cart-icon-wrap {
  position: relative;
  display: inline-block;
}
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

.cart-page { padding: 7rem 0 4rem; }
.cart-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.cart-items-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-cover {
  width: 64px; height: 80px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .95rem; margin-bottom: .2rem; }
.cart-item-info small { color: var(--gold); font-size: .75rem; font-weight: 600; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { width: 24px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  min-width: 70px;
  text-align: right;
}
.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--transition);
  padding: .25rem;
}
.remove-btn:hover { color: var(--error); }
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.cart-empty .icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty h3 { margin-bottom: .5rem; }
.cart-empty p { font-size: .9rem; margin-bottom: 1.5rem; }

.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.order-summary h3 { margin-bottom: 1.5rem; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-line:last-of-type { border-bottom: none; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding: .75rem 0;
  margin-top: .5rem;
  border-top: 2px solid var(--navy);
}
.promo-row {
  display: flex;
  gap: .5rem;
  margin: 1rem 0;
}
.promo-row input {
  flex: 1;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .85rem;
  outline: none;
}
.promo-row input:focus { border-color: var(--gold); }
.promo-row button {
  padding: .6rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

/* ── Checkout ── */
.checkout-page { padding: 7rem 0 4rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.checkout-step {
  flex: 1;
  padding: .75rem 1rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--off-white);
  border-right: 1px solid var(--border);
  position: relative;
}
.checkout-step:last-child { border-right: none; }
.checkout-step.active {
  background: var(--gold);
  color: var(--navy);
}
.checkout-step.done {
  background: var(--navy);
  color: var(--white);
}
.checkout-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.checkout-form-card h4 { margin-bottom: 1.25rem; }
.payment-options { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option:hover,
.payment-option.selected { border-color: var(--gold); background: rgba(201,168,76,.05); }
.payment-option input[type="radio"] { accent-color: var(--gold); }
.payment-option .method-icon { font-size: 1.5rem; }
.payment-option .method-info small { display: block; font-size: .75rem; color: var(--text-light); }
.payment-option .method-info strong { font-size: .9rem; }

/* ── Order Confirmation ── */
.confirmation-page { padding: 7rem 0 4rem; }
.confirmation-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.confirmation-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.confirmation-card h2 { margin-bottom: .5rem; }
.confirmation-card .order-id {
  display: inline-block;
  background: var(--off-white);
  border-radius: 50px;
  padding: .4rem 1.2rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin: .75rem 0 1.5rem;
}
.order-detail-table { text-align: left; width: 100%; margin: 1.5rem 0; }
.order-detail-table tr { border-bottom: 1px solid var(--border); }
.order-detail-table td { padding: .65rem .5rem; font-size: .88rem; }
.order-detail-table td:last-child { text-align: right; font-weight: 600; }

/* ── Results / Testimonials ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.result-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.result-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.result-icon { font-size: 2rem; margin-bottom: .75rem; }
.result-item h4 { font-size: 1rem; color: var(--navy); }
.result-item p { font-size: .82rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  animation: slideIn .3s ease;
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 300px;
}
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.toast.hide { animation: slideOut .3s ease forwards; }
@keyframes slideOut {
  to { transform: translateX(110%); opacity: 0; }
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: .3rem;
}
.footer-brand-sub {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact-mini { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact-mini a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact-mini a:hover { color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-mid);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Alert / Success Messages ── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.alert--success {
  background: rgba(45,157,120,.1);
  border: 1px solid rgba(45,157,120,.3);
  color: #1a7a5e;
}
.alert--error {
  background: rgba(229,62,62,.1);
  border: 1px solid rgba(229,62,62,.3);
  color: #c53030;
}
.alert--info {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-dark);
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .reality-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section { padding: 3.5rem 0; }

  /* Nav mobile */
  html, body { max-width: 100%; overflow-x: hidden; }
  body.nav-open { overflow: hidden; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(201,168,76,.2);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
    z-index: 999;
    box-sizing: border-box;
    width: 100%;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1rem; display: block; padding: .5rem 0; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-cta { margin-left: 0; width: 100%; }
  .nav-cta a { display: inline-flex; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-ctas .btn { padding: .75rem 1.4rem; font-size: .88rem; }

  /* Grids */
  .solutions-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hosp-problems-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Cart / Checkout */
  .cart-item { flex-wrap: wrap; gap: .75rem; }
  .checkout-steps { flex-direction: column; }
  .checkout-step { border-right: none; border-bottom: 1px solid var(--border); }
  .confirmation-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .books-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stats-row { grid-template-columns: 1fr; }
  .hosp-problems-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
  .reality-cta-box { padding: 2rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Print ── */
@media print {
  .navbar, .footer, .scroll-top, .toast-container { display: none; }
  body { background: white; color: black; }
}

/* ── Testimonials ── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: .15;
  line-height: .8;
  position: absolute;
  top: 1rem;
  left: 1.25rem;
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,.3);
}
.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.testimonial-role {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: .15rem;
}
.testimonial-industry {
  font-size: .72rem;
  color: var(--text-light);
  margin-top: .1rem;
}
.testimonial-card--featured {
  background: var(--navy);
  border-color: rgba(201,168,76,.2);
}
.testimonial-card--featured .testimonial-text { color: rgba(255,255,255,.75); }
.testimonial-card--featured .testimonial-name { color: var(--white); }
.testimonial-card--featured .testimonial-author { border-top-color: rgba(255,255,255,.1); }
.testimonial-card--featured .testimonial-industry { color: rgba(255,255,255,.4); }
.testimonial-card--featured::before { color: var(--gold); opacity: .25; }
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-item .label {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .25rem;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   GOLD SHOP — CART DRAWER + FLOATING CHECKOUT BAR
   ═══════════════════════════════════════════════════════════ */

/* ── Cart Drawer Overlay ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(3px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Cart Drawer Panel ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }

/* Drawer Header */
.cd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  flex-shrink: 0;
}
.cd-header-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cd-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.cd-count-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .55rem;
  border-radius: 50px;
  min-width: 20px;
  text-align: center;
}
.cd-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cd-close:hover { background: rgba(255,255,255,.22); }

/* Free shipping progress bar */
.cd-shipping-bar {
  padding: .75rem 1.5rem;
  background: rgba(201,168,76,.06);
  border-bottom: 1px solid rgba(201,168,76,.15);
  flex-shrink: 0;
}
.cd-shipping-bar p {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.cd-shipping-bar p span { color: var(--gold-dark); }
.progress-track {
  height: 5px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  transition: width .5s ease;
}

/* Drawer body — scrollable item list */
.cd-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.cd-body::-webkit-scrollbar { width: 4px; }
.cd-body::-webkit-scrollbar-track { background: transparent; }
.cd-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Empty state */
.cd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  height: 100%;
  text-align: center;
  padding: 2rem;
}
.cd-empty-icon { font-size: 3.5rem; opacity: .4; }
.cd-empty h4 { color: var(--text-dark); margin-bottom: .25rem; }
.cd-empty p { font-size: .85rem; color: var(--text-light); }

/* Cart drawer items */
.cd-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: .9rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  animation: fadeSlideIn .25s ease;
}
.cd-item:last-child { border-bottom: none; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cd-item-cover {
  width: 56px;
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.cd-item-info { min-width: 0; }
.cd-item-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-item-cat {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.cd-item-controls {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cd-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  cursor: pointer;
  font-size: .95rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-dark);
}
.cd-qty-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.07); }
.cd-qty-num {
  width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: .82rem;
  color: var(--text-dark);
}
.cd-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
  flex-shrink: 0;
}
.cd-item-price {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.cd-remove {
  background: none;
  border: none;
  font-size: .75rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
  white-space: nowrap;
}
.cd-remove:hover { color: var(--error); }

/* Drawer Footer — Checkout Box */
.cd-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}
.cd-promo-row {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}
.cd-promo-input {
  flex: 1;
  padding: .55rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .82rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.cd-promo-input:focus { border-color: var(--gold); }
.cd-promo-btn {
  padding: .55rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-dark);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.cd-promo-btn:hover { border-color: var(--gold); color: var(--gold); }

.cd-totals { margin-bottom: 1rem; }
.cd-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-mid);
  padding: .28rem 0;
}
.cd-total-row.discount { color: var(--success); }
.cd-total-divider {
  height: 1px;
  background: var(--border);
  margin: .5rem 0;
}
.cd-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem 0;
}
.cd-grand-total span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cd-grand-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

/* THE BIG AMAZON-STYLE CHECKOUT BUTTON */
.cd-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f0a500, #c9a84c 40%, #e8c96a 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(201,168,76,.45);
  transition: all .2s ease;
  letter-spacing: .01em;
  text-decoration: none;
  margin-bottom: .65rem;
  position: relative;
  overflow: hidden;
}
.cd-checkout-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cd-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,.6);
}
.cd-checkout-btn:active { transform: translateY(0); }
.cd-checkout-btn-left { display: flex; flex-direction: column; align-items: flex-start; }
.cd-checkout-label { font-size: .72rem; font-weight: 600; opacity: .75; line-height: 1; margin-bottom: .15rem; text-transform: uppercase; letter-spacing: .08em; }
.cd-checkout-total { font-size: 1.1rem; font-weight: 900; line-height: 1; }
.cd-checkout-right { font-size: 1.4rem; }

/* Continue shopping link */
.cd-continue {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  padding: 0;
}
.cd-continue:hover { color: var(--gold); }

/* Trust icons row */
.cd-trust {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: .9rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.cd-trust-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── Floating Cart Bar (bottom of page on books.html) ── */
.floating-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.floating-cart-bar.visible {
  transform: translateY(0);
  pointer-events: all;
}
.fcb-inner {
  background: var(--navy);
  border-top: 2px solid rgba(201,168,76,.4);
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 100%;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.fcb-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.fcb-count {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.fcb-count strong { color: var(--gold); }
.fcb-items-preview {
  display: flex;
  gap: .3rem;
  flex-wrap: nowrap;
  overflow: hidden;
  max-width: 200px;
}
.fcb-item-dot {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.fcb-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.fcb-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fcb-total-label { font-size: .65rem; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; }
.fcb-total-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.fcb-checkout-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  background: linear-gradient(135deg, #f0a500, #c9a84c);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(201,168,76,.4);
  transition: all .2s ease;
  white-space: nowrap;
}
.fcb-checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,.6); }
.fcb-view-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.fcb-view-cart-btn:hover { background: rgba(255,255,255,.14); }

/* ── Book Card Quick-View overlay ── */
.book-card-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
}
.buy-now-btn {
  padding: .5rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.buy-now-btn:hover { box-shadow: 0 3px 12px rgba(201,168,76,.45); transform: translateY(-1px); }

/* ── Responsive Drawer ── */
@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .fcb-items-preview { display: none; }
  .fcb-inner { padding: .75rem 1rem; }
  .fcb-view-cart-btn { display: none; }
}

/* logo styles consolidated below */

/* ══════════════════════════════════════════════════════════
   NAV LOGO — clean single definition
   ══════════════════════════════════════════════════════════ */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 220px;        /* hard cap so it never crowds the links */
}

/* The phoenix icon — cropped tight, no bleed */
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  /* Remove the dark square bg from the PNG using mix-blend-mode */
  mix-blend-mode: lighten;
  filter: brightness(1.05) drop-shadow(0 0 3px rgba(201,168,76,.5));
}

/* Text column next to the bird */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .18rem;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .02em;
  white-space: nowrap;
}

.nav-logo-sub {
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}

/* Footer brand logo */
.footer-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: .4rem;
  mix-blend-mode: lighten;
  filter: brightness(1.05) drop-shadow(0 0 4px rgba(201,168,76,.45));
}

/* ── Mobile nav logo ── */
@media (max-width: 768px) {
  .nav-logo { max-width: 180px; gap: .4rem; }
  .nav-logo-img { width: 30px; height: 30px; }
  .nav-logo-main { font-size: .95rem; }
  .nav-logo-sub { display: none; }
}

@media (max-width: 480px) {
  .nav-logo-img { width: 28px; height: 28px; }
  .nav-logo-main { font-size: .88rem; }
}
