:root {
  --bg: #06070b;
  --surface: #11131a;
  --surface-2: #171a24;
  --gold: #f5be3d;
  --gold-soft: #e6a819;
  --text: #f6f1dd;
  --muted: #b8bfd2;
  --border: #2a3040;
  --green: #39d98a;
  --purple: #8f57ff;
}

/* Reduce GPU-heavy effects on phones for smoother rendering. */
@media (max-width: 768px) {
  html {
    background: var(--bg);
  }

  .topbar,
  .panel,
  .app-btn-viber,
  .app-btn-telegram,
  .app-btn-whatsapp {
    backdrop-filter: none;
  }

  .hero-shell {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  .product-card::after {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(60% 45% at 8% 0%, rgba(143, 87, 255, 0.18), transparent 58%),
    radial-gradient(45% 35% at 95% 14%, rgba(57, 217, 138, 0.13), transparent 56%),
    radial-gradient(70% 40% at 50% 100%, rgba(245, 190, 61, 0.09), transparent 70%),
    var(--bg);
  background-attachment: scroll;
}

@media (min-width: 769px) {
  html,
  body {
    background-attachment: fixed;
  }
}

body.page-home {
  background:
    radial-gradient(55% 42% at 0% 8%, rgba(143, 87, 255, 0.22), transparent 58%),
    radial-gradient(45% 35% at 98% 10%, rgba(57, 217, 138, 0.18), transparent 58%),
    radial-gradient(50% 42% at 50% 100%, rgba(245, 190, 61, 0.12), transparent 65%),
    var(--bg);
}

body.page-shop {
  background:
    radial-gradient(60% 45% at 10% 0%, rgba(245, 190, 61, 0.17), transparent 58%),
    radial-gradient(50% 35% at 95% 18%, rgba(143, 87, 255, 0.17), transparent 58%),
    var(--bg);
}

body.page-delivery {
  background:
    radial-gradient(60% 45% at 0% 15%, rgba(57, 217, 138, 0.16), transparent 58%),
    radial-gradient(45% 35% at 88% 5%, rgba(245, 190, 61, 0.12), transparent 58%),
    var(--bg);
}

body.page-about {
  background:
    radial-gradient(55% 45% at 8% 0%, rgba(143, 87, 255, 0.2), transparent 58%),
    radial-gradient(45% 35% at 92% 20%, rgba(57, 217, 138, 0.14), transparent 58%),
    var(--bg);
}

body.page-contact,
body.page-faq {
  background:
    radial-gradient(55% 45% at 0% 8%, rgba(245, 190, 61, 0.17), transparent 60%),
    radial-gradient(45% 35% at 95% 12%, rgba(143, 87, 255, 0.14), transparent 58%),
    var(--bg);
}

body.page-cart {
  background:
    radial-gradient(60% 45% at 0% 8%, rgba(245, 190, 61, 0.15), transparent 58%),
    radial-gradient(45% 35% at 95% 12%, rgba(57, 217, 138, 0.12), transparent 58%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 10, 14, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  flex-wrap: nowrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  position: relative;
  padding-bottom: 6px;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #cad2e8;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: rgba(245, 190, 61, 0.32);
  background: linear-gradient(135deg, rgba(245, 190, 61, 0.2), rgba(143, 87, 255, 0.12));
  color: #fff5d8;
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #ffe28a, var(--purple));
  box-shadow: 0 0 10px rgba(245, 190, 61, 0.45);
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.25s ease, width 0.25s ease, opacity 0.2s ease;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #f2e9d2;
  font-size: 20px;
  line-height: 1;
}

.brand {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 20px;
  white-space: nowrap;
}

.brand span {
  color: var(--gold);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-hero {
  padding: 56px 0 30px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.faq-grid {
  margin-top: 14px;
}

.faq-grid .panel {
  padding: 16px;
}

.faq-grid .panel h2 {
  font-size: 19px;
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.topbar-inner > .btn.btn-primary {
  font-size: 15px;
  padding: 10px 16px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), #ffe28a);
  color: #1a1405;
  border-color: #9d7313;
  box-shadow: 0 0 22px rgba(245, 190, 61, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(143, 87, 255, 0.3);
  color: #f2e9d0;
}

.hero {
  padding: 72px 0 34px;
}

.hero-shell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px;
  background:
    radial-gradient(circle at 12% 6%, rgba(143, 87, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(57, 217, 138, 0.14), transparent 33%),
    rgba(13, 16, 24, 0.86);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.45);
}

.hero-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: start;
}

.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #0d0f16;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero .hero-visual:not(.hero-visual--home) {
  min-height: 0;
  height: 185px;
  max-height: 185px;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-visual:not(.hero-visual--home) picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero .hero-visual:not(.hero-visual--home) img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.meta-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.meta-box strong {
  color: #fbe8bc;
  font-size: 20px;
  display: block;
}

.delivery-number-link {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 141, 0, 0.9);
  border-radius: 999px;
  color: #ffc266;
  background: rgba(255, 141, 0, 0.14);
  box-shadow: 0 0 14px rgba(255, 124, 0, 0.45);
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.delivery-number-link:hover {
  border-color: rgba(255, 166, 33, 1);
  box-shadow: 0 0 18px rgba(255, 124, 0, 0.6);
  transform: translateY(-1px);
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(57, 217, 138, 0.5);
  background: rgba(57, 217, 138, 0.14);
}

.payment-icon svg {
  width: 13px;
  height: 13px;
  fill: #46e59a;
}

.label {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(245, 190, 61, 0.06);
  font-size: 14px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.2;
  margin: 0 0 14px;
}

h1 {
  margin-top: 14px;
  font-size: clamp(32px, 4.6vw, 56px);
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(143, 87, 255, 0.1), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(245, 190, 61, 0.05), rgba(255, 255, 255, 0));
  overflow: hidden;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 35px rgba(0, 0, 0, 0.45);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(143, 87, 255, 0), rgba(143, 87, 255, 0.25), rgba(57, 217, 138, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-media-wrap {
  position: relative;
  border-bottom: 1px solid #332c17;
  background: #0f0f0f;
}

.product-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #1a1405;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 10px;
}

.product-weight {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(8, 8, 8, 0.76);
  border: 1px solid #3a3017;
  color: #dfd4b4;
  font-size: 12px;
  border-radius: 999px;
  padding: 5px 10px;
}

.product-addon {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  z-index: 2;
  pointer-events: none;
}

.product-addon-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1) contrast(1.45) brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.85));
  opacity: 0.95;
}

.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  margin: 0 0 6px;
  font-size: 30px;
}

.product-desc {
  margin: 0 0 10px;
  min-height: 38px;
  font-size: 14px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.product-price {
  color: var(--gold);
  font-size: 36px;
  font-weight: 800;
}

.product-price-bgn {
  color: #d9cfb0;
  font-size: 20px;
}

.product-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.product-bottom .btn {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding: 10px 12px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #332c17;
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(8, 8, 8, 0.7);
}

.qty-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #433616;
  background: #111;
  color: #e6d8b5;
  font-weight: 700;
  line-height: 1;
}

.qty-value {
  min-width: 16px;
  text-align: center;
  color: #efe7cf;
  font-weight: 700;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(245, 190, 61, 0.04), rgba(245, 190, 61, 0.01));
}

.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 22px;
}

.section {
  padding: 40px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.intro-details {
  margin: 0 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  width: fit-content;
  max-width: 100%;
}

.intro-details[open] {
  width: 100%;
}

.intro-details summary {
  cursor: pointer;
  padding: 7px 28px 7px 11px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
  position: relative;
  user-select: none;
}

.intro-details summary::-webkit-details-marker {
  display: none;
}

.intro-details summary::after {
  content: "+";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.intro-details[open] summary::after {
  content: "−";
}

.intro-details summary:hover {
  color: var(--gold);
}

.intro-details > p {
  margin: 0;
  padding: 0 11px 9px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(4px);
}

.panel:hover {
  border-color: rgba(245, 190, 61, 0.28);
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 12, 18, 0.75);
}

.seo-table th,
.seo-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: #f5e6bf;
  font-weight: 700;
  background: rgba(245, 190, 61, 0.08);
}

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

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
}

.small {
  font-size: 14px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(120deg, rgba(143, 87, 255, 0.16), rgba(57, 217, 138, 0.12));
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.contact-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
}

.app-pill-viber {
  border-color: rgba(136, 82, 255, 0.72);
  background: rgba(136, 82, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(136, 82, 255, 0.34);
}

.app-pill-telegram {
  border-color: rgba(0, 153, 255, 0.76);
  background: rgba(0, 153, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.34);
}

.app-pill-whatsapp {
  border-color: rgba(37, 211, 102, 0.58);
  background: rgba(37, 211, 102, 0.16);
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.2);
}

.app-btn-viber,
.app-btn-telegram,
.app-btn-whatsapp {
  border-width: 1px;
  backdrop-filter: blur(2px);
}

.app-btn-viber {
  border-color: rgba(136, 82, 255, 0.72);
  background: rgba(136, 82, 255, 0.24);
  color: #efe6ff;
  box-shadow: inset 0 0 0 1px rgba(136, 82, 255, 0.28);
}

.app-btn-telegram {
  border-color: rgba(0, 153, 255, 0.76);
  background: rgba(0, 153, 255, 0.24);
  color: #e6f5ff;
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.28);
}

.app-btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.72);
  background: rgba(37, 211, 102, 0.22);
  color: #e8ffef;
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.28);
}

.phone-btn span {
  display: inline;
  line-height: 1.1;
}

.phone-btn span + span {
  margin-left: 4px;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: #ece2c6;
  background: rgba(255, 255, 255, 0.04);
}

.cart-link {
  text-decoration: none;
}

.topbar-inner > .cart-chip {
  margin-left: auto;
}

.cart-chip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cart-chip .cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.cart-chip--has-items {
  border-color: rgba(245, 190, 61, 0.45);
}

.cart-shell {
  max-width: 760px;
  margin: 0 auto;
}

.cart-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 18px;
}

.cart-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  background: rgba(7, 9, 14, 0.72);
}

.cart-item img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-title {
  font-weight: 700;
  margin-bottom: 3px;
}

.cart-item-price {
  color: #eace87;
  font-weight: 700;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cart-feedback {
  min-height: 20px;
  margin: 8px 0 0;
  color: #ffbd6f;
}

.checkout-card {
  max-width: 620px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at 10% 5%, rgba(245, 190, 61, 0.16), transparent 36%),
    radial-gradient(circle at 90% 95%, rgba(143, 87, 255, 0.15), transparent 35%),
    rgba(10, 12, 18, 0.85);
}

.checkout-methods {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.cart-fly {
  position: fixed;
  left: 0;
  top: 0;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(245, 190, 61, 0.9);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 190, 61, 0.42);
  pointer-events: none;
  z-index: 150;
}

.cart-chip.bump {
  animation: cart-bump 0.34s ease;
}

@keyframes cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.16); }
  100% { transform: scale(1); }
}

.floating-call {
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 90;
  border-radius: 999px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(245, 190, 61, 0.95), rgba(230, 168, 25, 0.95));
  color: #191200;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
}

body.page-cart .floating-call {
  bottom: 86px;
}

body.page-cart .cart-actions {
  padding-bottom: 12px;
}


footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0 12px;
  margin-top: 24px;
  background: rgba(7, 9, 14, 0.72);
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.footer-col-title {
  margin: 0 0 4px;
  font-size: 13px;
  color: #f6efdc;
}

.footer-brand-name {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
}

.footer-list {
  display: grid;
  gap: 4px;
}

.footer-list a {
  color: #cfd6e9;
  font-size: 12px;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer-list a:hover {
  color: #f5be3d;
}

.footer-divider {
  height: 1px;
  margin: 8px 0 5px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-base {
  text-align: center;
  padding: 0;
}

.footer-base p {
  margin: 0;
  color: #98a0b5;
  line-height: 1.2;
  font-size: 10px;
}

.footer-base p + p {
  margin-top: 1px;
}

.landing-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.landing-links a {
  color: var(--gold);
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 980px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand-row {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  .brand {
    order: 2;
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(10, 12, 18, 0.95);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
  }

  .topbar-inner > .btn {
    width: 100%;
    text-align: center;
  }

  .cart-chip {
    order: 3;
    margin-left: auto;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    justify-content: center;
  }

  .cart-chip .cart-label {
    display: none;
  }

  .cart-chip .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    padding: 0 4px;
  }

  .cart-chip {
    position: relative;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, 95vw);
  }

  .topbar {
    position: sticky;
    top: 0;
  }

  .topbar-inner {
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    font-size: 17px;
  }

  .hero,
  .page-hero {
    padding: 20px 0 14px;
  }

  .hero-shell {
    padding: 14px;
    border-radius: 14px;
  }

  .hero-grid {
    gap: 12px;
  }

  h1 {
    font-size: clamp(24px, 7vw, 34px);
    margin-top: 6px;
    margin-bottom: 8px;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  h3 {
    font-size: 18px;
  }

  .label {
    font-size: 12px;
    padding: 6px 10px;
  }

  .intro-details summary {
    padding: 6px 26px 6px 10px;
    font-size: 0.85rem;
  }

  .intro-details > p {
    padding: 0 10px 8px;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 0;
    max-height: 210px;
  }

  .hero-visual img {
    width: 100%;
    height: 210px;
    object-fit: cover;
  }

  body.page-shop .hero-visual img {
    object-position: center 24%;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 10px;
  }

  .meta-box {
    padding: 9px 10px;
  }

  .meta-box strong {
    font-size: 17px;
  }

  .section {
    padding: 20px 0;
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  #products {
    padding-bottom: 72px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-media-wrap {
    height: 148px;
    max-height: 148px;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-media-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .product-media {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    min-height: 0;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #0f0f0f;
  }

  .product-addon-image {
    width: 34px;
    height: 34px;
  }

  .product-body {
    padding: 10px;
  }

  .product-title {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .product-desc {
    font-size: 11px;
    min-height: 0;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
  }

  .product-price {
    font-size: 20px;
  }

  .product-price-bgn {
    font-size: 11px;
  }

  .product-body .small {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .product-bottom {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding-top: 8px;
  }

  .product-bottom .btn {
    padding: 9px 8px;
    font-size: 13px;
  }

  .qty-control {
    padding: 5px 7px;
    gap: 7px;
  }

  .qty-btn {
    width: 21px;
    height: 21px;
  }

  .btn {
    padding: 9px 14px;
    font-size: 14px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .panel {
    padding: 14px;
    border-radius: 12px;
  }

  .faq-grid {
    margin-top: 10px;
  }

  .faq-grid .panel {
    padding: 12px;
  }

  .faq-grid .panel h2 {
    font-size: 17px;
  }

  .cta-strip {
    border-radius: 12px;
    padding: 12px;
    gap: 10px;
  }

  body.page-contact .contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  body.page-contact .contact-grid .panel {
    padding: 10px 8px;
  }

  body.page-contact .contact-grid .panel h2 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  body.page-contact .contact-grid .panel p {
    margin: 0;
  }

  body.page-contact .contact-grid .btn {
    width: 100%;
    text-align: center;
    padding: 8px 6px;
    font-size: 12px;
    white-space: normal;
  }

  body.page-contact .contact-grid .phone-btn {
    padding: 7px 6px;
    font-size: 11px;
    line-height: 1.1;
  }

  body.page-contact .contact-grid .phone-btn span {
    display: block;
  }

  body.page-contact .contact-grid .phone-btn span + span {
    margin-left: 0;
  }

  body.page-delivery .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-delivery .contact-pill {
    padding: 8px 6px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  footer {
    padding: 16px 0 24px;
    margin-top: 12px;
  }

  .site-footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .site-footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-card {
    border-radius: 12px;
    padding: 12px;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .icon-link {
    width: 100%;
    justify-content: flex-start;
  }

  .cart-shell {
    max-width: 100%;
  }

  .cart-card {
    padding: 14px;
    border-radius: 12px;
  }

  body.page-cart .cart-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-cart .cart-item {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 7px;
  }

  body.page-cart .cart-item img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 8px;
  }

  body.page-cart .cart-item-title {
    font-size: 14px;
    margin-bottom: 2px;
  }

  body.page-cart .cart-item-price {
    font-size: 16px;
  }

  body.page-cart .cart-item .qty-control {
    width: fit-content;
    transform: scale(0.94);
    transform-origin: left center;
  }

  .cart-summary {
    margin-top: 10px;
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cart-actions {
    margin-top: 10px;
  }

  .cart-actions .btn {
    flex: 1 1 140px;
    text-align: center;
  }

  .checkout-card {
    padding: 14px;
    border-radius: 14px;
  }

  .floating-call {
    right: 10px;
    bottom: 10px;
    padding: 10px 13px;
    font-size: 14px;
  }

  body.page-cart .floating-call {
    display: none;
  }

  body.page-cart .cart-actions {
    padding-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .main-nav {
    padding: 6px;
  }

  .main-nav a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .hero-visual {
    max-height: 170px;
  }

  .hero-visual img {
    max-height: 170px;
  }

  body.page-shop .hero-visual img {
    max-height: 170px;
    object-position: center 20%;
  }

  .product-media-wrap {
    height: 132px;
    max-height: 132px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-price {
    font-size: 18px;
  }

  .product-price-row {
    gap: 5px;
    flex-wrap: wrap;
  }

  .product-bottom {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
  }

  .product-bottom .btn {
    padding: 9px 6px;
    font-size: 12px;
  }

  .cart-item img {
    height: 150px;
  }
}

/* Homepage hero image — full right column on desktop, hidden on mobile */
@media (min-width: 769px) {
  body.page-home .hero .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }

  body.page-home .hero .hero-visual--home {
    height: 420px;
    min-height: 0 !important;
    max-height: 420px !important;
    max-width: none !important;
    width: 100%;
    margin-left: 0;
    align-self: start;
    display: block;
    overflow: hidden !important;
    line-height: 0;
  }

  body.page-home .hero .hero-visual--home picture {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body.page-home .hero .hero-visual--home img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center 12%;
  }
}

@media (max-width: 768px) {
  body.page-home .hero .hero-visual--home {
    display: none !important;
  }
}
