/* ============================================================
   SHOP MOSAIC TILES — THEME CSS
   ============================================================ */

:root {
  --stone: #1a1714;
  --warm-black: #0d0b09;
  --cream: #f5f0e8;
  --sand: #e8e0d4;
  --terracotta: #c4744a;
  --terracotta-dark: #a85d38;
  --sage: #7a8c6e;
  --slate: #6b6560;
  --light-slate: #9b9590;
  --whisper: #faf8f5;
  --gold: #b8965a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--whisper);
  color: var(--stone);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ===== GLOBAL ELEMENTS ===== */
.btn-primary {
  display: inline-block;
  background: var(--stone); color: var(--cream);
  padding: 15px 32px; border: none;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  cursor: pointer; font-family: var(--font-body); text-decoration: none;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--terracotta); transition: left 0.4s ease; z-index: 0;
}
.btn-primary:hover::before { left: 0; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--stone);
  padding: 15px 32px; border: 1.5px solid var(--stone);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  cursor: pointer; font-family: var(--font-body); text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--stone); color: var(--cream); }

.placeholder {
  background: var(--sand);
  width: 100%; height: 100%;
}

.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(30px, 4vw, 50px); flex-wrap: wrap; gap: 16px;
}
.section-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 300; letter-spacing: -0.5px; line-height: 1.1;
}
.section-title em { font-family: var(--font-accent); font-style: italic; }
.section-link {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; color: var(--stone); font-weight: 500;
  border-bottom: 1.5px solid var(--stone); padding-bottom: 2px;
  transition: all 0.3s; white-space: nowrap;
}
.section-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ===== ANNOUNCEMENT ===== */
.announcement {
  background: var(--stone); color: var(--cream);
  text-align: center; padding: 10px 20px;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; line-height: 1.5;
}
.announcement .accent { color: var(--terracotta); font-weight: 600; }

/* ===== NAV ===== */
/* Sticky header wrapper — contains announcement + nav together */
.site-header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--whisper);
}
.site-nav {
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; color: var(--stone); }
.logo-main {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400; letter-spacing: -0.5px; line-height: 1.1; display: block;
}
.logo-sub {
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--slate); font-weight: 500; display: block; margin-top: 2px;
}
.nav-links {
  display: flex; gap: clamp(16px, 3vw, 36px); list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--stone);
  font-size: 14px; font-weight: 400; letter-spacing: 0.5px;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--terracotta); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after { width: 100%; }

.nav-icons { display: flex; gap: 16px; align-items: center; }
.nav-icons a, .nav-icons button {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--stone); transition: color 0.3s;
}
.nav-icons a:hover, .nav-icons button:hover { color: var(--terracotta); }
.nav-icons svg { width: 20px; height: 20px; stroke: currentColor; }

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

.mobile-menu-toggle { display: none; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--whisper); z-index: 200;
  transition: right 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-inner { padding: 60px 30px 30px; }
.mobile-drawer-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 24px; cursor: pointer;
  color: var(--stone);
}
.mobile-nav-list { list-style: none; }
.mobile-nav-list li { margin-bottom: 16px; }
.mobile-nav-list a {
  text-decoration: none; font-size: 18px; color: var(--stone);
  font-family: var(--font-display); font-weight: 400;
}

/* ===== HERO ===== */
.hero { display: grid; grid-template-columns: 1fr 1fr; }
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 100px) clamp(24px, 5vw, 80px);
}
.hero-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 20px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 300; line-height: 1.05; letter-spacing: -1px; margin-bottom: 24px;
  animation: fadeUp 0.8s ease-out 0.4s both;
}
.hero h1 em { font-family: var(--font-accent); font-style: italic; color: var(--terracotta); }
.hero-desc {
  font-size: 16px; line-height: 1.7; color: var(--slate);
  max-width: 440px; margin-bottom: 32px; font-weight: 300;
  animation: fadeUp 0.8s ease-out 0.6s both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeUp 0.8s ease-out 0.8s both;
}
.hero-stats {
  display: flex; gap: 32px;
  animation: fadeUp 0.8s ease-out 1s both;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400; color: var(--stone); line-height: 1.2;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--light-slate); font-weight: 500;
}
.hero-visual { position: relative; overflow: hidden; background: var(--sand); min-height: 500px; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== MARQUEE ===== */
.marquee-wrapper { background: var(--stone); padding: 14px 0; overflow: hidden; position: relative; }
.marquee-track {
  display: flex; gap: 50px;
  animation: marquee 30s linear infinite; width: max-content;
}
.marquee-item {
  color: var(--cream); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 400; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-item .dot {
  width: 4px; height: 4px; background: var(--terracotta);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CATEGORIES ===== */
.categories { padding: clamp(50px, 7vw, 110px) 0; }
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px; gap: 10px;
}
.cat-card {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 2px; display: block; text-decoration: none; color: white;
}
.cat-card:first-child { grid-column: 1 / 3; }
.cat-card .cat-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.65) 0%, rgba(13,11,9,0.05) 60%, transparent 100%);
}
.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.cat-name { font-family: var(--font-display); font-size: 22px; color: white; font-weight: 400; }
.cat-count { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-top: 2px; }
.cat-arrow {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0;
}
.cat-card:hover .cat-arrow { background: var(--terracotta); border-color: var(--terracotta); }
.cat-arrow svg { stroke: white; width: 14px; height: 14px; }

/* ===== PRODUCTS ===== */
.products { padding: clamp(30px, 4vw, 60px) 0 clamp(50px, 7vw, 110px); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
.product-card { position: relative; cursor: pointer; }
.product-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--sand); margin-bottom: 14px; border-radius: 2px;
  display: block; text-decoration: none;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--terracotta); color: white;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px; z-index: 2;
}
.product-quick {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; gap: 6px; opacity: 0; transform: translateY(10px); transition: all 0.3s ease;
  z-index: 2;
}
.product-card:hover .product-quick { opacity: 1; transform: translateY(0); }
.product-quick button {
  flex: 1; background: rgba(13,11,9,0.88); backdrop-filter: blur(10px);
  color: white; border: none; padding: 11px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500; cursor: pointer; transition: background 0.3s;
}
.product-quick button:hover { background: var(--terracotta); }
.product-material {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light-slate); margin-bottom: 5px; font-weight: 500;
}
.product-name {
  font-family: var(--font-display); font-size: 17px; font-weight: 400;
  margin-bottom: 3px; line-height: 1.3;
}
.product-size { font-size: 13px; color: var(--slate); margin-bottom: 8px; }
.product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product-price .woocommerce-Price-amount { font-size: inherit; }
.price-sale { font-size: 17px; font-weight: 600; color: var(--terracotta); }
.price-sale .woocommerce-Price-amount { color: var(--terracotta); }
.price-retail { font-size: 13px; color: var(--light-slate); text-decoration: line-through; }
.price-unit { font-size: 11px; color: var(--light-slate); }
.product-stock {
  margin-top: 6px; font-size: 11px; color: var(--sage);
  display: flex; align-items: center; gap: 5px;
}
.product-stock.out-of-stock { color: #c0392b; }
.stock-dot {
  width: 5px; height: 5px; background: var(--sage); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== VALUE PROPS ===== */
.value-banner {
  background: var(--stone); padding: clamp(44px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
.value-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,116,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.value-item { text-align: center; }
.value-icon {
  width: 48px; height: 48px; border: 1.5px solid rgba(245,240,232,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--terracotta); }
.value-num {
  font-family: var(--font-display); font-size: 32px;
  color: var(--cream); font-weight: 300; margin-bottom: 2px;
}
.value-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.45); font-weight: 500;
}

/* ===== SALE CTA ===== */
.sale-section { padding: clamp(50px, 7vw, 110px) 0; }
.sale-card {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px; background: var(--sand); overflow: hidden; border-radius: 2px;
}
.sale-visual { position: relative; overflow: hidden; }
.sale-visual img { width: 100%; height: 100%; object-fit: cover; }
.sale-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 4vw, 70px);
}
.sale-pct {
  font-family: var(--font-display);
  font-size: clamp(70px, 9vw, 130px);
  font-weight: 300; color: var(--terracotta); line-height: 0.9; margin-bottom: 2px;
}
.sale-pct-label {
  font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--slate); font-weight: 500; margin-bottom: 20px;
}
.sale-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300; line-height: 1.2; margin-bottom: 14px;
}
.sale-headline em { font-family: var(--font-accent); font-style: italic; }
.sale-desc {
  color: var(--slate); font-size: 14px; line-height: 1.7;
  margin-bottom: 28px; max-width: 360px; font-weight: 300;
}

/* ===== CALCULATOR ===== */
.calc-section { padding: 0 0 clamp(50px, 7vw, 110px); }
.calc-card {
  background: var(--stone); border-radius: 2px;
  padding: clamp(30px, 4vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  position: relative; overflow: hidden;
}
.calc-card::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,116,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.calc-info { position: relative; z-index: 1; }
.calc-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600; margin-bottom: 14px;
}
.calc-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  color: var(--cream); font-weight: 300; margin-bottom: 14px; line-height: 1.15;
}
.calc-title em { font-family: var(--font-accent); font-style: italic; }
.calc-desc { color: var(--light-slate); font-size: 14px; line-height: 1.7; font-weight: 300; }
.calc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.calc-input-group { display: flex; flex-direction: column; gap: 5px; }
.calc-input-group label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light-slate); font-weight: 500;
}
.calc-input-group input {
  background: rgba(245,240,232,0.08); border: 1px solid rgba(245,240,232,0.15);
  color: var(--cream); padding: 13px 14px; font-size: 16px;
  font-family: var(--font-body); outline: none; transition: border-color 0.3s;
  border-radius: 0;
}
.calc-input-group input::placeholder { color: var(--light-slate); }
.calc-input-group input:focus { border-color: var(--terracotta); }
.calc-result {
  grid-column: 1 / -1; background: rgba(196,116,74,0.1);
  border: 1px solid rgba(196,116,74,0.2); padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-result-label { color: var(--light-slate); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.calc-result-value { font-family: var(--font-display); font-size: 26px; color: var(--terracotta); font-weight: 400; }
.calc-btn {
  grid-column: 1 / -1; background: var(--terracotta); color: white; border: none;
  padding: 15px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; font-family: var(--font-body); cursor: pointer; transition: background 0.3s;
  border-radius: 0;
}
.calc-btn:hover { background: var(--terracotta-dark); }

/* ===== FOOTER ===== */
.site-footer { background: var(--warm-black); padding: clamp(44px, 6vw, 80px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.site-footer .logo-main { color: var(--cream); font-size: 24px; }
.site-footer .logo-sub { color: var(--light-slate); }
.footer-brand p {
  color: var(--light-slate); font-size: 14px; line-height: 1.7;
  margin-top: 14px; max-width: 300px; font-weight: 300;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream); font-weight: 500; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  text-decoration: none; color: var(--light-slate); font-size: 13px;
  font-weight: 300; transition: color 0.3s;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 22px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--slate); font-size: 12px; font-weight: 300; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-payments span {
  background: rgba(245,240,232,0.06); padding: 5px 12px;
  font-size: 11px; color: var(--light-slate); font-weight: 500; border-radius: 2px;
}

/* ===== PAGES ===== */
.smt-main { padding: clamp(40px, 6vw, 80px) 0; min-height: 60vh; }
.smt-main .page-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; margin-bottom: 24px;
}
.smt-main .entry-content { font-size: 16px; line-height: 1.8; color: var(--slate); max-width: 800px; }
.smt-main .entry-content h2 { font-family: var(--font-display); font-weight: 400; margin: 32px 0 16px; }
.smt-main .entry-content p { margin-bottom: 16px; }

/* ===== BREADCRUMBS ===== */
.smt-breadcrumbs {
  padding: 16px 0; font-size: 13px; color: var(--light-slate);
  border-bottom: 1px solid rgba(26,23,20,0.06);
}
.smt-breadcrumbs a { color: var(--slate); text-decoration: none; }
.smt-breadcrumbs a:hover { color: var(--terracotta); }
.bc-sep { margin: 0 6px; }

/* ===== SINGLE PRODUCT ===== */
.product-specs {
  display: flex; gap: 12px; margin: 10px 0; flex-wrap: wrap;
}
.product-specs span {
  background: var(--sand); padding: 6px 14px; font-size: 13px;
  border-radius: 2px; color: var(--slate);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 50vh; min-height: 300px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card:first-child { grid-column: 1 / 3; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .sale-card { grid-template-columns: 1fr; }
  .sale-visual { height: 280px; }
  .calc-card { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .announcement { font-size: 10px; letter-spacing: 1.5px; padding: 8px 14px; }
  .hero-content { padding: 32px 20px 40px; }
  .hero h1 { font-size: 34px; margin-bottom: 16px; }
  .hero-desc { font-size: 14px; margin-bottom: 24px; }
  .btn-primary, .btn-outline { padding: 13px 24px; font-size: 11px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 9px; }
  .hero-visual { height: 44vh; min-height: 260px; }
  .cat-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .cat-card:first-child { grid-column: auto; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .product-name { font-size: 15px; }
  .value-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .value-num { font-size: 26px; }
  .sale-pct { font-size: 70px; }
  .sale-content { padding: 28px 20px 36px; }
  .calc-card { padding: 24px 20px; }
  .calc-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GRAIN TEXTURE ===== */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
