/* ============================================================
   ECHOES OF HISTORY PAST — Global Stylesheet
   Theme: Ancient History Editorial / Cinematic Documentary
   ============================================================ */

/* Fonts loaded via <link> tags in each HTML file - not @import (blocks rendering) */

/* ---- CSS Custom Properties ---- */
:root {
  --parchment:        #F0E3C4;
  --parchment-mid:    #DFD0A2;
  --parchment-dark:   #C8B07A;
  --papyrus:          #EBE0C6;
  --ink:              #18120A;
  --ink-soft:         #2C2010;
  --gold:             #C49A1E;
  --gold-bright:      #E4BB3A;
  --gold-dark:        #8A6A0A;
  --terracotta:       #A84422;
  --terra-light:      #C86030;
  --stone:            #6E5438;
  --stone-light:      #9A7A56;
  --crimson:          #6E1414;
  --shadow-warm:      rgba(24, 18, 10, 0.45);
  --shadow-light:     rgba(24, 18, 10, 0.15);

  --nav-height:       72px;
  --section-pad:      clamp(64px, 9vw, 128px);
  --container:        1240px;
  --container-narrow: 820px;
  --gap:              clamp(16px, 3vw, 32px);
  --radius:           2px;

  --font-display:     'Cinzel', 'Times New Roman', serif;
  --font-heading:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'EB Garamond', Georgia, serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink);
  background-color: var(--parchment);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: 0.04em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.subtitle, .lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.02em;
}
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.section {
  padding-block: var(--section-pad);
}
.section--dark {
  background-color: var(--ink);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  color: var(--parchment);
}
.section--parchment { background-color: var(--papyrus); }
.section--stone { background-color: var(--stone); color: var(--parchment); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr)); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: var(--gap); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ---- Section Title Block ---- */
.section-title {
  margin-bottom: clamp(40px, 6vw, 72px);
  position: relative;
}
.section-title__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title__ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.section-title__ornament span { flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.section-title__ornament i { color: var(--gold); font-style: normal; font-size: 1rem; }
.text-center .section-title__ornament { justify-content: center; }
.text-center .section-title__ornament span { max-width: 80px; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-height);
  background: rgba(24, 18, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 30, 0.25);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment);
  line-height: 1.2;
}
.nav__logo-text small {
  display: block;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment-mid);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold); }
.nav__mobile-account { display: none; }
.nav__vera { color: var(--gold) !important; border: 1px solid rgba(196,154,30,0.35); padding: 5px 12px !important; transition: background 0.2s, border-color 0.2s; }
.nav__vera:hover { background: rgba(196,154,30,0.1) !important; border-color: var(--gold) !important; }
.nav__cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 9px 20px;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.nav__cart-badge {
  background: var(--terracotta);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  transition: all 0.3s;
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
  background-color: var(--ink); /* fallback if image doesn't load */
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 12, 6, 0.96) 0%,
    rgba(18, 12, 6, 0.65) 40%,
    rgba(18, 12, 6, 0.2) 80%,
    rgba(18, 12, 6, 0.3) 100%
  );
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(60px, 10vw, 120px);
  max-width: 900px;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.05em;
  color: var(--parchment);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 0.72em;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.hero__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--parchment-mid);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
}
.hero__divider span { height: 1px; background: var(--gold); opacity: 0.6; }
.hero__divider span:first-child { width: 60px; }
.hero__divider span:last-child { flex: 1; max-width: 200px; }
.hero__divider i { color: var(--gold); font-style: normal; }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 5vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--parchment-mid);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* ---- Page Header (non-home pages) ---- */
.page-header {
  padding-top: var(--nav-height);
  padding-bottom: 0;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 12, 6, 0.95) 0%,
    rgba(18, 12, 6, 0.55) 60%,
    rgba(18, 12, 6, 0.3) 100%
  );
}
.page-header__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px clamp(20px, 5vw, 48px) clamp(48px, 7vw, 72px);
}
.page-header__breadcrumb {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}
.page-header__breadcrumb a { transition: color 0.2s; }
.page-header__breadcrumb a:hover { color: var(--gold-bright); }
.page-header__title {
  font-family: var(--font-display);
  color: var(--parchment);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.page-header__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--parchment-mid);
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-top: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 0.08; }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn--outline {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(240, 227, 196, 0.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(24, 18, 10, 0.4);
}
.btn--outline-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn--terra {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.btn--terra:hover { background: var(--terra-light); border-color: var(--terra-light); }
.btn svg { transition: transform 0.25s; }
.btn:hover svg { transform: translateX(3px); }

/* ---- Ornamental Divider ---- */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-block: clamp(32px, 5vw, 64px);
  color: var(--gold);
  opacity: 0.6;
}
.ornament__line { flex: 1; height: 1px; background: currentColor; }
.ornament__symbol { font-style: normal; font-size: 1rem; flex-shrink: 0; }

/* ---- Greek Key Border ---- */
.greek-key-top, .greek-key-bottom {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-dark) 0px, var(--gold-dark) 4px,
    transparent 4px, transparent 8px,
    var(--gold-dark) 8px, var(--gold-dark) 12px,
    transparent 12px, transparent 16px
  );
  opacity: 0.35;
}

/* ---- Video Cards ---- */
.video-card {
  background: var(--ink-soft);
  border: 1px solid rgba(196, 154, 30, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0804;
}
.video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  opacity: 0.85;
}
.video-card:hover .video-card__thumb img { transform: scale(1.05); opacity: 1; }
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
}
.video-card__play-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(240, 227, 196, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 12, 6, 0.6);
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.video-card:hover .video-card__play-btn {
  border-color: var(--gold);
  background: rgba(196, 154, 30, 0.2);
  transform: scale(1.1);
}
.video-card__play-btn svg { margin-left: 3px; }
.video-card__duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(18, 12, 6, 0.85);
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid rgba(196, 154, 30, 0.2);
}
.video-card__body { padding: 20px 22px 24px; }
.video-card__category {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.video-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.video-card__meta {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--stone-light);
  display: flex;
  gap: 14px;
}

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-dark);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow-light); }
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: sepia(0.15) contrast(0.95);
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); filter: sepia(0) contrast(1); }
.blog-card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__category {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card__category::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--terracotta);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title { color: var(--gold-dark); }
.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--parchment-dark);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--stone-light);
}
.blog-card__read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 600;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card__read-more { gap: 10px; }

/* ---- Product Cards (Store) ---- */
.product-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-dark);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px var(--shadow-light); }
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--papyrus);
  flex-shrink: 0;
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 6, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 7px;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.product-card__desc {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.product-card__price-original {
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--stone-light);
  margin-left: 6px;
}
.product-card__add {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 9px 16px;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.product-card__add:hover { background: var(--gold-bright); }
.product-card__add.added {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}

/* ---- Category Filter ---- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 56px);
  align-items: center;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1px solid var(--parchment-dark);
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

/* ---- Featured Video Embed ---- */
.video-embed-wrap {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 30, 0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ---- Cart Drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 12, 6, 0.7);
  z-index: 10100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: var(--parchment);
  z-index: 10101;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--parchment-dark);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--parchment-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--parchment-dark);
  transition: all 0.2s;
}
.cart-drawer__close:hover { border-color: var(--ink); background: var(--ink); color: var(--parchment); }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--stone);
}
.cart-empty svg { opacity: 0.3; margin-bottom: 16px; }
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--parchment-dark);
}
.cart-item__img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; }
.cart-item__price { font-family: var(--font-display); font-size: 0.82rem; color: var(--gold-dark); }
.cart-item__remove { font-size: 0.72rem; color: var(--stone-light); font-family: var(--font-display); letter-spacing: 0.1em; cursor: pointer; transition: color 0.2s; }
.cart-item__remove:hover { color: var(--terracotta); }
.cart-drawer__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--parchment-dark);
  flex-shrink: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}
.cart-total span:last-child { color: var(--gold-dark); font-size: 1.1rem; }
.cart-note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--stone-light);
  text-align: center;
  margin-top: 12px;
}

/* ---- Testimonial / Quote ---- */
.blockquote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: rgba(196, 154, 30, 0.06);
  margin: 40px 0;
}
.blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.blockquote cite {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
}

/* ---- Social Links ---- */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--parchment-dark);
  color: var(--ink);
  transition: all 0.25s;
  background: var(--parchment);
}
.social-link:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.social-link--yt:hover     { background: #FF0000; border-color: #FF0000; color: white; }
.social-link--tiktok:hover { background: #010101; border-color: #010101; color: white; }
.social-link--ig:hover     { background: #C13584; border-color: #C13584; color: white; }
.social-link--fb:hover     { background: #1877F2; border-color: #1877F2; color: white; }
.social-link--pin:hover    { background: #E60023; border-color: #E60023; color: white; }

/* ---- Contact Form ---- */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--papyrus);
  border: 1px solid var(--parchment-dark);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(196, 154, 30, 0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  color: var(--parchment);
  padding-top: clamp(56px, 8vw, 96px);
  border-top: 3px solid var(--gold-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--parchment);
  margin-bottom: 4px;
}
.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer__desc {
  font-size: 0.9rem;
  color: var(--parchment-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__col-title::after { content: ''; flex: 1; height: 1px; background: rgba(196, 154, 30, 0.25); }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--parchment-dark);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__links a::before { content: '›'; color: var(--gold); opacity: 0; transition: opacity 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__links a:hover::before { opacity: 1; }
.footer__vera-link { color: var(--gold) !important; }
.footer__vera-link::before { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(196, 154, 30, 0.15);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--stone-light);
  margin: 0;
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--stone-light);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--gold); }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ---- Notification Toast ---- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(196, 154, 30, 0.3);
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s;
  opacity: 0;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - var(--nav-height));
    background: var(--ink);
    background-image: linear-gradient(180deg, rgba(24,18,10,0.99), rgba(15,10,5,0.99));
    padding: clamp(24px, 7vw, 44px) clamp(28px, 8vw, 56px) 40px;
    z-index: 10000;
    gap: 2px;
    overflow-y: auto;
    list-style: none;
    border-top: 1px solid rgba(196,154,30,0.22);
    box-shadow: 0 28px 60px rgba(0,0,0,0.55);
  }
  .nav__links.open a {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    padding: 17px 0;
    border-bottom: 1px solid rgba(196,154,30,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.16em;
    text-align: center;
  }
  .nav__links.open a::after { display: none; }
  .nav__links.open .nav__mobile-account { display: list-item; }
  .nav__links.open .nav__mobile-account a { color: var(--gold); }
  .nav__toggle { display: flex; }
  .nav__toggle.open { position: relative; z-index: 10001; }
  .nav__cta { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__bg { background-attachment: scroll; }
  .hero__content { padding-inline: 24px; }
  .hero__divider span:last-child { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .category-filter { gap: 8px; }
  .social-links { flex-direction: column; }
  .social-link { justify-content: center; }
}

/* ================================================================
   NEWSLETTER BAND  (shared: index.html + blog.html)
   ================================================================ */
.newsletter {
  padding: clamp(48px,7vw,96px) clamp(20px,5vw,48px);
  text-align: center; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(196,154,30,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(168,68,34,0.06) 0%, transparent 60%);
}
.newsletter__form {
  display: flex; gap: 0; max-width: 480px; margin: 28px auto 0;
}
.newsletter__input {
  flex: 1; padding: 14px 20px;
  background: rgba(240,227,196,0.08);
  border: 1px solid rgba(196,154,30,0.3); border-right: none;
  color: var(--parchment); font-family: var(--font-body); font-size: 1rem;
  outline: none; transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: rgba(240,227,196,0.4); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__submit {
  padding: 14px 24px; background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--gold); cursor: pointer; transition: all 0.25s;
  white-space: nowrap;
}
.newsletter__submit:hover { background: var(--gold-bright); }
.newsletter__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter__note {
  font-family: var(--font-heading); font-style: italic;
  font-size: 0.85rem; color: var(--stone-light); margin-top: 12px;
}
@media (max-width: 600px) {
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid rgba(196,154,30,0.3); }
}
