/* ═══════════════════════════════════════════════════════════════════════════
   The Handbag Authority — Global Luxury Theme v1.0
   Apply to every page: <link rel="stylesheet" href="/luxury-theme.css">
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --black:   #0C0B09;
  --ink:     #1A1714;
  --white:   #FDFAF6;
  --cream:   #F5F0E8;
  --sand:    #EDE7DA;
  --gold:    #A07840;
  --gold-lt: #C4965A;
  --muted:   #8C8070;
  --rule:    #D8D0C4;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', system-ui, sans-serif;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 300; }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 400; }

p { font-family: var(--sans); font-weight: 300; line-height: 1.7; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
nav, .site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(253,250,246,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216,208,196,0.6);
}

.nav-logo, nav a.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.nav-logo em, nav .nav-logo em, nav .nav-logo span {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn, .cta-button, .buy-now {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.cta-button, .btn-primary {
  background: var(--ink);
  color: var(--white);
}

.cta-button:hover, .btn-primary:hover {
  background: var(--gold);
  color: var(--white);
}

.buy-now {
  background: var(--gold);
  color: var(--white);
  display: block;
  text-align: center;
}

.buy-now:hover { background: var(--gold-lt); }

/* ─── Section scaffolding ────────────────────────────────────────────────── */
.section {
  padding: 7rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ─── Blog cards (editorial style) ──────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 3rem;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2.5rem;
  transition: all 0.25s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.blog-card:hover { transform: none; border-color: var(--gold); }

.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--gold); }

.blog-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card span[style*="gold"] {
  font-family: var(--sans);
  font-size: 0.68rem !important;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink) !important;
  text-transform: uppercase;
}

/* ─── Deal / product cards ───────────────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--rule);
  max-width: 1100px;
  margin: 0 auto;
}

.deal-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: none;
  position: relative;
}

.deal-card:hover { background: var(--cream); }

/* Remove garish deal badges */
.deal-badge { display: none; }

.deal-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.price-tag {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin: 0.6rem 0 0.5rem;
}

.old-price { display: none; }

.deal-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ─── Deals section background ───────────────────────────────────────────── */
.deals-section {
  background: var(--cream);
  padding: 7rem 4rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.deals-section .section-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

/* Remove "hottest trending" subtext tone */
.deals-section .section-header p {
  color: var(--muted);
}

/* ─── Email signup ───────────────────────────────────────────────────────── */
.email-signup {
  background: var(--black);
  padding: 7rem 4rem;
  position: relative;
}

.email-signup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,120,64,0.4), transparent);
}

.email-signup .tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}

.email-signup h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.email-signup p {
  color: rgba(253,250,246,0.45);
  font-size: 0.88rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: #080705;
  color: rgba(253,250,246,0.3);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

footer a { color: rgba(253,250,246,0.3); text-decoration: none; }
footer a:hover { color: rgba(253,250,246,0.6); }

/* ─── Individual bag pages ───────────────────────────────────────────────── */
.bag-hero {
  background: var(--cream);
  padding: 7rem 4rem 5rem;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.bag-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.bag-hero .brand-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.bag-hero .subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ─── Inline content styles ──────────────────────────────────────────────── */
article, .blog-content, .page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

article h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

article h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}

article p { margin-bottom: 1.4rem; font-size: 1rem; color: var(--ink); }
article ul, article ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
article li { margin-bottom: 0.5rem; font-size: 0.96rem; line-height: 1.65; }
article strong { font-weight: 500; color: var(--ink); }
article a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
article a:hover { color: var(--ink); }
article blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav, .site-nav { padding: 0 1.75rem; }
  .nav-links { display: none; }
  .section, .deals-section, .email-signup { padding: 4rem 1.5rem; }
  article, .blog-content, .page-content { padding: 3rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}
