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

:root {
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ink: #101820;
  --ink-2: #162230;
  --midnight: #080b10;
  --muted: #6f675f;
  --paper: #f4eadb;
  --cream: #fff8ee;
  --cream-2: #f9efe2;
  --gold: #c49245;
  --gold-2: #e4b86c;
  --line: rgba(196, 146, 69, 0.28);
  --white: #ffffff;
  --green: #176b4d;
  --shadow: 0 28px 80px rgba(16, 24, 32, 0.12);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.30);
  --radius: 28px;
  --radius-lg: 42px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(228, 184, 108, 0.26), transparent 34rem),
    linear-gradient(180deg, var(--cream), #fffdf8 48%, var(--cream-2));
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(16,24,32,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16,24,32,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196, 146, 69, 0.18);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.02em;
}
.brand-mark {
  position: relative;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 28%, rgba(228,184,108,.32), transparent 34px),
    linear-gradient(145deg, #0f131a, #06080c);
  border: 1px solid rgba(196, 146, 69, 0.24);
  box-shadow: 0 18px 34px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px rgba(0,0,0,.18), 0 0 0 6px rgba(196,146,69,.08);
}
.brand-logo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  box-shadow: 0 16px 28px rgba(0,0,0,.22);
}
.brand-text {
  display: grid;
  align-content: center;
  gap: 4px;
  line-height: 1.04;
}
.brand-name {
  font-size: clamp(1.28rem, 1.45vw, 1.55rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.038em;
}
.brand-tagline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 0.69rem;
  font-weight: 800;
}
.site-footer .brand-name { color: var(--cream); }
.site-footer .brand-tagline { color: var(--gold-2); }
.site-footer .brand-mark {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 28%, rgba(228,184,108,.24), transparent 28px),
    linear-gradient(145deg, #111720, #05070a);
}
.site-footer .brand-logo { width: 60px; height: 60px; }
.nav-links { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.nav-links a { color: var(--ink); font-weight: 800; padding: 10px 12px; border-radius: 999px; }
.nav-links a:hover { background: rgba(196, 146, 69, 0.13); }
.cart-link { background: var(--ink) !important; color: var(--white) !important; box-shadow: 0 10px 24px rgba(16,24,32,.18); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 84px 0 92px;
  background:
    radial-gradient(circle at 80% 15%, rgba(196,146,69,.26), transparent 22rem),
    linear-gradient(135deg, #fff8ee 0%, #f5ead8 48%, #ffffff 100%);
  overflow: hidden;
}
.hero::after {
  content: "UPCIONS UNLIMITED";
  position: absolute;
  left: -4vw;
  bottom: -48px;
  font-size: clamp(82px, 15vw, 230px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
  color: rgba(16,24,32,.035);
  white-space: nowrap;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 74px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 950; font-size: 12px; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.03; margin: 0; font-family: var(--display); }
h1 { font-size: clamp(54px, 7.4vw, 108px); font-weight: 600; letter-spacing: -0.04em; max-width: 800px; }
h2 { font-size: clamp(38px, 5vw, 70px); font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.lead { color: var(--muted); font-size: 19px; max-width: 720px; }
.hero .lead { font-size: 21px; margin-top: 22px; }
.hero-brand-panel {
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,248,238,.36));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-book {
  min-height: 580px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, #1b2430 0%, #101820 55%, #0a0f15 100%);
  border: 1px solid rgba(196,146,69,.44);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-dark);
}
.hero-logo-medallion { width: 124px; height: 124px; border-radius: 50%; object-fit: cover; background: #000; border: 1px solid rgba(255,255,255,.3); box-shadow: 0 24px 56px rgba(0,0,0,.38); }
.hero-book strong { font-family: var(--display); font-weight: 600; font-size: clamp(40px, 5vw, 64px); line-height: .95; max-width: 440px; display: block; }
.hero-book span { color: rgba(255,255,255,.82); max-width: 430px; display: block; }
.hero-book-centered { justify-content: center; align-items: center; text-align: center; }
.hero-book-centered strong { max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-book-centered span { max-width: 460px; margin-left: auto; margin-right: auto; margin-top: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 21px; font-weight: 950; border: 1px solid transparent; cursor: pointer; font-size: 14px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); box-shadow: 0 14px 34px rgba(16,24,32,.18); }
.btn-dark:hover { background: #000; }
.btn-light { background: rgba(255,255,255,.86); color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--gold); box-shadow: 0 14px 34px rgba(16,24,32,.10); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #17100a; box-shadow: 0 14px 36px rgba(196,146,69,.28); }
.btn.full { width: 100%; }

.section { padding: 100px 0; position: relative; }
.section.tall { padding: 132px 0; }
.section.dark { background: radial-gradient(circle at top right, rgba(196,146,69,.20), transparent 28rem), linear-gradient(135deg, var(--midnight), #172231); color: var(--cream); }
.section.dark .lead, .section.dark p, .section.dark .section-header p { color: rgba(255,248,238,.72); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 40px; }
.section-header p { color: var(--muted); max-width: 600px; }
.kicker-line { width: 84px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 18px 0; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.category-card, .info-card, .policy-card { background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.category-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .2s ease, box-shadow .2s ease; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(16,24,32,.16); }
.category-card span { color: var(--gold); font-weight: 950; font-size: 34px; }
.category-card p, .info-card p, .policy-card p { color: var(--muted); }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.story-strip { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.story-panel { border-radius: var(--radius-lg); background: #000; padding: 26px; box-shadow: var(--shadow-dark); }
.story-panel img { border-radius: 30px; width: 100%; max-height: 520px; object-fit: cover; }
.long-copy { font-size: 20px; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.product-card { background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 34px 80px rgba(16,24,32,.16); }
.product-card img { width: 100%; height: 360px; object-fit: cover; background: var(--paper); object-position: center top; }
.product-card-body { padding: 24px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.product-card p { color: var(--muted); margin: 0; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.product-meta span { background: rgba(196,146,69,.10); border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; font-size: 11px; font-weight: 950; color: #87602b; text-transform: uppercase; letter-spacing: .08em; }
.product-meta.wide { margin: 18px 0; }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-footer strong, .large-price { font-size: 27px; font-weight: 950; color: var(--ink); margin: 16px 0; }

.page-hero { padding: 92px 0 54px; background: radial-gradient(circle at right, rgba(196,146,69,.18), transparent 30rem), var(--paper); border-bottom: 1px solid var(--line); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 38px; }
.filter-btn { border: 1px solid var(--line); background: rgba(255,255,255,.88); color: var(--muted); border-radius: 999px; padding: 11px 16px; font-weight: 950; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: var(--white); }
.empty-state { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 50px; text-align: center; box-shadow: var(--shadow); }

.product-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: start; }
.product-detail-image { width: 100%; max-height: 760px; object-fit: cover; object-position: center top; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--paper); }
.check-list { padding: 0; list-style: none; margin: 22px 0; }
.check-list li { margin: 10px 0; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 10px; }
.notice { background: rgba(196,146,69,.12); border-left: 4px solid var(--gold); padding: 15px 17px; border-radius: 0 15px 15px 0; color: var(--muted); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-items { display: grid; gap: 18px; }
.cart-item { display: grid; grid-template-columns: 96px 1fr 90px 90px auto; gap: 16px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 16px; box-shadow: var(--shadow); }
.cart-item img { width: 96px; height: 96px; object-fit: cover; border-radius: 18px; }
.cart-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: sticky; top: 96px; }
.summary-line { display: flex; justify-content: space-between; margin: 20px 0; font-size: 18px; }
.text-button { border: 0; background: transparent; color: var(--muted); font-weight: 950; cursor: pointer; padding: 10px; }
.text-button.danger { color: #b42318; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; max-width: 760px; }
.form-grid { display: grid; gap: 16px; }
label { font-weight: 950; }
input, textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); font: inherit; }
textarea { min-height: 160px; resize: vertical; }

.site-footer { background: radial-gradient(circle at top left, rgba(196,146,69,.15), transparent 26rem), var(--midnight); color: var(--cream); margin-top: 88px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 34px; padding: 58px 0; }
.site-footer p, .site-footer a { color: rgba(255,248,238,.75); }
.footer-links { display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding: 20px 0; color: rgba(255,248,238,.66); font-size: 14px; }
.toast { position: fixed; right: 22px; bottom: 22px; background: var(--ink); color: var(--white); padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: 0.2s ease; z-index: 100; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .story-strip, .product-detail-grid, .cart-layout, .footer-grid { grid-template-columns: 1fr; }
  .product-grid, .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; }
  .hero-book { min-height: 500px; }
  .cart-item { grid-template-columns: 86px 1fr; }
  .cart-item input, .cart-item > strong, .cart-item button { grid-column: 2; }
  .nav-links { gap: 4px; font-size: 13px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .navbar { align-items: flex-start; flex-direction: column; }
  .brand { gap: 13px; }
  .brand-mark { width: 72px; height: 72px; flex-basis: 72px; border-radius: 20px; }
  .brand-logo { width: 60px; height: 60px; }
  .brand-name { font-size: 1.14rem; }
  .brand-tagline { font-size: 0.62rem; letter-spacing: .14em; }
  .nav-links { flex-wrap: wrap; }
  .product-grid, .info-grid, .category-grid { grid-template-columns: 1fr; }
  h1 { font-size: 50px; }
  .hero-book { min-height: 420px; }
  .product-card img { height: 320px; }
  .section { padding: 76px 0; }
  .section-header { align-items: flex-start; flex-direction: column; }
}

/* ---------- Visual enhancements ---------- */

/* Refined accents */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
}
.kicker-line { background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent); }

/* Animated nav underline */
.nav-links a:not(.cart-link) { position: relative; }
.nav-links a:not(.cart-link)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.cart-link):hover::after { transform: scaleX(1); }

/* Gold button sheen on hover */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}
.btn-gold:hover::after { left: 140%; }

/* Image zoom inside product/story imagery */
.product-card a, .story-panel { overflow: hidden; }
.product-card img, .story-panel img, .product-detail-image {
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover img, .story-panel:hover img { transform: scale(1.05); }

/* Accessible focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .filter-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 10px;
}
input:focus, textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(196,146,69,.16); }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .product-card:hover img, .story-panel:hover img, .category-card:hover, .product-card:hover { transform: none; }
}


/* Flipbook product preview */
.product-flipbook-panel {
  margin-top: 64px;
  border-radius: 34px;
  padding: 56px;
  background: linear-gradient(135deg, #10131a 0%, #1b130b 52%, #090a0d 100%);
  color: #fff;
  border: 1px solid rgba(214, 166, 67, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.section-header.compact {
  max-width: 760px;
  margin-bottom: 28px;
}

.flipbook-frame {
  width: 100%;
  height: 760px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(214, 166, 67, 0.35);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.flipbook-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 800px) {
  .product-flipbook-panel {
    padding: 28px;
    border-radius: 24px;
  }

  .flipbook-frame {
    height: 560px;
    border-radius: 18px;
  }
}


/* ---------- Secure delivery and policy updates ---------- */
.success-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(214, 166, 67, 0.20), transparent 34%),
    linear-gradient(135deg, #fff8ec 0%, #f5ecdc 48%, #efe3cf 100%);
}

.success-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 64px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(196, 146, 69, 0.28);
  box-shadow: 0 34px 90px rgba(45, 34, 20, 0.14);
  backdrop-filter: blur(10px);
}

.success-card h1 {
  margin: 16px 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

.success-card p {
  max-width: 680px;
  margin: 14px auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.success-note {
  margin: 28px auto;
  padding: 18px 22px;
  max-width: 680px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--ink);
  line-height: 1.7;
}

.center-actions {
  justify-content: center;
}

.delivery-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #10131a 0%, #161008 100%);
  color: #fff;
}

.delivery-section .section-header p,
.delivery-section .step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.delivery-section .section-header.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
  display: block;
}

.delivery-section .section-header.centered .eyebrow {
  justify-content: center;
}

.delivery-section .section-header.centered .kicker-line {
  margin: 18px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  min-height: 260px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 166, 67, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-card h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.secure-delivery-note {
  margin: 26px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(214, 166, 67, 0.14), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(196, 146, 69, 0.24);
  color: var(--ink);
}

.secure-delivery-note strong,
.secure-delivery-note span {
  display: block;
}

.secure-delivery-note span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-section .policy-card,
.support-section .policy-card {
  margin-top: 24px;
}

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

  .success-card {
    padding: 34px 22px;
  }
}

/* Checkout Modal */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.modal-content { background-color: #fff; margin: 10% auto; padding: 30px; border: 1px solid #e0e0e0; width: 90%; max-width: 500px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; }
.close-modal { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close-modal:hover { color: #333; }
.modal-content h2 { margin-top: 0; font-family: Fraunces, Georgia, serif; }
.modal-content p { color: #666; margin-bottom: 20px; }

/* Cart Drawer */
.drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.drawer-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100%; background: #fff; z-index: 1001; display: flex; flex-direction: column; transition: right 0.3s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-header h2 { margin: 0; font-size: 20px; }
.close-drawer { background: none; border: none; font-size: 28px; cursor: pointer; color: #666; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-item { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #f9f9f9; padding-bottom: 15px; }
.drawer-item img, .placeholder-img { width: 60px; height: 80px; object-fit: cover; border-radius: 6px; }
.placeholder-img { background: #eee; }
.drawer-item-details { flex: 1; }
.drawer-item-details h4 { margin: 0 0 5px; font-size: 14px; }
.drawer-item-details p { margin: 0 0 10px; font-size: 12px; color: #666; }
.drawer-item-price-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: bold; }
.cart-drawer-footer { padding: 20px; border-top: 1px solid #eee; background: #fafafa; }
.drawer-subtotal { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 18px; }
