/* =========================================================
   24 AKTIV — Shop-first (v11)
   Products are the hero. Everything else serves them.
   ========================================================= */

:root {
  --bg: #0b0a09;
  --bg-1: #0f0e0c;
  --bg-2: #15140f;
  --bg-3: #1d1b15;
  --bg-4: #25221b;
  --line: #1f1d18;
  --line-2: #2a271f;
  --line-3: #38342a;

  --fg: #f5f1e6;
  --fg-2: #d4cfc1;
  --fg-3: #948f81;
  --fg-4: #5d594f;

  --gold: #d4a850;
  --gold-2: #e6c373;
  --gold-3: #a78130;
  --gold-tint: rgba(212, 168, 80, 0.10);
  --gold-soft: rgba(212, 168, 80, 0.18);

  --whatsapp: #25d366;
  --whatsapp-2: #1ebe57;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 64px;
  --gutter: clamp(20px, 4vw, 56px);
  --max-w: 1480px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.3s;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }
::selection { background: var(--gold); color: var(--bg); }

.hidden { display: none !important; }

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* =========================================================
   TOP NAV — categories ALWAYS visible
   ========================================================= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--line);
}

.topnav-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  margin-left: -8px;
  border-radius: 6px;
  transition: background var(--t) var(--ease);
}
.hamburger:hover { background: var(--bg-2); }
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.hamburger.on span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.on span:nth-child(2) { opacity: 0; }
.hamburger.on span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.brand {
  display: flex;
  align-items: center;
  transition: opacity var(--t) var(--ease);
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--gold-soft));
}

.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-24 {
  color: var(--fg);
}
.brand-aktiv {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* Inline nav — VISIBLE on desktop with all categories */
.nav-main {
  display: none;
  align-items: center;
  gap: 28px;
  justify-self: center;
}
.nav-cat-wrap {
  display: contents;
}
@media (min-width: 1024px) {
  .nav-main { display: flex; }
  .topnav-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .hamburger { display: none; }
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 8px 0;
  position: relative;
  transition: color var(--t) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.topnav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topnav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.topnav-icon-btn:hover {
  background: var(--bg-2);
  color: var(--gold);
}

.topnav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--t) var(--ease);
}
.topnav-wa svg { fill: #fff; }
.topnav-wa:hover {
  background: var(--whatsapp-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* =========================================================
   DRAWER (mobile menu)
   ========================================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.drawer-overlay.on { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background: var(--bg-1);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  z-index: 95;
  transform: translateX(-100%);
  transition: transform var(--t) var(--ease);
  overflow-y: auto;
}
.drawer.on {
  transform: translateX(0);
  box-shadow: 12px 0 50px rgba(0, 0, 0, 0.6);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-brand img {
  height: 34px;
  filter: drop-shadow(0 0 14px var(--gold-soft));
}
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--fg-2);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.drawer-close:hover {
  background: var(--gold);
  color: var(--bg);
  transform: rotate(90deg);
}

.drawer-nav {
  flex: 1;
  padding: 16px 14px;
}

.drawer-link {
  display: block;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: 6px;
  transition: all var(--t) var(--ease);
}
.drawer-link:hover { color: var(--gold); background: var(--bg-2); padding-left: 22px; }
.drawer-link.active {
  color: var(--gold);
  background: var(--gold-tint);
}
.drawer-sublink {
  padding-left: 30px !important;
  font-size: 0.88rem !important;
  position: relative;
}
.drawer-sublink::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--fg-4);
  transform: translateY(-50%);
}
.drawer-sublink.active::before {
  background: var(--gold);
  width: 10px;
}

.drawer-foot {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
}
.drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--t) var(--ease);
}
.drawer-wa svg { fill: #fff; }
.drawer-wa:hover { background: var(--whatsapp-2); }

/* =========================================================
   SEARCH OVERLAY
   ========================================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 10, 9, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.search-overlay.on { opacity: 1; pointer-events: auto; }

.search-overlay-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px var(--gutter);
}

.search-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--fg);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.search-close:hover {
  background: var(--gold);
  color: var(--bg);
  transform: rotate(90deg);
}

.search-overlay-content {
  width: 100%;
  max-width: 720px;
}

.search-overlay-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 32px;
}
.search-overlay-input-wrap svg {
  position: absolute;
  left: 0;
  color: var(--gold);
}
.search-overlay-input-wrap input {
  width: 100%;
  padding: 16px 0 16px 38px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  color: var(--fg);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  outline: none;
  transition: border-color var(--t) var(--ease);
}
.search-overlay-input-wrap input:focus { border-bottom-color: var(--gold); }
.search-overlay-input-wrap input::placeholder { color: var(--fg-4); }

.search-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 4px;
  transition: background var(--t) var(--ease);
}
.search-result:hover { background: var(--bg-2); }

.search-result img {
  width: 60px;
  height: 75px;
  object-fit: cover;
  border-radius: 2px;
}

.search-result-brand {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.search-result-name {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.search-result-price {
  font-size: 0.85rem;
  color: var(--fg-3);
}

.search-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--fg-3);
  font-size: 0.95rem;
}

/* =========================================================
   Main + view
   ========================================================= */
.main { min-height: 100vh; }

.view {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(60px, 8vw, 100px);
}
.view-home { padding: 0; max-width: none; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  border: 1px solid transparent;
}
.btn svg { transition: transform var(--t) var(--ease); }

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  height: 56px;
  padding: 0 36px;
  font-size: 0.82rem;
}
.btn-wa svg { fill: #fff; }
.btn-wa:hover {
  background: var(--whatsapp-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
}

/* =========================================================
   COMPACT HERO — short, gets out of the way
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 25% 50%, rgba(212, 168, 80, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #0b0a09 0%, #1a1611 50%, #0b0a09 100%);
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 80% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  max-width: 540px;
  opacity: 0.04;
  filter: brightness(2);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-h em {
  font-style: italic;
  color: var(--gold);
}

.hero-p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 480px;
  font-weight: 300;
}

/* =========================================================
   SHOP BLOCK (home and shop pages)
   ========================================================= */
.shop-block {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
}

.shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.shop-bar-home {
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.shop-bar-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
}

.shop-count {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fg-4);
}

.shop-foot {
  margin-top: 40px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fg);
  padding: 12px 0;
  position: relative;
  transition: color var(--t) var(--ease);
}
.link-arrow svg { transition: transform var(--t) var(--ease); }
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; right: 28px; bottom: 4px;
  height: 1px;
  background: var(--fg-4);
  transition: background var(--t) var(--ease);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover::after { background: var(--gold); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Cat pills (filter pills used on home + shop) */
.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  height: 36px;
  padding: 0 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-2);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
}
.pill:hover {
  color: var(--fg);
  border-color: var(--line-3);
  background: var(--bg-3);
}
.pill.on {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* =========================================================
   PRODUCT GRID + CARDS
   ========================================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px 16px;
}

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--fg-3);
}

.card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.card-media {
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 2px;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}
@supports not (aspect-ratio: 4 / 5) {
  .carousel { height: 0; padding-top: 125%; }
}

.track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.5s var(--ease);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .slide img { transform: scale(1.04); }

.cnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(245, 241, 230, 0.95);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: all var(--t) var(--ease);
}
.card:hover .cnav { opacity: 1; }
.cnav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.06);
}
.cnav.prev { left: 8px; }
.cnav.next { right: 8px; }

.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  padding: 4px 8px;
  background: rgba(11, 10, 9, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  z-index: 5;
}
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  transition: all var(--t) var(--ease);
}
.dot.on {
  background: var(--fg);
  transform: scale(1.4);
}

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

.card-brand {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 6px;
}

.card-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.card-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  padding: 0 20px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-3);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.card-order-btn svg { transition: transform var(--t) var(--ease); }
.card-order-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.card-order-btn:hover svg { transform: translateX(3px); }

/* =========================================================
   EMPTY STATE
   ========================================================= */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid rgba(212, 168, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.empty-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 12px;
}

.empty-p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 460px;
  margin: 0 auto 28px;
}

.empty-skeletons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto 0;
  text-align: left;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .empty-skeletons { grid-template-columns: repeat(2, 1fr); }
}
.empty-skeletons .sk { display: flex; flex-direction: column; gap: 10px; cursor: default; }
.sk-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.sk-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/logo.png');
  background-size: 38%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  filter: brightness(2);
}
.sk-line {
  height: 10px;
  background: linear-gradient(90deg, var(--bg-2) 0%, var(--bg-3) 50%, var(--bg-2) 100%);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: shimmer 2.4s linear infinite;
}
.sk-line-sm { width: 50%; height: 8px; }
.sk-line-xs { width: 30%; height: 8px; }
@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* =========================================================
   BLOCK (used for cats + reviews)
   ========================================================= */
.block {
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.block-head {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.block-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
}

/* =========================================================
   CATEGORY VISUAL BLOCKS
   ========================================================= */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 16px;
}

.cat {
  position: relative;
  display: block;
  height: clamp(360px, 45vw, 500px);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
  isolation: isolate;
  cursor: pointer;
}

.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
  z-index: 1;
}
.cat:hover .cat-img { transform: scale(1.05); }

.cat-empty .cat-img {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212, 168, 80, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(212, 168, 80, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1a1611 0%, #0b0a09 100%);
}
.cat-empty::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/logo.png');
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  z-index: 1;
  filter: brightness(2);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 3;
  color: #fff;
}

.cat-meta {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.cat-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 14px;
  color: #fff;
}

.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: all var(--t) var(--ease);
}
.cat:hover .cat-cta {
  border-bottom-color: var(--gold-2);
  color: var(--gold-2);
}
.cat-cta svg { transition: transform var(--t) var(--ease); }
.cat:hover .cat-cta svg { transform: translateX(4px); }

/* =========================================================
   TRUST STRIP — single line, simple
   ========================================================= */
.trust-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter);
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--fg-3);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item strong { color: var(--fg); font-weight: 600; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review {
  padding: 28px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color var(--t) var(--ease);
}
.review:hover { border-color: var(--line-2); }

.review-stars {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
}

.review figcaption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
}
.review figcaption span {
  font-weight: 400;
  color: var(--fg-3);
}

/* =========================================================
   CTA BLOCK
   ========================================================= */
.cta-block {
  position: relative;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 168, 80, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.cta-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.cta-p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--fg-3);
  margin-bottom: 28px;
}

/* =========================================================
   PAGE HEAD (shop, contact)
   ========================================================= */
.page-head {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.page-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.page-p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 520px;
  margin-top: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--fg-3);
  transition: color var(--t) var(--ease);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.6; }

/* =========================================================
   Search wrap (shop bar)
   ========================================================= */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 360px;
}
.search-wrap svg {
  position: absolute;
  left: 14px;
  color: var(--fg-4);
  pointer-events: none;
}
.search-wrap input {
  width: 100%;
  height: 42px;
  padding: 0 36px 0 38px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  color: var(--fg);
  font-size: 0.86rem;
  outline: none;
  transition: all var(--t) var(--ease);
}
.search-wrap input::placeholder { color: var(--fg-4); }
.search-wrap input:focus {
  border-color: var(--gold);
  background: var(--bg-2);
}

.search-clear {
  position: absolute;
  right: 6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--fg-3);
  font-size: 1.05rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.search-clear.on { display: flex; }
.search-clear:hover { background: var(--gold); color: var(--bg); }

.result-count {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 28px;
  padding: 8px 0;
  transition: color var(--t) var(--ease);
}
.back-link svg { transition: transform var(--t) var(--ease); }
.back-link:hover { color: var(--gold); }
.back-link:hover svg { transform: translateX(-4px); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pd-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }

.pd-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 4px;
  margin-bottom: 12px;
}
@supports not (aspect-ratio: 4 / 5) {
  .pd-main { height: 0; padding-top: 125%; }
}
.pd-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.5s var(--ease);
}
.pd-slide {
  flex: 0 0 100%;
  height: 100%;
  cursor: zoom-in;
}
.pd-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245, 241, 230, 0.95);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0.85;
  transition: all var(--t) var(--ease);
}
.pd-nav:hover { background: var(--gold); opacity: 1; }
.pd-nav.prev { left: 16px; }
.pd-nav.next { right: 16px; }

.pd-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pd-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 100px;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  opacity: 0.6;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { opacity: 0.9; }
.pd-thumb.on { opacity: 1; border-color: var(--gold); }

.pd-info { padding-top: 8px; }
.pd-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pd-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
}
.pd-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 32px;
}

.pd-section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.pd-section-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pd-description {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--fg-2);
}
.pd-cta { width: 100%; margin: 8px 0 12px; }
.pd-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-4);
  text-align: center;
}

.pd-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pd-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.pd-feature svg { color: var(--gold); }

.pd-related {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.pd-related-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.view-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
}
.contact-wrap { max-width: 540px; }
.contact-meta {
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg-4);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 28px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg-4);
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.contact-socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all var(--t) var(--ease);
  color: var(--fg-2);
}
.social-card svg {
  color: var(--gold);
  flex-shrink: 0;
}
.social-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.3px;
}
.social-card span {
  font-size: 0.78rem;
  color: var(--fg-3);
  letter-spacing: 0.3px;
}
.social-card:hover {
  border-color: var(--gold);
  background: var(--bg-2);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .contact-socials { grid-template-columns: 1fr; }
}

/* Drawer socials */
.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}
.drawer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--fg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.drawer-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Footer socials */
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--fg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--gutter) 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  height: 32px;
  filter: drop-shadow(0 0 12px var(--gold-soft));
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-3);
  letter-spacing: 0.3px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-3);
  transition: color var(--t) var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--fg-4);
}
.footer-bottom .gold { color: var(--gold); font-weight: 600; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 10, 9, 0.96);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92%;
  max-height: 86vh;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245, 241, 230, 0.08);
  border: 1px solid rgba(245, 241, 230, 0.12);
  color: var(--fg);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1023px) {
  .nav-main { display: none; }
}
@media (max-width: 768px) {
  .topnav-actions .topnav-icon-btn { display: none; }
}

@media (max-width: 1024px) {
  .reviews { grid-template-columns: 1fr; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-gallery { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .topnav-inner { gap: 12px; }
  .brand { justify-self: center; }
  .topnav-wa span { display: none; }
  .topnav-wa { padding: 0; width: 40px; height: 40px; justify-content: center; gap: 0; border-radius: 50%; }

  .hero { padding: 50px var(--gutter) 60px; }
  .hero-h { font-size: 2rem; }
  .hero-p { font-size: 0.94rem; }
  .hero-mark { width: 90vw; right: -30%; opacity: 0.03; }

  .shop-block { padding: 32px var(--gutter); }
  .shop-bar-home {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }
  .card-title { font-size: 0.84rem; }
  .card-price { font-size: 0.84rem; }
  .cnav { opacity: 0.85; width: 30px; height: 30px; }

  .cats { grid-template-columns: 1fr; }
  .cat { height: 320px; }
  .cat-content { padding: 22px; }

  .trust-strip-inner { grid-template-columns: 1fr; gap: 16px; }

  .shop-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-wrap { max-width: none; }

  .pd-features { grid-template-columns: 1fr; gap: 8px; }
  .pd-feature { flex-direction: row; justify-content: flex-start; padding: 12px 16px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 36px var(--gutter) 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .empty-skeletons { grid-template-columns: repeat(2, 1fr); }

  .search-overlay-inner { padding: 60px 20px; }
  .search-overlay-input-wrap input { font-size: 1.2rem; }
}

@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .sk-line { animation: none !important; }
}