/* =========================================
   ESSIENTIAL CMS - Main Stylesheet
   MexTech Limited © 2026
   Luxurious lifestyle & travel aesthetic
   ========================================= */

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

/* IvyOra Display Custom Web Fonts */
@font-face {
  font-family: 'IvyOra Display';
  src: url('../fonts/IvyOraDisplay-Light.eot');
  src: url('../fonts/IvyOraDisplay-Light.eot?#iefix') format('embedded-opentype'),
       url('../fonts/IvyOraDisplay-Light.woff2') format('woff2'),
       url('../fonts/IvyOraDisplay-Light.woff') format('woff'),
       url('../fonts/IvyOraDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IvyOra Display';
  src: url('../fonts/IvyOraDisplay-LightItalic.eot');
  src: url('../fonts/IvyOraDisplay-LightItalic.eot?#iefix') format('embedded-opentype'),
       url('../fonts/IvyOraDisplay-LightItalic.woff2') format('woff2'),
       url('../fonts/IvyOraDisplay-LightItalic.woff') format('woff'),
       url('../fonts/IvyOraDisplay-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'IvyOra Display';
  src: url('../fonts/IvyOraDisplay-Medium.eot');
  src: url('../fonts/IvyOraDisplay-Medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/IvyOraDisplay-Medium.woff2') format('woff2'),
       url('../fonts/IvyOraDisplay-Medium.woff') format('woff'),
       url('../fonts/IvyOraDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #C4956A;
  --color-secondary: #1A1A1A;
  --color-accent: #F5F0EB;
  --color-text: #222222;
  --color-text-muted: #6B6B6B;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #E8E2DC;
  --font-heading: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 0px;
  --radius-sm: 2px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: #222222;
  background: var(--color-white);
  line-height: 26px;
  letter-spacing: 0px;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  color: #222222;
}

h1 {
  font-weight: 400;
  color: #222222;
}

h2 {
  font-weight: 400;
  text-align: inherit;
  color: #222222;
}

h3 {
  font-weight: 400;
  text-align: inherit;
  color: #222222;
}

h4 {
  font-weight: 400;
  text-align: inherit;
  color: #222222;
}

h5 {
  font-weight: 400;
  text-align: inherit;
  color: #222222;
}

h6 {
  font-weight: 400;
  text-align: inherit;
  font-size: 26px;
  line-height: 28px;
  color: #222222;
}

.display-xl {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-lg {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
}

.display-md {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.heading-serif {
  font-family: var(--font-heading);
  font-style: italic;
}

p { margin-bottom: 1rem; }

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* On hero pages, nav starts transparent with white text */
.hero-page .site-nav:not(.scrolled) .nav-logo { color: white; }
.hero-page .site-nav:not(.scrolled) .nav-links a { color: white; }
.hero-page .site-nav:not(.scrolled) .nav-cart svg { stroke: white; }
.hero-page .site-nav:not(.scrolled) .nav-cart { color: white; }
.hero-page .site-nav:not(.scrolled) .nav-hamburger span { background: white; }

/* Scrolled state always uses dark text */
.site-nav.scrolled .nav-logo { color: var(--color-text); }
.site-nav.scrolled .nav-links a { color: var(--color-text); }
.site-nav.scrolled .nav-cart { color: var(--color-text); }
.site-nav.scrolled .nav-cart svg { stroke: var(--color-text); }
.site-nav.scrolled .nav-hamburger span { background: var(--color-text); }

/* Remove old nav-dark class usage */
.site-nav.nav-dark {
  background: rgba(0,0,0,0.0);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  position: relative;
}

/* Left slot — holds hamburger (mobile) or nav links (desktop) */
.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
  z-index: 1;
}

/* Hamburger — hidden on desktop, shown on mobile/tablet */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1;
}

/* Logo — absolutely centered at all times */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
.nav-logo-text {
  transition: color var(--transition);
}

/* ── Logo image base ─────────────────────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  position: absolute;
}
/* Stack both images on top of each other, cross-fade between them */
.nav-logo-white { opacity: 1; }
.nav-logo-dark  { opacity: 0; }

/* ── Hero pages: transparent nav → show WHITE, hide DARK ─────────── */
.hero-page .site-nav:not(.scrolled) .nav-logo-white { opacity: 1; }
.hero-page .site-nav:not(.scrolled) .nav-logo-dark  { opacity: 0; }
/* text fallback on hero */
.hero-page .site-nav:not(.scrolled) .nav-logo-text  { color: #fff; }

/* ── Scrolled / sticky nav → show DARK, hide WHITE ──────────────── */
.site-nav.scrolled .nav-logo-white { opacity: 0; }
.site-nav.scrolled .nav-logo-dark  { opacity: 1; }
.site-nav.scrolled .nav-logo-text  { color: var(--color-text); }

/* ── Non-hero pages: always show DARK logo ───────────────────────── */
body:not(.hero-page) .site-nav .nav-logo-white { opacity: 0; }
body:not(.hero-page) .site-nav .nav-logo-dark  { opacity: 1; }

/* ── Only one logo uploaded: handle gracefully ────────────────────── */
/* If only white uploaded, show it everywhere */
.nav-logo-white:only-child { opacity: 1; }
/* If only dark uploaded, invert it on hero transparent nav */
.hero-page .site-nav:not(.scrolled) .nav-logo-dark:only-child {
  opacity: 1;
  filter: brightness(0) invert(1);
}
.site-nav.scrolled .nav-logo-dark:only-child { filter: none; }

.nav-logo:hover .nav-logo-img { opacity: 0.75 !important; }

/* Reserve space so the nav doesn't collapse with absolute-positioned images */
.nav-logo { min-width: 120px; min-height: 36px; }

/* Actions (cart) sit on the RIGHT */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
  z-index: 1;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--color-primary); }

/* Keep active gold visible on hero (white) nav too */
.hero-page .site-nav:not(.scrolled) .nav-links a.active { color: var(--color-primary); }

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1090;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu-backdrop.visible {
  display: block;
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2a2825;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu .close-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  z-index: 10;
}

.mobile-menu .close-btn svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.75);
  stroke-width: 1.5;
}

.mobile-menu .brand {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
  padding: 52px 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  line-height: 1;
}

.mobile-menu nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,0.92);
  padding: 26px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  letter-spacing: 0.01em;
  transition: color 0.25s ease, padding-left 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.mobile-menu nav a.active {
  color: var(--color-primary);
}

.mobile-menu nav a:hover {
  color: var(--color-primary);
  padding-left: 52px;
}

/* =========================================
   HERO SECTIONS
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-align: center;
}

.hero-tagline {
  font-family: 'IvyOra Display', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  text-align: center;
}

/* Slideshow hero */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

/* Per-slide content — centered */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
}

.hero-slide-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-slide-text:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero-slide.active .hero-slide-text:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .hero-slide-text:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* Reset when slide becomes inactive */
.hero-slide:not(.active) .hero-slide-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-primary {
  background: var(--color-primary);
  color: white;
  border: 1px solid var(--color-primary);
}

.btn-primary::before { background: var(--color-secondary); }
.btn-primary:hover { color: white; }

.btn-dark {
  background: var(--color-secondary);
  color: white;
  border: 1px solid var(--color-secondary);
}

.btn-dark::before { background: var(--color-primary); }
.btn-dark:hover { color: white; border-color: var(--color-primary); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-outline::before { background: var(--color-text); }
.btn-outline:hover { color: white; }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.7);
}

.btn-outline-white::before { background: white; }
.btn-outline-white:hover { color: var(--color-text); }

.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 96px 0;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* Dark sections */
.section-dark {
  background: var(--color-secondary);
  color: white;
}

.section-dark .section-label { color: var(--color-primary); }
.section-dark .section-title { color: white; }
.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* Accent sections */
.section-accent { background: var(--color-accent); }

/* =========================================
   HOMEPAGE INTRO SECTION — "Curating a Life..."
   White bg, centered, sleek
   ========================================= */

.hp-intro-section {
  background: #fff;
  padding: 56px 32px 64px;
  text-align: center;
}

.hp-intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.hp-intro-heading {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  font-weight: 400;
  color: #222222;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hp-intro-sub {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 1.0rem;
  color: #222222;
  line-height: 1.85;
  font-weight: 300;
}

/* =========================================
   MEET MONICA SECTION
   Pure black bg, 3 sub-blocks stacked
   ========================================= */

.meet-monica-section {
  background: #000;
  color: #fff;
}

/* Block 1: Heading + Bio + Button */
.meet-monica-text {
  text-align: center;
  padding: 72px 40px 56px;
  max-width: 680px;
  margin: 0 auto;
}

.meet-monica-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
  line-height: 3.8rem;
}

.meet-monica-bio {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 200;
  color: #fff;
  line-height: 2.0;
  margin-bottom: 52px;
  text-align: center;
}

.meet-monica-btn {
  display: block;
  width: fit-content;
  min-width: 260px;
  margin: 0 auto;
  padding: 18px 48px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s;
}

.meet-monica-btn:hover {
  background: #a87c57;
  color: #fff;
}

/* Block 2: Portrait photo — full bleed edge to edge like reference */
.meet-monica-portrait {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.meet-monica-photo {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.meet-monica-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Block 3: Small square thumb LEFT + Name/Tagline RIGHT */
.meet-monica-namestrip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 48px 32px 64px;
}

.meet-monica-thumb {
  width: 110px;
  height: 170px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  display: block;
}

.meet-monica-nametext {
  flex: 1;
  min-width: 0;
}

.meet-monica-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 2.4rem;
  margin-bottom: 12px;
}

.meet-monica-tagline {
  font-family: 'IvyOra Display', Georgia, serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  line-height: 29px;
  text-transform: none;
}
  align-items: center;
  max-width: 580px;
}

.intro-avatar {
  width: 155px;
  height: 155px;
  object-fit: cover;
  flex-shrink: 0;
}

.intro-text-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
}

.intro-text-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Blockquote / Feature Quote */
.feature-quote {
  text-align: center;
  padding: 80px 32px 90px;
  background: #FAF8F5;
}

.feature-quote .quote-marks {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: clamp(4.5rem, 14vw, 7rem);
  font-weight: 300;
  color: #222222;
  line-height: 0.6;
  display: block;
  margin-bottom: 36px;
  letter-spacing: -0.06em;
}

.feature-quote .quote-text {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 300;
  color: #222222;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-quote .quote-author {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #222222;
  display: block;
}

/* =========================================
   BLOG / POST CARDS
   ========================================= */

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.post-card:hover { transform: translateY(-6px); }

.post-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-card-image img { transform: scale(1.06); }

.post-card-body {
  padding: 28px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.post-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.post-date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: var(--transition);
}

.post-card:hover .post-card-title { color: var(--color-primary); }

.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: var(--transition);
}

.post-read-more:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  gap: 14px;
}

/* =========================================
   SINGLE POST
   ========================================= */

.post-hero {
  height: 65vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.post-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 24px 36px;
  text-align: center;
}

.post-cats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.post-cats-row .post-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border: 1px solid rgba(196,149,106,0.35);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: var(--transition);
}

.post-cats-row .post-category:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--color-secondary);
}

.post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.post-meta-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.post-meta-author {
  font-weight: 600;
  color: var(--color-text);
}

.post-meta-divider {
  opacity: 0.35;
}

.post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

/* ── Post footer strip (tags + sharing) ── */
.post-footer-strip {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
}

.post-tags-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-right: 4px;
}

.post-tag {
  display: inline-block;
  padding: 4px 13px;
  border: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: var(--transition);
  border-radius: 2px;
}

.post-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ── Social sharing row ── */
.post-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 32px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.post-share-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.post-share-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.share-btn.share-fb:hover  { background: #1877F2; border-color: #1877F2; color: white; }
.share-btn.share-tw:hover  { background: #000;    border-color: #000;    color: white; }
.share-btn.share-pi:hover  { background: #E60023; border-color: #E60023; color: white; }
.share-btn.share-wa:hover  { background: #25D366; border-color: #25D366; color: white; }
.share-btn.share-li:hover  { background: #0A66C2; border-color: #0A66C2; color: white; }
.share-btn.share-copy:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: white; }
.share-btn.share-copy.copied { background: #16a34a; border-color: #16a34a; color: white; }

/* ── Author bio card ── */
.post-author-bio {
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.post-author-bio-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 32px;
  background: var(--color-accent);
  border-left: 3px solid var(--color-primary);
  align-items: start;
}

.pab-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.pab-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.pab-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
}

.pab-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.pab-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.pab-bio {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.post-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
  color: #2A2A2A;
}

.post-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  margin: 3rem 0 1.25rem;
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.post-content img {
  width: 100%;
  margin: 2rem 0;
}

.post-content blockquote {
  border-left: 3px solid var(--color-primary);
  margin: 2.5rem 0;
  padding: 20px 32px;
  background: var(--color-accent);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-secondary);
}

.post-content a { color: var(--color-primary); text-decoration: underline; }

/* Comments */
/* =========================================
   REACTIONS & RATINGS
   ========================================= */

.post-engage {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 20px;
}

/* ── Reactions strip ── */
.reactions-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 28px;
}

.reactions-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-right: 4px;
  flex-shrink: 0;
}

.reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 100px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
  white-space: nowrap;
}

.reaction-btn .emoji { font-size: 1rem; line-height: 1; }
.reaction-btn .r-count { font-size: 0.78rem; color: var(--color-text-muted); min-width: 12px; transition: color 0.2s; }

.reaction-btn:hover {
  border-color: var(--color-primary);
  background: rgba(196, 149, 106, 0.06);
  transform: translateY(-2px);
}

.reaction-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.reaction-btn.active .r-count { color: rgba(255,255,255,0.8); }

.reaction-btn:active { transform: scale(0.95); }

/* ── Star Rating ── */
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rating-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.stars-interactive {
  display: flex;
  flex-direction: row-reverse;
  gap: 3px;
}

.stars-interactive input { display: none; }

.stars-interactive label {
  font-size: 1.5rem;
  color: var(--color-border);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}

.stars-interactive label:hover,
.stars-interactive label:hover ~ label,
.stars-interactive input:checked ~ label {
  color: var(--color-primary);
}

.stars-interactive label:hover { transform: scale(1.15); }

.rating-summary {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-summary .avg-score {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.rating-summary .stars-display {
  color: var(--color-primary);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rating-toast {
  font-size: 0.78rem;
  color: var(--color-primary);
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s;
}

.rating-toast.show { opacity: 1; }

/* =========================================
   COMMENTS
   ========================================= */

.comments-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.comments-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 36px;
}

.comments-heading h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.comments-heading .comments-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  border-radius: 100px;
}

/* Individual comment */
.comment {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s;
}

.comment:first-child { border-top: 1px solid var(--color-border); }

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.comment-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.comment-author { font-weight: 600; font-size: 0.88rem; }
.comment-time { font-size: 0.72rem; color: var(--color-text-muted); }
.comment-text { font-size: 0.9rem; line-height: 1.75; color: var(--color-text); }

/* ── Comment Form ── */
.comment-form-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--color-secondary);
}

.comment-form-wrap .cf-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.comment-form-wrap .cf-sub {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}


.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: white;
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* =========================================
   STUDIO GALLERY
   ========================================= */

.studio-gallery-section {
  background: #000;
  padding-bottom: 80px;
}

.studio-gallery-heading {
  padding: 64px 28px 48px;
  text-align: center;
}

.studio-gallery-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0;
}

.gallery-numbered {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
}

.gallery-item img {
  width: calc(100% - 40px);
  margin: 0 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.gallery-number {
  position: absolute;
  bottom: 0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 20vw, 9rem);
  font-style: italic;
  font-weight: 700;
  color: white;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

/* =========================================
   HOMEPAGE — JOURNAL TITLE
   ========================================= */

.home-journal-title {
  font-size: clamp(2rem, 8vw, 3.5rem) !important;
  text-transform: uppercase;
  font-style: normal !important;
  line-height: 1.1;
}

.home-journal-title em {
  font-style: italic;
  text-transform: lowercase;
}

.home-all-entries-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 16px 0 48px;
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: 2px;
}

.home-all-entries-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* =========================================
   HOMEPAGE — JOURNAL POSTS (full-width stack)
   ========================================= */

.home-posts-stack {
  display: flex;
  flex-direction: column;
}

.home-post-category {
  display: block;
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.home-post-item {
  margin-bottom: 64px;
}

.home-post-image {
  display: block;
  overflow: hidden;
  margin-bottom: 28px;
}

.home-post-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-post-item:hover .home-post-image img {
  transform: scale(1.02);
}

.home-post-text {
  text-align: center;
}

.home-post-title {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #222222;
}

.home-post-title a { color: #222222; text-decoration: none; }
.home-post-title a:hover { color: var(--color-primary); }

.home-post-excerpt {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.75;
  text-align: center;
}

/* =========================================
   HOMEPAGE — SHOP SECTION
   ========================================= */

.home-shop-heading {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 13vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.home-shop-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 36px;
  display: block;
}

.home-shop-image {
  display: block;
  overflow: hidden;
  margin-bottom: 28px;
}

.home-shop-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.home-shop-product:hover .home-shop-image img {
  transform: scale(1.02);
}

.home-shop-info { text-align: center; }

.home-shop-name {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #222222;
  line-height: 1.2;
  margin-bottom: 12px;
}

.home-shop-name a { color: #222222; text-decoration: none; }
.home-shop-name a:hover { color: var(--color-primary); }

.home-shop-price {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #222222;
}

.gallery-number {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 20vw, 9rem);
  font-style: italic;
  font-weight: 400;
  color: white;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

/* =========================================
   SHOP
   ========================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 48px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--color-accent);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-card-body {
  padding: 20px 0;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
  transition: var(--transition);
}

.product-card:hover .product-card-name { color: var(--color-primary); }

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-price .original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-right: 8px;
}

.product-price .sale { color: var(--color-primary); }

.product-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* =========================================
   NEWSLETTER
   ========================================= */

/* Newsletter styles moved to footer — see .footer-newsletter */

/* =========================================
   FOOTER — minimal white
   ========================================= */

.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

/* Newsletter block */
.footer-newsletter {
  padding: 80px 24px 64px;
  text-align: center;
}

.footer-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.footer-newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 14px;
}

.footer-newsletter-sub {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.footer-newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.footer-newsletter-fields input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #111;
  border-bottom: none;
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text);
  outline: none;
  font-weight: 500;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.footer-newsletter-fields input:last-child {
  border-bottom: 1px solid #111;
}

.footer-newsletter-fields input::placeholder {
  color: #888;
  font-weight: 400;
}

.footer-newsletter-fields input:focus {
  border-color: var(--color-primary);
  z-index: 1;
  position: relative;
}

.footer-newsletter-btn {
  width: 100%;
  padding: 18px;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 0;
  font-family: inherit;
}

.footer-newsletter-btn:hover {
  background: var(--color-primary);
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  text-align: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social a:hover { color: var(--color-primary); }

/* =========================================
   ADMIN STYLES
   ========================================= */

/* =========================================
   ADMIN — Bespoke, mobile-first
   ========================================= */

/* ── Variables ── */
:root {
  --adm-bg:       #F4F1EE;
  --adm-surface:  #FFFFFF;
  --adm-sidebar:  #141414;
  --adm-gold:     #C4956A;
  --adm-gold-dim: rgba(196,149,106,0.12);
  --adm-border:   #E5DFD8;
  --adm-text:     #1A1A1A;
  --adm-muted:    #8A7E74;
  --adm-danger:   #8B2020;
  --adm-success:  #2D6A4F;
}

/* ── Body ── */
.admin-body {
  background: var(--adm-bg);
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--adm-text);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Layout ── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  max-width: 100vw;
}

/* ── Sidebar ── */
.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--adm-sidebar);
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}

.admin-sidebar::-webkit-scrollbar { width: 3px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* ── Sidebar Logo ── */
.admin-logo {
  padding: 24px 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.admin-logo img {
  display: block;
  max-height: 38px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 6px;
}

.admin-logo h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.admin-logo span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adm-gold);
  margin-top: 5px;
  font-weight: 500;
}

/* Topbar logo — only visible on mobile when sidebar is hidden */
.adm-topbar-logo {
  display: none;
}
@media (max-width: 768px) {
  .adm-topbar-logo {
    display: block !important;
    height: 24px;
    max-height: 24px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    flex-shrink: 0;
  }
}

/* ── Nav ── */
.admin-nav {
  flex: 1;
  padding: 16px 0 24px;
  display: flex;
  flex-direction: column;
}

.admin-nav-label {
  padding: 18px 22px 5px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.01em;
}

.admin-nav-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.18s;
}

.admin-nav-item:hover {
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.04);
}

.admin-nav-item:hover svg { opacity: 1; }

.admin-nav-item.active {
  color: var(--adm-gold);
  background: var(--adm-gold-dim);
}

.admin-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--adm-gold);
}

.admin-nav-item.active svg { opacity: 1; color: var(--adm-gold); }

/* Nav footer */
.admin-nav-footer {
  margin-top: auto;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Main area ── */
.admin-main {
  flex: 1;
  margin-left: 240px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  width: calc(100% - 240px);
  box-sizing: border-box;
}

/* ── Top bar ── */
.admin-topbar {
  background: var(--adm-surface);
  border-bottom: 1px solid var(--adm-border);
  height: 60px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 240px;
  right: 0;
  z-index: 150;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  max-width: calc(100vw - 240px);
}

.admin-topbar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--adm-text);
  white-space: nowrap;
}

/* Mobile menu toggle — hidden on desktop */
.admin-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.admin-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--adm-text);
  transition: transform 0.25s, opacity 0.25s;
}

.admin-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.admin-menu-toggle.open span:nth-child(2) { opacity: 0; }
.admin-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  min-width: 0;
  overflow: hidden;
}

.admin-user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--adm-text);
  min-width: 0;
  overflow: hidden;
}

.admin-user-badge strong {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* ── Content ── */
.admin-content {
  padding: 28px;
  padding-top: 88px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Inner page wrapper — constrains all page content to a readable max-width */
.admin-content > *:not(.stats-grid):not(.admin-table-wrap):not(.admin-tabs):not(.admin-toolbar) {
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.stat-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--adm-gold), transparent);
}

.stat-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  color: var(--adm-gold);
  opacity: 0.18;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--adm-text);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--adm-muted);
}

/* ── Cards ── */
.admin-card {
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  padding: 24px 28px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.admin-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--adm-text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--adm-border);
  letter-spacing: 0.02em;
}

/* ── Tables ── */
.admin-table-wrap {
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  min-width: 500px;
}

.admin-table thead {
  border-bottom: 1px solid var(--adm-border);
}

.admin-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--adm-muted);
  background: #FAFAF8;
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--adm-border);
  vertical-align: middle;
  color: var(--adm-text);
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FDFCFB; }

/* ── Table actions ── */
.table-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.table-btn {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 11px;
  border: 1px solid var(--adm-border);
  background: var(--adm-surface);
  color: var(--adm-text);
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.18s, color 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.table-btn:hover { border-color: var(--adm-gold); color: var(--adm-gold); }
.table-btn.danger:hover { border-color: var(--adm-danger); color: var(--adm-danger); }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-success { background: #EEFAF4; color: #1A5C3A; }
.badge-warning { background: #FEF9EC; color: #7A4F00; }
.badge-danger  { background: #FEF2F2; color: var(--adm-danger); }
.badge-info    { background: #EEF4FF; color: #1E3A8A; }
.badge-neutral { background: #F3F4F6; color: #4B5563; }

/* ── Alerts ── */
.alert {
  padding: 12px 16px;
  border-left: 3px solid;
  font-size: 0.86rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.alert-success { background: #EEFAF4; border-color: #10B981; color: #065F46; }
.alert-error   { background: #FEF2F2; border-color: #EF4444; color: #7F1D1D; }
.alert-warning { background: #FEF9EC; border-color: #F59E0B; color: #78350F; }
.alert-info    { background: #EEF4FF; border-color: #3B82F6; color: #1E3A8A; }

/* ── Forms ── */
.admin-form-group { margin-bottom: 20px; }

.admin-form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--adm-text);
  margin-bottom: 7px;
}

.admin-form-group input[type="text"],
.admin-form-group input[type="email"],
.admin-form-group input[type="password"],
.admin-form-group input[type="number"],
.admin-form-group input[type="url"],
.admin-form-group input[type="tel"],
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--adm-border);
  background: #FDFCFB;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--adm-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
  border-color: var(--adm-gold);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.1);
  background: #fff;
}

.admin-form-group textarea { resize: vertical; min-height: 120px; }

.admin-form-group .help-text {
  font-size: 0.75rem;
  color: var(--adm-muted);
  margin-top: 5px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Color input */
.color-input-wrap { display: flex; gap: 10px; align-items: center; }
.color-input-wrap input[type="text"] { flex: 1; }
.color-preview {
  width: 42px; height: 42px;
  border: 1px solid var(--adm-border);
  flex-shrink: 0;
  transition: background 0.2s;
}

/* ── Sidebar overlay (mobile) ── */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 190;
  backdrop-filter: blur(2px);
}

.admin-sidebar-overlay.visible { display: block; }

/* ── Responsive split layouts (categories, products) ── */
.admin-split-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.admin-split-layout--reverse {
  grid-template-columns: 1fr 280px;
}

.admin-split-layout > *,
.admin-split-layout--reverse > * {
  min-width: 0;
  box-sizing: border-box;
}

/* Posts/comments toolbar wrapping on mobile */
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.admin-toolbar-left, .admin-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Tab filters */
.admin-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.admin-tab {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--adm-border);
  color: var(--adm-muted);
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
  letter-spacing: 0.05em;
}

.admin-tab.active {
  border-color: var(--adm-gold);
  color: var(--adm-gold);
}

@media (max-width: 1024px) {
  .admin-split-layout,
  .admin-split-layout--reverse {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 16px; }
  .stat-value { font-size: 2rem; }
  .admin-card { padding: 16px 14px; margin-bottom: 14px; }
  .admin-table-wrap { margin: 0 -16px; border-left: none; border-right: none; }
  .admin-topbar h2 { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  .admin-split-layout,
  .admin-split-layout--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .admin-form-row { grid-template-columns: 1fr; gap: 0; }
  .admin-content { padding: 12px; padding-top: 68px; overflow-x: hidden; width: 100%; box-sizing: border-box; }
  .settings-tabs { gap: 0; }
  .table-actions { flex-wrap: wrap; gap: 6px; }
  .admin-form-group { margin-bottom: 14px; }
  form .admin-split-layout > div:last-child { order: -1; }
  /* Hide user name/role text on small screens, keep avatar only */
  .admin-user-badge strong,
  .admin-user-badge .badge { display: none; }
  .admin-topbar-actions { gap: 8px; }
}

/* ── Settings page ── */
.settings-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--adm-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.settings-tabs::-webkit-scrollbar { display: none; }

.settings-tab-link {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: var(--adm-muted);
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s;
}
.settings-tab-link:hover { color: var(--adm-text); }
.settings-tab-link.active { color: var(--adm-gold); border-color: var(--adm-gold); }

.settings-slides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .settings-slides-grid { grid-template-columns: 1fr 1fr; }
  .settings-tab-link { padding: 10px 12px; font-size: 0.65rem; }
}

/* =========================================
   INSTALLER
   ========================================= */

.install-body {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.install-container {
  width: 100%;
  max-width: 600px;
  padding: 24px;
}

.install-header {
  text-align: center;
  margin-bottom: 48px;
}

.install-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}

.install-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.install-card {
  background: white;
  padding: 48px;
}

.install-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.install-card p.sub {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* Step Indicator */
.steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.steps-indicator::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--color-border);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.step-item.active .step-dot { background: var(--color-primary); color: white; }
.step-item.done .step-dot { background: var(--color-secondary); color: white; }

.step-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.step-item.active .step-label { color: var(--color-primary); }
.step-item.done .step-label { color: var(--color-secondary); }

.install-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.install-footer a { color: var(--color-primary); }

/* =========================================
   UTILITIES
   ========================================= */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-muted  { color: var(--color-text-muted); }
.text-white  { color: white; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-fadeIn   { animation: fadeIn 0.6s ease forwards; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Admin mobile — sidebar slides in via JS toggle */
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; width: 100%; max-width: 100vw; }
  .admin-menu-toggle { display: flex; }
  .admin-content { padding: 16px; padding-top: 72px; overflow-x: hidden; width: 100%; box-sizing: border-box; }
  .admin-topbar { padding: 0 16px; height: 56px; left: 0; right: 0; max-width: 100vw; width: 100%; box-sizing: border-box; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .admin-form-row { grid-template-columns: 1fr; }
  .admin-split-layout,
  .admin-split-layout--reverse {
    grid-template-columns: 1fr;
  }

  /* Hide desktop nav links on tablet & mobile, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-slide-content { padding: 0 28px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  
  .posts-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }

  /* Post page responsive */
  .post-author-bio-inner { grid-template-columns: 60px 1fr; gap: 16px; padding: 20px 20px; }
  .pab-avatar, .pab-avatar img, .pab-avatar-placeholder { width: 60px; height: 60px; }
  .pab-avatar-placeholder { font-size: 1.4rem; }
  .post-share-row { padding: 16px 0 24px; }
  .post-footer-strip { padding: 0 16px; }
  .post-author-bio { padding: 0 16px; }

  /* Reactions & rating responsive */
  .reactions-strip { gap: 6px; padding: 18px 0; }
  .reaction-btn { padding: 6px 10px; font-size: 0.78rem; }
  .reaction-btn .emoji { font-size: 0.9rem; }
  .rating-wrap { gap: 10px; }
  .stars-interactive label { font-size: 1.3rem; }
  .post-engage { padding: 0 16px 16px; }
  .comments-section { padding: 0 16px 60px; }
  .comment-form-wrap { padding-top: 28px; }
  
  .intro-strip { grid-template-columns: 1fr; text-align: center; }
  .intro-avatar { margin: 0 auto; }
  
  .install-card { padding: 28px 24px; }
  
  .admin-form-row { grid-template-columns: 1fr; }

  /* Meet Monica — mobile fixes */
  .meet-monica-text {
    padding: 48px 24px 40px;
  }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-slide-content { padding: 60px 24px 64px; }
  .hero-title { font-size: 2.8rem; }
  
  .footer-newsletter { padding: 60px 20px 48px; }
  .footer-newsletter-fields input { padding: 16px 16px; }
  .footer-newsletter-btn { padding: 16px; }
}

/* =========================================
   LOADING SCREEN
   ========================================= */

.site-loader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =========================================
   CART SIDEBAR
   ========================================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #fff;
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

/* Header */
.cart-header {
  padding: 0 28px;
  height: 72px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
}

.cart-close {
  cursor: pointer;
  padding: 8px;
  color: #888;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.cart-close:hover { color: #111; }

/* Items area */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
  text-align: center;
  padding: 40px 28px;
  color: #bbb;
}

.cart-empty svg {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  opacity: 0.35;
  display: block;
}

.cart-empty p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #aaa;
}

/* Individual cart item */
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item img {
  width: 88px;
  height: 110px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.cart-item > div {
  padding: 16px 20px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  font-weight: 400;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.qty-btn:hover { border-color: #111; color: #111; }

.qty-val {
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: #111;
}

.cart-remove {
  margin-left: auto;
  font-size: 0.68rem;
  color: #bbb;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.cart-remove:hover { color: #E53E3E; }

/* Footer */
.cart-footer {
  border-top: 1px solid #e8e8e8;
  padding: 24px 28px 28px;
  flex-shrink: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total span:first-child {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}

.cart-total span:last-child {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
}

/* Checkout button in cart */
.cart-footer .btn {
  width: 100%;
  justify-content: center;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  padding: 18px 28px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}

.cart-footer .btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  padding: 16px 0;
}

.breadcrumbs a { color: var(--color-text-muted); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text); }

/* Pagination */
.ess-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px 0 40px;
}

.ess-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  transition: var(--transition);
}

.ess-pagination li a:hover,
.ess-pagination li a.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.ess-pagination li a.prev,
.ess-pagination li a.next { font-size: 1.1rem; }

/* Search bar */
.search-bar {
  position: relative;
  max-width: 480px;
}

.search-bar input {
  width: 100%;
  padding: 14px 52px 14px 20px;
  border: 1px solid var(--color-border);
  background: white;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-bar input:focus { border-color: var(--color-primary); }

.search-bar button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 16px;
  background: var(--color-primary);
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover { background: var(--color-secondary); }

/* Print */
@media print {
  .site-nav, .site-footer, .cart-sidebar { display: none; }
}

/* ============================================================
   INSTALLER STYLES
   ============================================================ */
.install-body {
  background: #F5F0EB;
  min-height: 100vh;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #1A1A1A;
  padding: 40px 16px 60px;
}

.install-container {
  max-width: 680px;
  margin: 0 auto;
}

.install-header {
  text-align: center;
  margin-bottom: 36px;
}

.install-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1A1A1A;
}

.install-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-top: 6px;
}

.install-card {
  background: white;
  padding: 48px;
  margin-bottom: 24px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.install-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.install-card .sub {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.install-footer {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 24px;
}

.install-footer a {
  color: #C4956A;
}

/* Steps Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 20px);
  width: 80px;
  height: 1px;
  background: #DDD;
}

.step-item:not(:last-child).done::after,
.step-item:not(:last-child).active::after {
  background: #C4956A;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EEE;
  color: #999;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.step-item.active .step-dot {
  background: #C4956A;
  color: white;
}

.step-item.done .step-dot {
  background: #10B981;
  color: white;
}

.step-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-top: 4px;
}

.step-item.active .step-label {
  color: #C4956A;
  font-weight: 600;
}

.step-item {
  padding: 0 40px;
}

/* Alert */
.alert {
  padding: 14px 18px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.alert-error {
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
  color: #991B1B;
}

.alert-success {
  background: #F0FDF4;
  border-left: 4px solid #10B981;
  color: #065F46;
}

.alert-warning {
  background: #FFFBEB;
  border-left: 4px solid #F59E0B;
  color: #92400E;
}

.alert-danger {
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
  color: #991B1B;
}

.alert-info {
  background: #EFF6FF;
  border-left: 4px solid #3B82F6;
  color: #1E40AF;
}

/* Admin-specific */
.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.color-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-input {
  flex: 1;
}

.color-preview {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: background 0.3s;
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-success { background: #D1FAE5; color: #065F46; }
.badge-danger  { background: #FEE2E2; color: #991B1B; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-neutral { background: #F3F4F6; color: #374151; }
.badge-info    { background: #DBEAFE; color: #1E40AF; }

/* Table actions */
.table-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.table-btn {
  background: none;
  border: 1px solid var(--color-border, #E5E5E5);
  padding: 4px 10px;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.table-btn:hover {
  border-color: var(--color-primary, #C4956A);
  color: var(--color-primary, #C4956A);
}

.table-btn.danger:hover {
  border-color: #EF4444;
  color: #EF4444;
}

/* Admin table */
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border, #E5E5E5);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-accent, #F5F0EB);
  border-bottom: 1px solid var(--color-border, #E5E5E5);
  color: var(--color-text-muted, #888);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border, #E5E5E5);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(196,149,106,0.04);
}

/* Help text */
.help-text {
  font-size: 0.75rem;
  color: var(--color-text-muted, #888);
  margin-top: 5px;
  display: block;
}

/* Admin forms */
.admin-form-group {
  margin-bottom: 20px;
}

.admin-form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-muted, #888);
}

.admin-form-group input[type="text"],
.admin-form-group input[type="email"],
.admin-form-group input[type="url"],
.admin-form-group input[type="password"],
.admin-form-group input[type="number"],
.admin-form-group input[type="tel"],
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border, #E5E5E5);
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  background: white;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.admin-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
  border-color: var(--color-primary, #C4956A);
}

.admin-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Section label */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary, #C4956A);
  color: white;
}

.btn-primary:hover {
  background: #B07D52;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,149,106,0.3);
}

.btn-dark {
  background: var(--color-secondary, #1A1A1A);
  color: white;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary, #1A1A1A);
  border: 1px solid var(--color-border, #E5E5E5);
}

.btn-outline:hover {
  border-color: var(--color-secondary, #1A1A1A);
  background: var(--color-secondary, #1A1A1A);
  color: white;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.82rem;
  border: 1px solid var(--color-border, #E5E5E5);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.pagination a:hover {
  border-color: var(--color-primary, #C4956A);
  color: var(--color-primary, #C4956A);
}

.pagination .current {
  background: var(--color-primary, #C4956A);
  color: white;
  border-color: var(--color-primary, #C4956A);
}

/* Admin card */
.admin-card {
  background: var(--adm-surface, white);
  padding: 24px 28px;
  margin-bottom: 20px;
  border: 1px solid var(--adm-border, var(--color-border, #E5E5E5));
  width: 100%;
  box-sizing: border-box;
}

.admin-card h3 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--adm-text, inherit);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--adm-border, var(--color-border, #E5E5E5));
  letter-spacing: 0.02em;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

/* CSRF field helper */
input[name="csrf_token"] { display: none; }

/* =========================================
   ABOUT PAGE
   ========================================= */

/* Nav spacer + hero wrapper */
/* =========================================
   ABOUT PAGE
   ========================================= */

/* 1. HERO WRAP — beige background, full width, sits below fixed nav */
.about-hero-wrap {
  margin-top: 72px;
  background: #EDE8E0;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
}

/* 2. "ABOUT" title — sits above & overlaps into the top of the image */
.about-hero-title-overlay {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: -0.45em;
  pointer-events: none;
  line-height: 1;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 18vw, 8rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
  display: inline-block;
}

/* 3. Image block — centred with visible beige margins on each side */
.about-hero-img-block {
  position: relative;
  width: calc(100% - 80px);
  max-width: 500px;
  margin: 0 auto;
  z-index: 1;
}

.about-hero-img-block--empty {
  min-height: 420px;
  background: rgba(0,0,0,0.05);
}

.about-hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* 3. Narrow content column for all text sections */
.about-content-wrap {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

/* 4. Eyebrow label — small spaced caps, centred, muted */
.about-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin: 0 0 32px;
}

/* 5. Intro section — white bg, generous top padding */
.about-intro-section {
  padding: 60px 0 48px;
  background: #fff;
}

/* 6. Big heading — IvyOra Display italic, large, left aligned */
.about-heading-large {
  font-family: 'IvyOra Display', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: #111;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 40px;
  text-align: left;
}

/* Second block heading — same italic style */
.about-heading-large--serif {
  font-family: 'IvyOra Display', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  color: #111;
}

/* 7. Body text — Hanken Grotesk, light, left aligned */
.about-body-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #222;
  text-align: left;
}

.about-body-text p {
  margin: 0 0 24px;
}

.about-body-text p:last-child {
  margin-bottom: 0;
}

/* 8. Secondary photo — same side margins as content column, not full bleed */
.about-photo-section {
  width: 100%;
  background: #fff;
  padding: 40px 0 0;
}

.about-photo-img {
  display: block;
  width: calc(100% - 48px);
  max-width: 660px;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
}

/* 9. Second text section */
.about-second-section {
  padding: 64px 0 72px;
  background: #fff;
}

/* =========================================
   ABOUT PAGE — RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .about-hero-wrap {
    padding-top: 44px;
  }

  .about-hero-img-block {
    width: calc(100% - 48px);
  }

  .about-hero-title {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .about-content-wrap {
    padding: 0 20px;
  }

  .about-heading-large {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 28px;
  }

  .about-intro-section {
    padding: 44px 0 36px;
  }

  .about-second-section {
    padding: 44px 0 56px;
  }

  .about-photo-section {
    padding: 28px 0 0;
  }
}

/* =========================================
   BLOG PAGE — SLEEK & BESPOKE
   ========================================= */

/* Blog Hero */
.blog-hero {
  background: var(--color-secondary);
  padding: 130px 0 56px;
  margin-top: 72px;
  text-align: center;
  position: relative;
}

.blog-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-hero-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.blog-hero-title em {
  font-style: italic;
  color: var(--color-primary);
  text-transform: lowercase;
}

.blog-hero-sub {
  margin-top: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.blog-hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* Blog Filter Bar */
.blog-filter-bar {
  background: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  /* Not sticky — sits naturally below hero so content flows underneath properly */
}

.blog-filter-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 60px;
  padding: 0;
  /* Categories fill available width, search anchored right */
}

/* Horizontal scrolling category strip — never wraps */
.blog-cats {
  display: flex;
  align-items: stretch;
  flex: 1;
  flex-wrap: nowrap;        /* CRITICAL: always one row */
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Fade hint on right edge to signal scrollability */
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.blog-cats::-webkit-scrollbar { display: none; }

.blog-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 60px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-cat-link:hover { color: var(--color-text); border-bottom-color: var(--color-border); }
.blog-cat-link.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.blog-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.55rem;
  border-radius: 9px;
  line-height: 1;
  font-weight: 700;
}

/* Search — compact icon-only on mobile, expands on desktop */
.blog-search-form {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--color-border);
  background: transparent;
  flex-shrink: 0;
  height: 60px;
  transition: background 0.2s;
}
.blog-search-form:focus-within { background: #fff; }

.blog-search-input {
  border: none;
  background: transparent;
  padding: 0 12px;
  font-size: 0.82rem;
  color: var(--color-text);
  outline: none;
  width: 170px;
  height: 100%;
}

.blog-search-input::placeholder { color: var(--color-text-muted); }

.blog-search-btn {
  padding: 0 16px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  height: 100%;
}
.blog-search-btn:hover { color: var(--color-primary); }

/* Blog Posts Section */
.blog-posts-section {
  padding: 72px 0 100px;
}

/* Featured Post */
.blog-featured-post {
  margin-bottom: 72px;
}

.blog-featured-image {
  display: block;
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-featured-image:hover img { transform: scale(1.04); }

.blog-featured-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-accent);
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.blog-featured-meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  color: #fff;
}

.blog-featured-cat {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.blog-featured-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 14px;
}

.blog-featured-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 22px;
}

.blog-featured-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-border);
}

/* Blog Divider */
.blog-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 56px;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-divider::before, .blog-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Blog Grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}

.blog-posts-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.blog-post-card {
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--color-accent);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-post-card:hover .blog-card-image img { transform: scale(1.07); }

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-accent);
}

.blog-card-body {
  padding: 24px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.blog-card-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.blog-post-date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.blog-post-by {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}
.blog-card-title a { transition: color 0.25s; }
.blog-post-card:hover .blog-card-title a { color: var(--color-primary); }

.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.blog-read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.blog-read-more-link:hover { color: var(--color-primary); }

.blog-read-more-sm {
  margin-top: auto;
}

/* Featured post CTA */
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.blog-featured-image:hover .blog-featured-cta { color: var(--color-primary); border-color: var(--color-primary); }

/* Blog Empty State */
.blog-empty {
  text-align: center;
  padding: 100px 0 80px;
  max-width: 420px;
  margin: 0 auto;
}

.blog-empty-icon {
  color: var(--color-border);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.blog-empty-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.blog-empty-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured-meta-overlay { padding: 32px 32px; }
  .blog-featured-title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .blog-hero { padding: 110px 0 48px; }
  .blog-filter-inner { gap: 0; }
  .blog-cats { -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%); mask-image: linear-gradient(to right, black 80%, transparent 100%); }
  .blog-cat-link { padding: 0 14px; font-size: 0.6rem; }
  .blog-search-input { width: 120px; }
  .blog-search-input::placeholder { font-size: 0.75rem; }
  .blog-posts-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-featured-image { aspect-ratio: 3/2; }
  .blog-featured-meta-overlay { padding: 24px 20px; }
  .blog-featured-title { font-size: 1.5rem; }
  .blog-featured-excerpt { display: none; }
}


/* =========================================
   BLOG — NEW EDITORIAL LAYOUT (bx-*)
   ========================================= */

/* Shared tokens */
.bx-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.bx-tag--sm { font-size: 0.55rem; letter-spacing: 0.22em; }
.bx-time {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.bx-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.22s;
}
.bx-link:hover { color: var(--color-primary); }
.bx-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.bx-hero__frame:hover .bx-cta { color: var(--color-primary); border-color: var(--color-primary); }

/* ── Hero Post ──────────────────────────────────────────────────────── */
.bx-hero {
  margin-bottom: 64px;
}
.bx-hero__frame {
  display: block;
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
}
@media (max-width: 768px) { .bx-hero__frame { aspect-ratio: 4/3; } }

.bx-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bx-hero__img--empty { background: var(--color-accent); }
.bx-hero__frame:hover .bx-hero__img { transform: scale(1.04); }

.bx-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.88) 0%,
    rgba(10,8,6,0.35) 45%,
    transparent 100%
  );
}
.bx-hero__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px 52px;
  color: #fff;
}
.bx-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.bx-hero__eyebrow .bx-tag { color: var(--color-primary); }
.bx-hero__eyebrow .bx-time { color: rgba(255,255,255,0.6); }
.bx-hero__date { font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.bx-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 16px;
  color: #fff;
}
.bx-hero__excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 24px;
}
.bx-hero__index {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}

/* ── Secondary Pair ─────────────────────────────────────────────────── */
.bx-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 72px;
}
@media (max-width: 640px) {
  .bx-pair { grid-template-columns: 1fr; gap: 40px; }
}
.bx-pair__card { display: flex; flex-direction: column; }
.bx-pair__frame {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-accent);
  margin-bottom: 22px;
}
.bx-pair__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bx-pair__img--empty { background: var(--color-accent); }
.bx-pair__frame:hover .bx-pair__img { transform: scale(1.06); }
.bx-pair__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, transparent 60%);
  transition: opacity 0.4s;
}
.bx-pair__frame:hover .bx-pair__veil { opacity: 0.6; }
.bx-pair__num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.bx-pair__body { flex: 1; display: flex; flex-direction: column; }
.bx-pair__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.bx-pair__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 12px;
}
.bx-pair__title a { transition: color 0.22s; }
.bx-pair__card:hover .bx-pair__title a { color: var(--color-primary); }
.bx-pair__excerpt {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  flex: 1;
}

/* ── Blog Divider ───────────────────────────────────────────────────── */
.bx-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 48px;
  color: var(--color-text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}
.bx-divider::before, .bx-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ── Editorial List ─────────────────────────────────────────────────── */
.bx-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bx-list__item {
  display: grid;
  grid-template-columns: 220px 1fr 40px;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--color-border);
  position: relative;
  transition: background 0.2s;
}
.bx-list__item:last-child { border-bottom: 1px solid var(--color-border); }

.bx-list__thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-accent);
  flex-shrink: 0;
}
.bx-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bx-list__thumb-empty { width: 100%; height: 100%; background: var(--color-accent); }
.bx-list__item:hover .bx-list__thumb img { transform: scale(1.07); }

.bx-list__body { display: flex; flex-direction: column; justify-content: center; }
.bx-list__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.bx-list__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}
.bx-list__title a { transition: color 0.22s; }
.bx-list__item:hover .bx-list__title a { color: var(--color-primary); }
.bx-list__excerpt {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.bx-list__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-border);
  font-weight: 400;
  line-height: 1;
  user-select: none;
  align-self: center;
  transition: color 0.25s;
}
.bx-list__item:hover .bx-list__num { color: var(--color-primary); opacity: 0.35; }

/* ── Filtered / Search Grid ─────────────────────────────────────────── */
.bx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}
.bx-grid__card { display: flex; flex-direction: column; }
.bx-grid__frame {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-accent);
  margin-bottom: 22px;
}
.bx-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bx-grid__img--empty { background: var(--color-accent); }
.bx-grid__card:hover .bx-grid__img { transform: scale(1.06); }
.bx-grid__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.bx-grid__card:hover .bx-grid__shimmer { opacity: 1; }
.bx-grid__body { flex: 1; display: flex; flex-direction: column; }
.bx-grid__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.bx-grid__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}
.bx-grid__title a { transition: color 0.22s; }
.bx-grid__card:hover .bx-grid__title a { color: var(--color-primary); }
.bx-grid__excerpt {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  flex: 1;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bx-list__item { grid-template-columns: 180px 1fr 32px; gap: 24px; }
  .bx-grid { grid-template-columns: repeat(2, 1fr); }
  .bx-hero__body { padding: 32px 36px; }
  .bx-hero__index { font-size: 4rem; }
}
@media (max-width: 768px) {
  .bx-hero__body { padding: 24px 20px; }
  .bx-hero__excerpt { display: none; }
  .bx-hero__index { display: none; }
  .bx-list__item { grid-template-columns: 130px 1fr; gap: 18px; }
  .bx-list__num { display: none; }
  .bx-list__item { padding: 28px 0; }
  .bx-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .bx-list__item { grid-template-columns: 100px 1fr; gap: 14px; }
}


/* =========================================
   SHOP PAGE — SLEEK & BESPOKE
   ========================================= */

/* Shop Hero */
.shop-hero {
  background: var(--color-secondary);
  padding: 130px 0 56px;
  margin-top: 72px;
  text-align: center;
  position: relative;
}

.shop-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-hero-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.shop-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.shop-hero-title em {
  font-style: italic;
  color: var(--color-primary);
}

.shop-hero-sub {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

.shop-hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* Shop Filter Bar */
.shop-filter-bar {
  background: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
}

.shop-filter-inner {
  display: flex;
  align-items: stretch;
  min-height: 60px;
}

/* Horizontal scrolling categories */
.shop-cats {
  display: flex;
  align-items: stretch;
  flex: 1;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.shop-cats::-webkit-scrollbar { display: none; }

.shop-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 60px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop-cat-link:hover { color: var(--color-text); border-bottom-color: var(--color-border); }
.shop-cat-link.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.shop-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.55rem;
  border-radius: 9px;
  font-weight: 700;
}

/* Sort form */
.shop-sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-left: 1px solid var(--color-border);
  flex-shrink: 0;
}

.shop-sort-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.shop-sort-select {
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 7px 12px;
  font-size: 0.78rem;
  color: var(--color-text);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}
.shop-sort-select:focus { border-color: var(--color-primary); }

/* Products section */
.shop-products-section {
  padding: 60px 0 100px;
}

.shop-count {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Products grid */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

/* Product card */
.shop-product-card {
  display: flex;
  flex-direction: column;
}

.shop-card-image {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--color-accent);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-product-card:hover .shop-card-image img { transform: scale(1.06); }

.shop-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

/* Badge */
.shop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
}

.shop-badge--featured {
  background: var(--color-secondary);
}

/* Card body */
.shop-card-body {
  padding: 20px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-card-cat {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.shop-card-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  flex: 1;
}
.shop-card-name a { transition: color 0.25s; }
.shop-product-card:hover .shop-card-name a { color: var(--color-primary); }

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.shop-price-regular {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.shop-price-original {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-family: var(--font-heading);
}

.shop-price-sale {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

/* Add to cart button */
.shop-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  background: none;
  border: 1px solid var(--color-text);
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.shop-add-btn:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

/* Shop Empty State */
.shop-empty {
  text-align: center;
  padding: 100px 0 80px;
  max-width: 420px;
  margin: 0 auto;
}

.shop-empty-icon {
  color: var(--color-border);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.shop-empty-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.shop-empty-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Shop Responsive */
@media (max-width: 1024px) {
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

@media (max-width: 768px) {
  .shop-hero { padding: 110px 0 48px; }
  .shop-sort-form { padding: 0 14px; gap: 8px; }
  .shop-sort-label { display: none; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .shop-card-name { font-size: 1.1rem; }
  .shop-add-btn { font-size: 0.58rem; padding: 8px 10px; }
}

@media (max-width: 480px) {
  .shop-products-grid { grid-template-columns: 1fr; }
}

/* =========================================
   COOKIE CONSENT BAR
   ========================================= */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-secondary);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}

.cookie-bar--visible {
  transform: translateY(0);
}

.cookie-bar--hidden {
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 1, 1);
}

.cookie-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar-text {
  flex: 1;
  min-width: 200px;
}

.cookie-bar-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

.cookie-bar-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 24px;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.2);
}

.cookie-btn--decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.cookie-btn--accept {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.cookie-btn--accept:hover {
  background: #a87c57;
  border-color: #a87c57;
}

@media (max-width: 480px) {
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-bar-actions { width: 100%; justify-content: flex-end; }
}

/* =========================================
   PRIVACY POLICY PAGE
   ========================================= */

.privacy-hero {
  background: var(--color-secondary);
  padding: 130px 0 56px;
  margin-top: 72px;
  text-align: center;
  position: relative;
}

.privacy-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-hero-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.privacy-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.privacy-hero-title em {
  font-style: italic;
  color: var(--color-primary);
}

.privacy-hero-updated {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

.privacy-hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* Content */
.privacy-section {
  padding: 80px 0 120px;
  background: #fff;
}

.privacy-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.privacy-intro {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.privacy-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.privacy-block:last-child {
  border-bottom: none;
}

.privacy-block-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.privacy-block-content {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .privacy-container { padding: 0 20px; }
  .privacy-hero { padding: 110px 0 48px; }
  .privacy-block { padding: 32px 0; }
}

/* ─── Admin Toggle Switch ────────────────────────────────────── */
.ess-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ess-toggle-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--adm-text);
  letter-spacing: 0.01em;
}

.ess-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.ess-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ess-toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: var(--adm-border);
  border: 1px solid var(--adm-border);
  transition: background 0.22s ease, border-color 0.22s ease;
  position: relative;
}

.ess-toggle-thumb {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ess-toggle input[type="checkbox"]:checked + .ess-toggle-track {
  background: var(--adm-gold);
  border-color: var(--adm-gold);
}

.ess-toggle input[type="checkbox"]:checked + .ess-toggle-track .ess-toggle-thumb {
  transform: translateX(20px);
}

.ess-toggle:hover .ess-toggle-track {
  border-color: var(--adm-gold);
}
/* ─────────────────────────────────────────────────────────────── */

/* =========================================
   BLOG — ABOUT / TOP LINKS / CATEGORIES
   ========================================= */

/* ── Meet Monica / Blog About Section ── */
.blog-about-section {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.blog-about-header {
  padding: 64px 20px 0;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-about-rule {
  width: 48px;
  height: 1px;
  background: var(--color-border);
  margin: 0 auto 32px;
}

/* Image — padded same as page content (matches screenshot) */
.blog-about-image-wrap {
  padding: 0 20px;
  line-height: 0;
}

.blog-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-about-body {
  padding: 40px 20px 64px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-about-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 36px;
  text-align: left;
}

.blog-about-btn {
  display: inline-flex;
  padding: 14px 36px;
  font-size: 0.82rem;
}

/* ── Top Links shared heading / divider ── */
.blog-toplinks-section {
  padding: 64px 0;
  background: var(--color-accent);
  border-top: 1px solid var(--color-border);
}

.blog-toplinks-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── Categories section ── */
.blog-cats-section {
  padding: 64px 0 0;
  background: var(--color-accent);
  border-top: 1px solid var(--color-border);
}

.blog-cats-heading-wrap {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 0 20px;
}

/* Category image cards */
.blog-cats-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 20px 64px;
}

.blog-cat-card {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 16px;
}

.blog-cat-card:last-child {
  margin-bottom: 0;
}

.blog-cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.blog-cat-card-bg--empty {
  background-color: #c8b49a;
}

.blog-cat-card:hover .blog-cat-card-bg {
  transform: scale(1.04);
}

.blog-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

/* White inset border box — sits inside the card edges */
.blog-cat-card-border {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(255,255,255,0.7);
  pointer-events: none;
  z-index: 2;
}

/* Label sits in the lower-center of the card */
.blog-cat-card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  z-index: 3;
}

/* ── Categories old inner (keep for compatibility) ── */
.blog-cats-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-toplinks-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 16px;
}

.blog-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.blog-section-divider span {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-primary);
}

/* ── Top Links list ── */
.blog-toplinks-list,
.blog-cats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.blog-toplinks-item,
.blog-cats-item {
  border-bottom: 1px solid var(--color-border);
}

.blog-toplinks-item:first-child,
.blog-cats-item:first-child {
  border-top: 1px solid var(--color-border);
}

.blog-toplinks-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-toplinks-link:hover {
  color: var(--color-primary);
}

.blog-toplinks-icon {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.blog-toplinks-label {
  flex: 1;
}

.blog-toplinks-link svg {
  display: block;
}

.blog-toplinks-link:hover .blog-toplinks-icon {
  color: var(--color-primary);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .blog-about-header   { padding-top: 48px; }
  .blog-about-body     { padding-bottom: 48px; }
  .blog-toplinks-section { padding: 48px 0; }
  .blog-cats-section   { padding: 48px 0 0; }
  .blog-about-desc     { font-size: 0.98rem; }
  .blog-about-img      { max-height: 480px; }
  .blog-cat-card       { height: 220px; }
}
