/* Amanah — Coffee palette premium marketplace theme */

:root {
  --black: #4C2B08;
  --black2: #5A3512;
  --black3: #6D3914;
  --gold: #AB7743;
  --gold2: #C49463;
  --gold3: #D7BDA6;
  --gold-glow: rgba(171, 119, 67, 0.35);
  --cream: #F4EDE6;
  --text: #4C2B08;
  --muted: #84593D;
  --card: #fff;
  --border: #E8DDD4;
  --green: #AB7743;
  --green2: #6D3914;
  --green3: #F0E6DC;
  --teal: #84593D;
  --dark: var(--black);
  --shadow: 0 24px 56px -14px rgba(0, 0, 0, 0.38);
  --pattern: none;
  --pattern-dark: none;
}

body { background: var(--cream); padding-bottom: 88px; }

.announce-bar {
  background: linear-gradient(90deg, #000 0%, var(--black2) 50%, #4C2B08 100%);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 16px;
  position: relative;
  border-bottom: 1px solid rgba(171, 119, 67, 0.25);
}
.announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pattern);
  pointer-events: none;
}
.announce-bar em { font-style: normal; color: var(--gold2); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(171, 119, 67, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}
.nav-links { display: none; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  box-shadow: 0 4px 20px var(--gold-glow);
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.hero {
  background: linear-gradient(155deg, #000 0%, var(--black2) 35%, #4C2B08 70%, #5A3512 100%);
  padding: 44px 24px 56px;
  text-align: left;
  align-items: stretch;
  border-bottom: 2px solid rgba(171, 119, 67, 0.3);
}
.hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(171, 119, 67, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(171, 119, 67, 0.14) 0%, transparent 50%);
}
.hero::after { background: var(--pattern-dark); opacity: 0.6; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero-visual {
  width: 100%;
  align-self: start;
}
.hero-brand-logo {
  width: min(100%, 380px);
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 12px 32px rgba(171, 119, 67, 0.25));
}
.hero-badge {
  background: rgba(171, 119, 67, 0.12);
  border: 1px solid rgba(171, 119, 67, 0.45);
  color: var(--gold2);
}
.hero-arabic { color: var(--gold3); }
.hero-books { color: var(--gold2); }
.tagline { color: rgba(255, 255, 255, 0.55); }
.hero-desc { color: rgba(255, 255, 255, 0.82); margin: 0 0 18px; max-width: 480px; }
.hero-btns { justify-content: flex-start; margin-bottom: 0; }
.trust-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-top: 14px;
  max-width: 400px;
  width: 100%;
}
.trust-pill {
  background: rgba(171, 119, 67, 0.1);
  border: 1px solid rgba(171, 119, 67, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .trust-pills { grid-template-columns: 1fr; max-width: 100%; }
  .trust-pill { white-space: normal; }
}
.hero-card {
  background: linear-gradient(165deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(171, 119, 67, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(171, 119, 67, 0.15);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold2), var(--gold), var(--gold2), transparent);
}
.hero-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 14px;
}
.featured-seller-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.featured-seller-item {
  background: rgba(171, 119, 67, 0.08);
  border: 1px solid rgba(171, 119, 67, 0.22);
  border-radius: 14px;
  padding: 12px 14px;
}
.featured-seller-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--gold2);
  margin-bottom: 2px;
}
.featured-seller-item span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.hero-card-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 18px;
  padding: 0 4px;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-stat {
  background: rgba(171, 119, 67, 0.1);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(171, 119, 67, 0.2);
}
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold2);
}
.hero-stat span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Platform vision band — categories + values */
.platform-band {
  background:
    linear-gradient(180deg, #F4EDE6 0%, var(--cream) 55%, #fff 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.platform-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pattern);
  opacity: 0.35;
  pointer-events: none;
}
.platform-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold2), var(--gold), var(--gold2), transparent);
}
.platform-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px 40px;
  position: relative;
  z-index: 1;
}
.platform-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}
.platform-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.platform-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.platform-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.category-lane {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 96px;
  padding: 12px 10px 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: 0.25s;
}
.cat-chip.live {
  background: linear-gradient(145deg, #0d0d0d, #1a1510);
  border-color: rgba(171, 119, 67, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.cat-chip.live strong { color: var(--gold2); }
.cat-chip.live em { color: rgba(255, 255, 255, 0.55); }
.cat-chip.soon strong { color: var(--black); }
.cat-chip.soon em { color: var(--muted); }
.cat-chip:hover { transform: translateY(-2px); }
.cat-icon { font-size: 22px; line-height: 1; }
.cat-chip strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.cat-chip em {
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.value-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.25;
}
.value-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* Luxe details strip — address, phone, email, ISBN */
.site-details-strip {
  background: linear-gradient(135deg, #000 0%, var(--black2) 60%, #4C2B08 100%);
  border-top: 1px solid rgba(171, 119, 67, 0.2);
  border-bottom: 2px solid rgba(171, 119, 67, 0.35);
  padding: 18px 20px;
  position: relative;
}
.site-details-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pattern);
  opacity: 0.5;
  pointer-events: none;
}
.site-details-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  position: relative;
  z-index: 1;
}
.detail-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(171, 119, 67, 0.1);
  border: 1px solid rgba(171, 119, 67, 0.28);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.detail-chip strong, .detail-chip a {
  color: var(--gold2);
  font-weight: 700;
  text-decoration: none;
}
.detail-chip a:hover { color: var(--gold3); }
.detail-chip .chip-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 2px;
}

/* Featured publishers band — visually distinct from hero */
.featured-band {
  background: linear-gradient(180deg, var(--cream) 0%, #EDE3D8 100%);
  padding: 36px 20px 28px;
  position: relative;
}
.featured-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), #fff, var(--gold2), var(--gold));
}
.publisher-spotlight {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}
.publisher-card {
  background: linear-gradient(145deg, #0d0d0d 0%, #1a1510 50%, #0a0a0a 100%);
  border-radius: 24px;
  padding: 28px 28px 24px;
  color: #fff;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(171, 119, 67, 0.3);
  border: 1px solid rgba(171, 119, 67, 0.4);
  position: relative;
  overflow: hidden;
}
.publisher-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(171, 119, 67, 0.18) 0%, transparent 55%),
    var(--pattern-dark);
  opacity: 0.7;
  pointer-events: none;
}
.publisher-card::after {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}
.publisher-card-head {
  position: relative;
  z-index: 1;
  text-align: center;
}
.publisher-eyebrow {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 10px;
}
.publisher-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5vw, 38px);
  margin-bottom: 8px;
  color: #fff;
  font-weight: 700;
}
.publisher-card .publisher-sub {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto;
}
.featured-publishers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}
.fp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(171, 119, 67, 0.3);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  transition: 0.25s;
}
.fp-card:hover {
  background: rgba(171, 119, 67, 0.1);
  border-color: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.fp-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold2);
  margin-bottom: 6px;
}
.fp-card span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}
.publisher-badge {
  display: inline-flex;
  align-self: center;
  justify-self: center;
  background: linear-gradient(135deg, rgba(171, 119, 67, 0.25), rgba(171, 119, 67, 0.08));
  border: 1px solid var(--gold2);
  color: var(--gold2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.search-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 12px;
}
.search-box { position: relative; }
.search-input {
  width: 100%;
  padding: 15px 48px 15px 46px;
  border: 2px solid rgba(171, 119, 67, 0.35);
  border-radius: 16px;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}
.search-input:focus {
  outline: none;
  border-color: var(--gold2);
  box-shadow: 0 0 0 4px rgba(171, 119, 67, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}
.search-results-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 12px;
}
.search-results-bar .results-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--black), var(--black3));
  color: var(--gold2);
  border: 1px solid rgba(171, 119, 67, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
}

.book-isbn {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.4;
}
.book-isbn .isbn-label {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold3);
  border: 1px solid rgba(171, 119, 67, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
  margin-right: 4px;
}
.book-isbn .isbn-pending { color: #999; font-style: italic; font-size: 9px; }

.books-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  align-items: stretch;
}
.book-card {
  border-radius: 20px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
  border-color: var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.book-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.book-card-foot {
  margin-top: auto;
  padding-top: 10px;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(171, 119, 67, 0.45);
}
.book-seller-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.book-price { color: var(--black); font-size: 22px; }
.book-price::before { content: ''; }
.book-price-val--disc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--black);
}
.add-btn {
  background: linear-gradient(135deg, var(--black), var(--black3));
  border: 1px solid rgba(171, 119, 67, 0.3);
  border-radius: 12px;
  color: var(--gold2);
}
.add-btn:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--black);
}

.contact-head {
  background: linear-gradient(135deg, #000, #4C2B08, var(--black2));
  font-size: 28px;
  border-bottom: 2px solid rgba(171, 119, 67, 0.3);
}
.contact-box {
  border-radius: 28px;
  border: 1px solid rgba(171, 119, 67, 0.25);
  box-shadow: var(--shadow);
}
.c-val a { color: var(--gold) !important; }
.gst-chip {
  background: var(--gold3);
  border-color: var(--gold2);
  color: var(--black);
}

.footer-promoted {
  background: linear-gradient(180deg, #fff 0%, var(--gold3) 50%, var(--cream) 100%);
  padding: 52px 24px 36px;
}
.footer-promoted .promoted-by-label {
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--gold);
}
.footer-promoted img {
  width: clamp(110px, 24vw, 150px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.15));
}
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.45);
  padding: 24px 20px 100px;
  border-top: 1px solid rgba(171, 119, 67, 0.2);
}
.footer strong { color: var(--gold); }
.footer a { color: rgba(255, 255, 255, 0.55) !important; }

.checkout-header {
  background: linear-gradient(135deg, #000, #4C2B08, var(--black2));
  border-bottom: 2px solid rgba(171, 119, 67, 0.25);
}
.checkout-title { font-size: 30px; color: var(--gold2); }

.cat-tabs-wrap { max-width: 1180px; margin: 0 auto; }
.cat-tabs-label {
  padding: 18px 20px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.curated-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 8px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.curated-strip::-webkit-scrollbar { display: none; }
.curated-chip {
  flex: none;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 148px;
  cursor: pointer;
  transition: 0.2s;
  text-align: left;
}
.curated-chip:hover, .curated-chip.active {
  border-color: var(--gold2);
  box-shadow: 0 6px 18px rgba(171, 119, 67, 0.15);
}
.curated-chip.active {
  background: linear-gradient(135deg, var(--gold3), #fff);
}
.curated-chip strong {
  display: block;
  font-size: 12px;
  color: var(--black);
  margin-bottom: 4px;
}
.curated-chip span {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
}
.book-pub-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold3);
  border: 1px solid rgba(171, 119, 67, 0.35);
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.books-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 14px;
}

.editors-picks-wrap {
  background:
    linear-gradient(135deg, #EDE3D8 0%, #F4EDE6 45%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 22px 22px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.editors-picks-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pattern);
  opacity: 0.22;
  pointer-events: none;
}
.editors-picks-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}
.editors-picks {
  margin-bottom: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.editors-picks-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.editors-picks-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.editors-picks-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}
.editors-picks-sub { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.55; }
.editors-picks-link {
  background: var(--black);
  border: 1px solid rgba(171, 119, 67, 0.4);
  color: var(--gold2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: 0.2s;
}
.editors-picks-link:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--black);
}
.editors-picks-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.editors-picks-row::-webkit-scrollbar { height: 6px; }
.editors-picks-row::-webkit-scrollbar-thumb {
  background: rgba(171, 119, 67, 0.35);
  border-radius: 999px;
}
.pick-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(171, 119, 67, 0.4);
}
.pick-card.in-cart {
  border-color: var(--gold2);
  box-shadow: 0 0 0 2px rgba(171, 119, 67, 0.25);
}
.pick-cover { height: 130px !important; border-radius: 0; }
.pick-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pick-foot { margin-top: auto; padding-top: 8px; }
.pick-price-row { margin-top: 0; padding-top: 0; }
.pick-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream, #F4EDE6);
  background: var(--booket-ink, #4C2B08);
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.pick-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  min-height: 38px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-meta {
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 6px 0 4px;
}
.pick-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.pick-add {
  width: 100%;
  background: linear-gradient(135deg, var(--black), var(--black3));
  color: var(--gold2);
  border: 1px solid rgba(171, 119, 67, 0.3);
  padding: 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.pick-qty {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  background: var(--gold3);
  padding: 8px;
  border-radius: 10px;
}

.section .sec-title { color: var(--black); }
.section .sec-icon {
  background: linear-gradient(135deg, var(--gold3), #fff);
  border-color: rgba(171, 119, 67, 0.35);
}

.info-bar {
  background: linear-gradient(135deg, #000, var(--black2));
  border-bottom: 1px solid rgba(171, 119, 67, 0.2);
  padding: 16px 24px;
}
.info-item { color: rgba(255, 255, 255, 0.65); font-size: 12px; }
.info-item strong, .info-item a { color: var(--gold2) !important; }

.auth-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.auth-btn {
  background: var(--black);
  color: var(--gold2);
  border: 1px solid rgba(171, 119, 67, 0.3);
}
.auth-btn:hover { background: linear-gradient(135deg, var(--gold2), var(--gold)); color: var(--black); }
.auth-btn.outline { background: #fff; color: var(--black); border-color: var(--gold2); }

.faq-pricing-list {
  margin: 10px 0 14px 18px;
  line-height: 1.75;
  font-size: 14px;
}
.faq-pricing-list li { margin-bottom: 6px; }
.faq-a p { line-height: 1.75; margin-bottom: 10px; }
.faq-afford { margin-top: 14px; margin-bottom: 6px; }
.faq-afford-note {
  font-size: 13px;
  line-height: 1.75;
  color: var(--green);
  background: var(--green3);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(171, 119, 67, 0.12);
}
.shipping-note a { color: var(--green); font-weight: 600; text-decoration: underline; }

/* FAQ — ilmStore-style accordion */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 56px;
}
.faq-head {
  text-align: center;
  margin-bottom: 32px;
}
.faq-eyebrow {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.faq-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: rgba(171, 119, 67, 0.45);
  box-shadow: 0 8px 28px rgba(171, 119, 67, 0.12);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold3);
  border: 1px solid rgba(171, 119, 67, 0.35);
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-q {
  color: var(--gold);
}
.faq-item.open .faq-q::after {
  content: '−';
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--black);
  border-color: transparent;
}
.faq-q:hover { color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 520px;
}
.faq-a p {
  padding: 0 20px 18px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  border-top: 1px solid #F0E6DC;
  padding-top: 16px;
  margin: 0 20px 18px;
}
.faq-a a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.faq-a a:hover { text-decoration: underline; }
.faq-a strong { color: var(--black); font-weight: 600; }

@media (max-width: 640px) {
  .detail-chip { font-size: 10px; padding: 8px 12px; border-radius: 14px; }
  .featured-publishers-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: 13px; padding: 16px; }
  .faq-a p { font-size: 12px; margin: 0 16px 16px; padding: 14px 0 0; }
}
