/* =============================================
   STORK'S BEAK — Old Money Aesthetic
   Deep leather tones, brass accents, serif type
   ============================================= */

/* === CSS Custom Properties === */
:root {
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --espresso: #1A1814;
  --espresso-light: #2C2416;
  --brass: #B8935A;
  --brass-light: #D4AF6E;
  --brass-dark: #8B6914;
  --surface: #FFFFFF;
  --surface-warm: #FAF7F2;
  --border: #D4C5B2;
  --text: #2C2416;
  --text-muted: #5C5042;
  --text-inverse: #F5F0E8;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 2px;
  --radius-btn: 3px;
  --shadow-brand: rgba(26, 24, 20, 0.12);
  --shadow-brand-deep: rgba(26, 24, 20, 0.18);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1280px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--brass); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.06; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 0.5rem; line-height: 1.10; }
h3 { font-size: 1.35rem; line-height: 1.15; }

/* === Utility === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-gold {
  background: var(--brass);
  color: #fff;
}
.btn-gold:hover { background: var(--brass-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--brass);
  color: var(--brass-dark);
  border-radius: var(--radius-btn);
}
.btn-outline:hover { background: var(--brass); color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* Keyboard focus outlines */
:focus-visible {
  outline: 2px solid var(--brass-dark);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ====================================
   NAVIGATION
   ==================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 240, 232, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(139, 105, 20, 0.12);
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  border-bottom-color: rgba(139, 105, 20, 0.25);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
  display: flex; align-items: center;
}
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--brass); }
.nav-cart {
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color var(--transition-fast);
}
.nav-cart:hover { color: var(--brass); }
.nav-cart-count {
  background: var(--brass); color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none; border: none;
  width: 24px; height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--espresso);
  transition: all 0.3s ease;
  border-radius: 1px;
}
/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 105;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-menu a:hover { color: var(--brass); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 2rem; color: var(--espresso);
  cursor: pointer; line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:hover { color: var(--brass); }

/* ====================================
   HERO
   ==================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(184, 147, 90, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(44, 36, 22, 0.04) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
/* Ghost wallet silhouette */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('https://i.etsystatic.com/22963836/r/il/1ba9b1/6916235839/il_fullxfull.6916235839_pgsd.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.18;
  filter: grayscale(100%) contrast(1.6);
  mix-blend-mode: multiply;
  animation: walletFloat 16s ease-in-out infinite;
  pointer-events: none;
}
@keyframes walletFloat {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  25% { transform: rotate(2deg) scale(1.03); }
  50% { transform: rotate(-1deg) scale(0.98); }
  75% { transform: rotate(1deg) scale(1.02); }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 800px; text-align: center;
}
.hero-overline { margin-bottom: 1.5rem; }
.hero-title {
  margin-bottom: 1.5rem;
  color: var(--espresso);
  text-shadow:
    0 1px 0 rgba(212, 175, 110, 0.15),
    0 -1px 0 rgba(26, 24, 20, 0.08);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-muted);
  pointer-events: none;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 3rem;
  background: var(--brass);
  margin: 0.75rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* Reveal stagger */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.25s; }
.reveal:nth-child(3) { transition-delay: 0.4s; }
.reveal:nth-child(4) { transition-delay: 0.55s; }

/* ====================================
   COLLECTION / FILTERS
   ==================================== */
.collection {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 2rem 7rem;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.04em;
}
.filter-btn:hover { border-color: var(--brass); color: var(--brass); }
.filter-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

/* === Product Grid === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px var(--shadow-brand), 0 12px 40px var(--shadow-brand-deep);
}
.product-card.hidden { display: none; }
.product-card.reveal-card {
  opacity: 0;
  transform: translateY(40px);
}
.product-card.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--espresso); color: var(--cream);
  font-size: 0.65rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.25rem 0.6rem;
}

.product-info { padding: 1.25rem 1rem; }
.product-material {
  font-family: var(--font-body);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brass-dark); margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500;
  color: var(--espresso); margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-price {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  color: var(--espresso);
}
.product-price-eur { font-size: 0.8rem; color: var(--text-muted); margin-left: 0.4rem; font-weight: 400; }

/* === Product Detail (lightbox) === */
.product-detail-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26, 24, 20, 0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.product-detail {
  background: var(--surface);
  max-width: 960px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.product-detail-image { background: var(--cream-dark); min-height: 400px; }
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info {
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.product-detail-info h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.product-detail-material {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--brass-dark); margin-bottom: 1rem;
}
.product-detail-price { font-size: 1.4rem; font-weight: 500; margin-bottom: 1.25rem; }
.product-detail-desc {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 1.5rem;
}
.product-detail-features { margin-bottom: 1.5rem; }
.product-detail-features li {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 0.3rem; list-style: none; padding-left: 1.2rem;
  position: relative;
}
.product-detail-features li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; background: var(--brass); border-radius: 50%;
}

.detail-actions { display: flex; gap: 1rem; margin-top: auto; }

/* ====================================
   PHILOSOPHY
   ==================================== */
.philosophy { background: var(--espresso); color: var(--text-inverse); }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.philosophy-image {
  background: linear-gradient(160deg, #2a2015 0%, #3a2518 40%, #1a1410 100%);
  position: relative;
  overflow: hidden;
}
.philosophy-image::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8935a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zm-24 8v-4h-2v4H6v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.philosophy-text {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.philosophy-text h2 { margin-bottom: 1.5rem; color: var(--cream); }
.philosophy-text p {
  color: rgba(245, 240, 232, 0.62);
  margin-bottom: 1.25rem;
  font-size: 0.95rem; line-height: 1.9;
}

.stats {
  display: flex; gap: 3rem;
  margin-top: 2rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 500;
  color: var(--brass-light); display: block; line-height: 1;
}
.stat-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.5); margin-top: 0.3rem;
}

/* ====================================
   MATERIALS
   ==================================== */
.materials {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 2rem 7rem;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.material-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.material-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px var(--shadow-brand), 0 8px 24px var(--shadow-brand-deep);
}
.material-icon { margin-bottom: 1rem; }
.material-icon svg { width: 56px; height: 56px; display: block; }
.material-card h3 { margin-bottom: 0.75rem; }
.material-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ====================================
   TESTIMONIAL
   ==================================== */
.testimonial {
  background: var(--surface-warm);
  padding: 7rem 2rem;
  text-align: center;
}
.testimonial-inner { max-width: 650px; margin: 0 auto; }
.testimonial-stars {
  font-size: 1.2rem; color: var(--brass); letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.8rem; font-style: italic; font-weight: 400;
  color: var(--espresso); line-height: 1.4;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-size: 0.85rem; color: var(--text-muted); font-style: normal;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--espresso);
  color: rgba(245, 240, 232, 0.6);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h4 {
  font-size: 1.3rem; color: var(--cream); margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.footer-links h5 {
  font-family: var(--font-body);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--brass-light); margin-bottom: 1rem;
}
.footer-links a {
  display: block; font-size: 0.85rem; color: rgba(245, 240, 232, 0.5);
  margin-bottom: 0.5rem; transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max-width); margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  font-size: 0.8rem; text-align: center;
}

/* ====================================
   CART SIDEBAR
   ==================================== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(26, 24, 20, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar {
  position: fixed; top: 0; right: -440px; z-index: 301;
  width: 420px; max-width: 100vw; height: 100vh;
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  background: none; border: none;
  font-family: var(--font-body); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); cursor: pointer;
}
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty { color: var(--text-muted); text-align: center; padding: 4rem 0; font-size: 0.9rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 70px; height: 70px; overflow: hidden;
  background: var(--cream-dark); flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 500; font-size: 0.9rem; color: var(--espresso); }
.cart-item-variant { font-size: 0.75rem; color: var(--text-muted); }
.cart-item-price { font-weight: 500; font-size: 0.9rem; color: var(--espresso); margin-top: 0.25rem; }
.cart-item-remove {
  background: none; border: none; font-size: 0.75rem;
  color: var(--text-muted); cursor: pointer; padding: 0; margin-top: 0.25rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.cart-item-remove:hover { color: #8B3A3A; }

.cart-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border); }
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 1rem; font-weight: 500; margin-bottom: 1.25rem;
}
.cart-total span { color: var(--espresso); }

/* ====================================
   TOAST
   ==================================== */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--espresso); color: var(--cream);
  padding: 0.75rem 1.5rem; font-size: 0.85rem;
  z-index: 400; opacity: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-image { min-height: 0; }
  .philosophy-text { padding: 4rem 2rem; }
  .philosophy { min-height: auto; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-image { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 4rem 1.25rem 3rem; min-height: 100svh; }
  .hero-title { font-size: 2.5rem; }
  .collection, .materials { padding: 4rem 1.25rem; }

  /* Mobile nav: hamburger */
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 1rem;
  }
  .nav-hamburger { display: flex; justify-self: start; order: 1; }
  .nav-logo { font-size: 1.25rem; justify-self: center; order: 2; }
  .nav-logo-img { height: 28px; }
  .nav-links { justify-self: end; gap: 0.6rem; order: 3; }
  .nav-links a { display: none; }
  .nav-cart { font-size: 0.75rem; }
  .nav-cart-count { width: 18px; height: 18px; font-size: 0.65rem; }

  .stats { flex-direction: column; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-card { font-size: 0.9rem; }
  .product-detail-info { padding: 2rem 1.5rem; }
  .cart-sidebar { width: 100vw; right: -100vw; }

  /* Philosophy: hide decorative gradient block on mobile */
  .philosophy-image { display: none; }
  .philosophy-text { padding: 4rem 1.5rem; }

  /* Hide ghost wallet on mobile */
  .hero-bg::after { display: none; }
}
