/* ============================================================
   IMPRIMO.MK - PREMIUM PRINT STUDIO
   Mobile-first, Black + Gold theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --white:       #FFFFFF;
  --black:       #0B0B0B;
  --text:        #111111;
  --text-light:  #F5F5F5;
  --gold:        #EDC967;
  --gold-dark:   #EDC967;
  --gold-light:  #EDC967;
  --divider:     #E9E9E9;
  --card-bg:     #FFFFFF;
  --dark-card:   #161616;
  --dark-card2:  #1E1E1E;

  --ff-heading:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', 'Helvetica Neue', sans-serif;

  --rad:         16px;
  --rad-sm:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-gold: 0 4px 20px rgba(237,201,103,0.20);

  --transition:  200ms ease;

  --container:   1120px;
  --pad-section: clamp(56px, 8vw, 96px);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  /* room for bottom floating nav */
  padding-bottom: 76px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }
strong { font-weight: 600; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section-pad { padding: var(--pad-section) 0; }
.bg-dark { background: var(--black); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--text);
  margin-bottom: 40px;
}
.section-title.light { color: var(--text-light); }
.section-title em { color: var(--gold); font-style: italic; }

.mt-btn { margin-top: 28px; }
.br-desk { display: none; }
@media (min-width: 768px) { .br-desk { display: inline; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover, .btn-primary:active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(237,201,103,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover, .btn-secondary:active {
  background: rgba(237,201,103,0.10);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- AOS (Animate on Scroll) ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 250ms ease, transform 250ms ease;
  will-change: opacity, transform;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   01) HERO
============================================================ */
.hero-section {
  min-height: 100svh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(237,201,103,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* LOGO */
.hero-logo { margin-bottom: 36px; }

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-heading);
  font-weight: 700;
}
.logo-text-main {
  font-size: clamp(48px, 12vw, 88px);
  color: #EDC967;
  font-family: 'Findel', 'FINDEL', var(--ff-heading);
  letter-spacing: 0.12em;
  line-height: 0.95;
}
.logo-text-dot {
  font-size: clamp(8px, 2vw, 12px);
  color: var(--gold);
}
.logo-text-mk {
  font-size: clamp(18px, 4vw, 26px);
  color: var(--gold);
  letter-spacing: 0.08em;
}
.logo-tagline {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* H1 */
.hero-h1 {
  font-size: clamp(34px, 7.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Micro bullets */
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 36px;
}
.hero-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-bullets .fa-circle-check { color: var(--gold); font-size: 12px; }

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(237,201,103,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}


/* ============================================================
   02) TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--gold);
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-item i { font-size: 16px; flex-shrink: 0; }


/* ============================================================
   03) ABOUT
============================================================ */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .about-layout { flex-direction: row; align-items: flex-start; gap: 60px; }
  .about-text { flex: 0 0 340px; }
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-text strong { color: var(--text); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
}
@media (min-width: 540px) {
  .about-cards { grid-template-columns: repeat(3, 1fr); }
}

.about-card {
  background: var(--card-bg);
  border: 1.5px solid var(--divider);
  border-radius: var(--rad);
  padding: 24px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.about-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #FBF3E3, #F5E5BC);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 18px;
  margin-bottom: 16px;
}
.about-card h3 {
  font-family: var(--ff-heading);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.about-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}


/* ============================================================
   04) PRODUCTS
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--dark-card);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: var(--rad);
  padding: 28px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: rgba(237,201,103,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.product-icon {
  width: 48px; height: 48px;
  background: rgba(237,201,103,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 18px;
}
.product-card h3 {
  font-family: var(--ff-heading);
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(237,201,103,0.10);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}


/* ============================================================
   05) WHY IT MATTERS
============================================================ */

.products-browser {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.products-subcats-wrap {
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad);
  padding: 18px;
}

.products-subcats-title {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.products-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-subcat {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.product-subcat:hover,
.product-subcat.is-active {
  border-color: rgba(237,201,103,0.85);
  background: rgba(237,201,103,0.14);
  color: var(--gold-light);
}

.product-panel-detail {
  display: grid;
  gap: 18px;
}

.product-panel-copy {
  min-width: 0;
}

.product-detail-meta {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .products-browser {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

  .products-subcats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-panel-detail {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: start;
  }
}
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  
.products-browser {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.products-subcats-wrap {
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad);
  padding: 18px;
}

.products-subcats-title {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.products-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-subcat {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.product-subcat:hover,
.product-subcat.is-active {
  border-color: rgba(237,201,103,0.85);
  background: rgba(237,201,103,0.14);
  color: var(--gold-light);
}

.product-panel-detail {
  display: grid;
  gap: 18px;
}

.product-panel-copy {
  min-width: 0;
}

.product-detail-meta {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .products-browser {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

  .products-subcats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-panel-detail {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: start;
  }
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: var(--rad);
  padding: 22px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.why-num {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.why-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-body strong {
  font-size: 15px;
  color: var(--text);
  display: block;
}
.why-body span {
  font-size: 13.5px;
  color: #666;
}

.why-quote {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  font-family: var(--ff-heading);
  font-size: clamp(16px, 3vw, 20px);
  font-style: italic;
  color: var(--text);
  background: #FBF8F0;
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  line-height: 1.6;
  max-width: 680px;
}


/* ============================================================
   06) FEATURED OFFER
============================================================ */
.offer-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 860px) {
  .offer-layout { flex-direction: row; align-items: center; gap: 60px; }
  .offer-text { flex: 1; }
  .offer-img { flex: 0 0 360px; }
}

.offer-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Price Table */
.price-table {
  border: 1.5px solid rgba(237,201,103,0.25);
  border-radius: var(--rad);
  overflow: hidden;
}
.price-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(237,201,103,0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition);
}
.price-row:hover { background: rgba(255,255,255,0.03); }
.price-row i { color: var(--gold); margin-right: 8px; font-size: 12px; }
.price-row--best {
  background: rgba(237,201,103,0.08);
}
.price-row--best .price-val {
  color: var(--gold-light);
}
.price-val {
  font-weight: 700;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 16px;
}
.price-val small {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

/* Offer image */
.offer-img {
  border-radius: var(--rad);
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 340px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.offer-img img { border-radius: var(--rad); }


/* ============================================================
   07) PROCESS
============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
}

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(237,201,103,0.3);
}

.step-body h3 {
  font-family: var(--ff-heading);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.step-connector {
  width: 1.5px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), rgba(237,201,103,0.15));
  margin-left: 21.25px;
}


/* ============================================================
   08) GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .gallery-grid { gap: 16px; }
}

.gallery-item {
  position: relative;
  border-radius: var(--rad);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-card);
}
.gallery-item img {
  transition: transform 400ms ease;
  filter: brightness(0.9);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.04em;
}


/* ============================================================
   09) FAQ
============================================================ */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1.5px solid var(--divider);
}
.faq-item:first-child { border-top: 1.5px solid var(--divider); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question[aria-expanded="true"] { color: var(--gold-dark); }

.faq-icon {
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}
.faq-answer strong { color: var(--text); }


/* ============================================================
   10) CONTACT
============================================================ */
.contact-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .contact-checklist { grid-template-columns: repeat(4, 1fr); }
}

.cc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.cc-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.cc-item em { color: rgba(255,255,255,0.4); font-style: italic; }

/* Layout */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 820px) {
  .contact-layout { flex-direction: row; gap: 56px; align-items: flex-start; }
  .contact-form  { flex: 1; }
  .contact-direct { flex: 0 0 320px; }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--rad-sm);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-light);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-row select option { background: #1a1a1a; color: var(--text-light); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input[type="date"] { color-scheme: dark; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: -4px;
}

/* Direct contact */
.contact-direct h3 {
  font-family: var(--ff-heading);
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-link {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--rad-sm);
  border: 1.5px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  transition: border-color var(--transition), background var(--transition);
  background: rgba(255,255,255,0.03);
  text-align: left;
}
.contact-link:hover {
  border-color: var(--gold);
  background: rgba(237,201,103,0.07);
}
.contact-link:last-child { margin-bottom: 0; }

.cl-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-link--tel .cl-icon  { background: rgba(0,200,80,0.15); color: #4ade80; }
.contact-link--viber .cl-icon { background: rgba(139,92,246,0.18); color: #c4b5fd; }
.contact-link--wa .cl-icon    { background: rgba(34,197,94,0.16); color: #86efac; }
.contact-link--chat .cl-icon  { background: rgba(59,130,246,0.16); color: #93c5fd; }
.contact-link--social .cl-icon { background: rgba(56,189,248,0.16); color: #7dd3fc; }
.contact-link--email .cl-icon { background: rgba(237,201,103,0.15); color: var(--gold-light); }
.contact-link--fb .cl-icon   { background: rgba(24,119,242,0.15); color: #60a5fa; }
.contact-link--ig .cl-icon   { background: rgba(225,48,108,0.15); color: #f472b6; }

.cl-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  overflow: hidden;
  text-align: left;
}
.cl-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.cl-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Form success state */
.form-success {
  background: rgba(74,222,128,0.08);
  border: 1.5px solid rgba(74,222,128,0.3);
  border-radius: var(--rad-sm);
  padding: 20px;
  text-align: center;
  color: #4ade80;
  font-size: 15px;
  font-weight: 600;
  display: none;
}
.form-success.visible { display: block; }


/* ============================================================
   11) FOOTER
============================================================ */
.site-footer {
  background: #060606;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-logo-image {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  display: block;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-links a:hover {
  background: rgba(237,201,103,0.12);
  color: var(--gold);
  border-color: rgba(237,201,103,0.25);
}


/* ============================================================
   12) BOTTOM FLOATING NAV (Mobile)
============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(8,8,8,0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(237,201,103,0.4);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(237,201,103,0.12);
}

.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.bn-item i {
  font-size: 20px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.08));
}

.bn-item:hover,
.bn-item:active {
  color: var(--gold-light);
  background: rgba(237,201,103,0.12);
  transform: translateY(-1px);
}

.bn-call  { color: rgba(255,255,255,0.7); }
.bn-call i {
  color: #4ade80;
  filter: drop-shadow(0 0 12px rgba(74,222,128,0.28));
}
.bn-email i {
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(237,201,103,0.28));
}
.bn-offer i {
  color: #93c5fd;
  filter: drop-shadow(0 0 12px rgba(147,197,253,0.28));
}
.bn-net i {
  color: #fda4af;
  filter: drop-shadow(0 0 12px rgba(253,164,175,0.28));
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
}

.popup-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition);
}

.popup-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-card {
  width: min(94vw, 460px);
  max-height: min(85vh, 760px);
  overflow: auto;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  width: 32px;
  height: 32px;
}

.popup-title {
  color: var(--text-light);
  font-size: 24px;
  margin-bottom: 4px;
}

.popup-sub {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 14px;
}

.popup-list {
  display: grid;
  gap: 8px;
}

.popup-list a {
  display: block;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.popup-form {
  display: grid;
  gap: 10px;
}

.popup-form .form-row input,
.popup-form .form-row select,
.popup-form .form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--rad-sm);
  padding: 13px 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-light);
}

.popup-form .form-row input::placeholder,
.popup-form .form-row textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.popup-form .form-row select option {
  background: #1a1a1a;
}

.popup-form-msg {
  min-height: 20px;
  color: #4ade80;
  font-size: 13px;
  text-align: center;
}

.popup-consent {
  margin-top: 2px;
  margin-bottom: 2px;
}

.popup-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.popup-socials a {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
}

.popup-socials i {
  font-size: 20px;
}


/* ============================================================
   MEDIA QUERIES - Desktop enhancements
============================================================ */

/* ============================================================
   MOBILE - fine-tuning
============================================================ */

/* Small phones (< 380px) */
@media (max-width: 379px) {
  .hero-h1 { font-size: 30px; }
  .btn { font-size: 14px; padding: 13px 22px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .contact-checklist { grid-template-columns: 1fr; }
  .trust-item { font-size: 12px; }
}

/* Medium phones (380-639px) */
@media (max-width: 639px) {
  .hero-ctas .btn { min-width: 200px; }
  .offer-layout { gap: 28px; }
  .process-step { gap: 14px; }
  .step-num { width: 38px; height: 38px; font-size: 14px; }
  .step-connector { margin-left: 18px; }
  .about-cards { grid-template-columns: 1fr; }
  
.products-browser {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.products-subcats-wrap {
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad);
  padding: 18px;
}

.products-subcats-title {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.products-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-subcat {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.product-subcat:hover,
.product-subcat.is-active {
  border-color: rgba(237,201,103,0.85);
  background: rgba(237,201,103,0.14);
  color: var(--gold-light);
}

.product-panel-detail {
  display: grid;
  gap: 18px;
}

.product-panel-copy {
  min-width: 0;
}

.product-detail-meta {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .products-browser {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

  .products-subcats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-panel-detail {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: start;
  }
}
.why-grid { grid-template-columns: 1fr; }
  .contact-layout { gap: 28px; }
  .faq-question { font-size: 14.5px; }
  .section-title { margin-bottom: 28px; }
}

/* Ensure images don't overflow */
.gallery-item, .offer-img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Touch targets minimum 44px */
.faq-question { min-height: 54px; }
.bn-item { min-height: 62px; }
.btn { min-height: 48px; }

/* Hover-only states for desktop - no hover on touch */
@media (hover: none) {
  .gallery-item img { filter: brightness(1); }
  .product-card { transform: none !important; }
  .about-card { box-shadow: none !important; border-color: var(--divider) !important; }
  .why-item { box-shadow: none !important; border-color: var(--divider) !important; }
}
@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.05); }
  .product-card:hover { transform: translateY(-3px); }
}

/* Large screens */
@media (min-width: 1024px) {
  .about-cards { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   ACCESSIBILITY & REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-aos] { opacity: 1; transform: none; }
  [data-aos].aos-visible { opacity: 1; transform: none; }
}

/* ============================================================
   CLIENT UPDATE 2026-03
============================================================ */
:root {
  --black: #161616;
  --dark-card: #1d1d1d;
  --dark-card2: #262626;
}

.hero-section,
.bg-dark {
  background: linear-gradient(180deg, #1f1f1f 0%, #131313 100%);
}

.hero-utility {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.lang-switch,
.hero-socials {
  display: inline-flex;
  gap: 8px;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-btn,
.hero-socials a {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  border-radius: 999px;
  font-size: 12px;
  padding: 7px 11px;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Segoe UI", sans-serif;
  transition: all var(--transition);
}

.lang-btn.active,
.lang-btn:hover,
.hero-socials a:hover {
  border-color: rgba(237,201,103,0.8);
  color: var(--gold-light);
  background: rgba(237,201,103,0.12);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 6px 9px;
}

.flag-icon {
  width: 20px;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.22);
}

.hero-delivery-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.flag-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-bullets-secondary .flag-icon {
  width: 18px;
  height: auto;
}
.menu-toggle {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(12,12,12,0.72);
  color: rgba(255,255,255,0.96);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: calc(10px + env(safe-area-inset-top, 0px));
  right: 12px;
  z-index: 2101;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}
.menu-toggle i {
  font-size: 18px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 340px);
  height: 100svh;
  background: #121212;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding: 18px 16px 28px;
  overflow-y: auto;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--text-light);
}

.mobile-menu-close {
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  width: 34px;
  height: 34px;
}

.mobile-menu-link {
  display: block;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 14px;
}

.mobile-menu-subtitle {
  margin: 14px 2px 8px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-lang {
  margin-bottom: 12px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.hero-logo {
  display: inline-block;
}

.hero-logo-image {
  width: min(92vw, 620px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-logo-subtitle {
  margin-top: -92px;
  text-align: center;
  font-size: clamp(10px, 1.3vw, 14px);
  letter-spacing: 0.28em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.logo-mark {
  display: block;
  width: max-content;
  margin: 0 auto;
}

.logo-get-noticed {
  width: 100%;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 30px);
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  color: var(--gold);
  margin-top: 10px;
  text-transform: uppercase;
  box-sizing: border-box;
}

.logo-tagline {
  width: 100%;
  text-align: center;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.86);
  margin-top: 8px;
}

.hero-h1 {
  text-transform: uppercase;
  font-size: clamp(20px, 4.2vw, 34px);
  letter-spacing: 0.04em;
}

.hero-h1 em {
  font-style: normal;
}

.hero-sub {
  max-width: 700px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-bullets span {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  min-height: 0;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.hero-bullets-secondary {
  display: flex;
  justify-content: center;
  margin: 0 auto 22px;
}

.hero-bullets-secondary .hero-delivery-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-body);
}

.hero-bullets-secondary .hero-dot {
  color: var(--gold);
  opacity: 0.9;
}

.products-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.products-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tab {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
}

.product-tab:hover,
.product-tab.is-active {
  border-color: rgba(237,201,103,0.85);
  color: #151515;
  background: var(--gold);
}

.products-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-quick a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 12px;
}

.product-panels {
  margin-top: 10px;
}

.product-panel {
  display: none;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: var(--dark-card);
  border-radius: var(--rad);
  padding: 24px 20px;
}

.product-panel.is-active {
  display: block;
}

.product-panel h3 {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 24px;
}

.product-panel p {
  color: rgba(255,255,255,0.66);
  margin-bottom: 14px;
}

.product-panel ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

.product-panel li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-media-grid img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #dcdcdc;
  padding: 2px;
}


.products-browser {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.products-subcats-wrap {
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad);
  padding: 18px;
}

.products-subcats-title {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.products-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-subcat {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.product-subcat:hover,
.product-subcat.is-active {
  border-color: rgba(237,201,103,0.85);
  background: rgba(237,201,103,0.14);
  color: var(--gold-light);
}

.product-panel-detail {
  display: grid;
  gap: 18px;
}

.product-panel-copy {
  min-width: 0;
}

.product-detail-meta {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .products-browser {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

  .products-subcats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-panel-detail {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: start;
  }
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  
.products-browser {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.products-subcats-wrap {
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad);
  padding: 18px;
}

.products-subcats-title {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.products-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-subcat {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.product-subcat:hover,
.product-subcat.is-active {
  border-color: rgba(237,201,103,0.85);
  background: rgba(237,201,103,0.14);
  color: var(--gold-light);
}

.product-panel-detail {
  display: grid;
  gap: 18px;
}

.product-panel-copy {
  min-width: 0;
}

.product-detail-meta {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .products-browser {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

  .products-subcats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-panel-detail {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: start;
  }
}
.why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-item:last-child {
    grid-column: span 2;
  }
}

.why-num {
  min-width: 28px;
  font-size: 22px;
}

@media (max-width: 640px) {
  .product-media-grid {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
  }

  .product-media-grid img {
    border-radius: 8px;
    padding: 8px;
  }

  .contact-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-bottom: 26px;
  }

  .cc-item {
    align-items: center;
    font-size: 13px;
  }

  .hero-utility {
    top: 14px;
  }

  .hero-logo-subtitle {
    margin-top: -48px;
  }

  .hero-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets span {
    justify-content: center;
    text-align: center;
    width: fit-content;
    max-width: 100%;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.2;
    min-height: 0;
    white-space: normal;
    overflow: visible;
  }

  .hero-bullets .hero-delivery-line {
    min-height: 0;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    white-space: normal;
    padding: 8px 12px;
  }

  .hero-bullets .hero-delivery-line .flag-row {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-shrink: 0;
  }

  .hero-bullets .hero-delivery-line .flag-icon {
    width: 18px;
    box-shadow: none;
    border-radius: 2px;
  }

  .hero-bullets-secondary {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets-secondary .hero-delivery-line {
    width: 100%;
    min-height: 0;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    line-height: 1.3;
    padding: 7px 9px;
    gap: 6px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-ctas .btn {
    min-height: 44px;
    font-size: 14px;
    padding: 11px 18px;
  }

  .hero-bullets-secondary .hero-dot {
    display: none;
  }

  .hero-bullets-secondary .flag-row {
    gap: 6px;
  }

  .hero-bullets-secondary .flag-icon {
    width: 17px;
  }

  .products-toolbar {
    gap: 12px;
    margin-bottom: 16px;
  }

  .products-cats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-tab {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }

  .products-cats .product-tab:last-child {
    grid-column: 1 / -1;
    max-width: 250px;
    justify-self: center;
  }

  .products-quick {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .products-quick a {
    justify-content: center;
    padding: 8px 6px;
    font-size: 11px;
    min-width: 0;
  }
}

/* ============================================================
   DEMO FLOATING CHAT WIDGET (HTML + CSS only)
============================================================ */
.demo-chat-widget {
  position: fixed;
  right: 14px;
  bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  z-index: 1700;
  font-family: var(--ff-body);
}

.demo-chat-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.demo-chat-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #151515;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 11px 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  cursor: pointer;
}

.demo-chat-bubble i {
  color: var(--gold);
}

.demo-chat-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(92vw, 350px);
  background: #121212;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.demo-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.demo-chat-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-chat-title strong {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}

.demo-chat-title span {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
}

.demo-chat-title span i {
  color: #22c55e;
  font-size: 8px;
  margin-right: 4px;
}

.demo-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}

.demo-chat-body {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.01);
}

.demo-msg {
  max-width: 84%;
  padding: 9px 11px;
  border-radius: 11px;
  font-size: 12.5px;
  line-height: 1.4;
}

.demo-msg-bot {
  justify-self: start;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.demo-msg-user {
  justify-self: end;
  color: #151515;
  background: var(--gold);
}

.demo-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px 12px;
}

.demo-chat-chips button {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
}

.demo-chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.demo-chat-input input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.86);
  font-size: 12.5px;
  padding: 9px 10px;
}

.demo-chat-input input::placeholder {
  color: rgba(255,255,255,0.42);
}

.demo-chat-input button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold);
  color: #151515;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.demo-chat-toggle:checked ~ .demo-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.demo-chat-toggle:checked + .demo-chat-bubble {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 992px) {
  .demo-chat-widget {
    right: 20px;
    bottom: 24px;
  }
}





/* PRODUCTS SELECT ONLY OVERRIDE */
.products-subcats-wrap {
  display: grid !important;
  gap: 12px !important;
}

.products-subcats-title {
  margin-bottom: 0 !important;
}

.products-subcats-select-wrap {
  display: block !important;
  width: 100% !important;
}

.products-subcats-select {
  display: block !important;
  width: 100% !important;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  appearance: auto;
  -webkit-appearance: menulist;
}

.products-subcats-select:focus {
  border-color: rgba(237,201,103,0.85);
}

.products-subcats {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* PRODUCTS RESPONSIVE SUBCATEGORIES OVERRIDE */
.products-subcats-wrap {
  display: grid !important;
  gap: 12px !important;
}

.products-subcats-select-wrap {
  display: none !important;
  width: 100% !important;
}

.products-subcats-select {
  display: block !important;
  width: 100% !important;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  appearance: auto;
  -webkit-appearance: menulist;
}

.products-subcats {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  visibility: visible !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .products-subcats-select-wrap {
    display: block !important;
  }

  .products-subcats {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* PRODUCTS MOBILE CUSTOM DROPDOWN */
.products-mobile-dropdown {
  position: relative;
}

.products-mobile-trigger,
.products-mobile-option {
  font-family: var(--ff-body);
}

.products-mobile-trigger {
  display: none;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(237,201,103,0.75);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 600;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.products-mobile-trigger i {
  font-size: 13px;
  transition: transform 180ms ease;
}

.products-mobile-dropdown.is-open .products-mobile-trigger i {
  transform: rotate(180deg);
}

.products-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #181818;
  box-shadow: 0 18px 36px rgba(0,0,0,0.38);
}

.products-mobile-dropdown.is-open .products-mobile-menu {
  display: grid;
  gap: 6px;
}

.products-mobile-option {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  text-align: left;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
}

.products-mobile-option.is-active {
  color: #151515;
  background: var(--gold);
}

@media (max-width: 768px) {
  .products-subcats-select {
    display: none !important;
  }

  .products-mobile-trigger {
    display: flex;
  }
}

/* PRODUCTS REBUILD OVERRIDE */
.products-browser {
  display: grid !important;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

.products-subcats-wrap {
  display: grid !important;
  gap: 14px !important;
  padding: 28px !important;
  border: 1.5px solid rgba(255,255,255,0.08) !important;
  background: var(--dark-card) !important;
  border-radius: var(--rad) !important;
}

.products-subcats-title {
  margin-bottom: 0 !important;
}

.products-subcats {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  height: auto !important;
  overflow: visible !important;
}

.product-subcat {
  border: 1px solid rgba(255,255,255,0.16) !important;
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.82) !important;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.product-subcat.is-active {
  background: rgba(237,201,103,0.14) !important;
  border-color: rgba(237,201,103,0.9) !important;
  color: var(--gold) !important;
}

.products-subcats-select {
  display: none !important;
}

.products-subcats-select-wrap {
  display: none !important;
  position: relative !important;
}

.products-mobile-trigger {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1.5px solid rgba(237,201,103,0.75);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.products-mobile-trigger i {
  font-size: 13px;
  transition: transform 180ms ease;
}

.products-subcats-select-wrap.is-open .products-mobile-trigger i {
  transform: rotate(180deg);
}

.products-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #181818;
  box-shadow: 0 18px 36px rgba(0,0,0,0.38);
}

.products-subcats-select-wrap.is-open .products-mobile-menu {
  display: grid;
  gap: 6px;
}

.products-mobile-option {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  text-align: left;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
}

.products-mobile-option.is-active {
  color: #151515;
  background: var(--gold);
}

.product-panel-detail {
  display: block !important;
}

.product-panel-detail .product-media-grid img {
  background: #dcdcdc;
  object-fit: contain;
  padding: 2px;
}

@media (max-width: 768px) {
  .products-browser {
    grid-template-columns: 1fr !important;
  }

  .products-subcats-wrap {
    padding: 22px !important;
  }

  .products-subcats {
    display: none !important;
  }

  .products-subcats-select-wrap {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .product-media-grid img,
  .product-panel-detail .product-media-grid img {
    padding: 1px;
  }
}

/* Desktop and mobile use the same subcategory dropdown */
.products-subcats {
  display: none !important;
}

.products-subcats-select-wrap {
  display: block !important;
}


/* TRUST STRIP ALIGNMENT FIX */
.trust-grid {
  align-items: center;
}

.trust-item {
  align-items: center;
  justify-content: center;
  min-height: 24px;
  line-height: 1.2;
}

.trust-item i {
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.trust-item span {
  display: inline-block;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .trust-grid {
    align-items: center;
  }
}



/* 3-image product grid fallback */
.product-media-grid.has-three-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-media-grid.has-three-images img:nth-child(1) {
  grid-column: 1 / -1;
  max-width: calc(50% - 5px);
  justify-self: center;
}

@media (max-width: 640px) {
  .product-media-grid.has-three-images img:nth-child(1) {
    max-width: calc(50% - 4px);
  }
}

/* Uppercase main product categories */
.product-tab {
  text-transform: uppercase;
}

/* Slightly larger product images for mugs and keychains */
.product-media-grid.is-zoomed-subcat,
.product-panel-detail .product-media-grid.is-zoomed-subcat {
  gap: 12px;
}

.product-media-grid.is-zoomed-subcat img,
.product-panel-detail .product-media-grid.is-zoomed-subcat img {
  padding: 2px;
  transform: scale(1.02);
  transform-origin: center;
}

@media (max-width: 768px) {
  .product-media-grid.is-zoomed-subcat,
  .product-panel-detail .product-media-grid.is-zoomed-subcat {
    gap: 8px;
  }

  .product-media-grid.is-zoomed-subcat img,
  .product-panel-detail .product-media-grid.is-zoomed-subcat img {
    padding: 1px;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .trust-strip {
    padding: 28px 0;
  }

  .trust-strip .container {
    max-width: 1360px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .trust-grid {
    gap: 44px;
  }

  .trust-item {
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    min-height: 32px;
  }

  .trust-item i {
    width: 22px;
    min-width: 22px;
    font-size: 20px;
  }
}

/* PRODUCT IMAGE LIGHTBOX */
.product-media-grid img.is-lightbox-ready,
.product-panel-detail .product-media-grid img.is-lightbox-ready {
  cursor: zoom-in;
}

.product-lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(4px);
}

.product-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100vw, 1100px);
  height: 100svh;
  margin: 0 auto;
  padding: 72px 18px 28px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.product-lightbox__figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.product-lightbox__image {
  width: 100%;
  max-width: min(92vw, 860px);
  max-height: calc(100svh - 150px);
  object-fit: contain;
  border-radius: 18px;
  background: #f1f1f1;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.product-lightbox__counter {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-lightbox__close,
.product-lightbox__nav {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.94);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.product-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
}

.product-lightbox__nav {
  width: 52px;
  height: 52px;
  font-size: 16px;
}

.product-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 768px) {
  .product-lightbox__dialog {
    width: 100%;
    padding: 68px 12px 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-lightbox__figure {
    order: 1;
  }

  .product-lightbox__nav {
    position: absolute;
    bottom: 24px;
    width: 46px;
    height: 46px;
    z-index: 2;
  }

  .product-lightbox__nav--prev {
    left: 14px;
  }

  .product-lightbox__nav--next {
    right: 14px;
  }

  .product-lightbox__image {
    max-width: 100%;
    max-height: calc(100svh - 180px);
    border-radius: 14px;
  }
}
/* Temporarily hide demo chat widget */
.demo-chat-widget { display: none !important; }

/* Catalog coming soon popup */
.popup-card--catalog-soon {
  width: min(94vw, 520px);
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(237,201,103,0.18);
  box-shadow: 0 20px 48px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.03);
}

.popup-card--catalog-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(237,201,103,0) 0%, rgba(237,201,103,0.95) 50%, rgba(237,201,103,0) 100%);
}

.catalog-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(237,201,103,0.26);
  background: rgba(237,201,103,0.08);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-soon-badge i {
  font-size: 12px;
}

.popup-card--catalog-soon .popup-title {
  margin-bottom: 8px;
}

.popup-card--catalog-soon .popup-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  max-width: 42ch;
}

.catalog-soon-note {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 14px 14px 13px;
}

.catalog-soon-note strong {
  display: block;
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 7px;
}

.catalog-soon-note p {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .popup-card--catalog-soon {
    padding: 20px 16px 16px;
  }

  .popup-card--catalog-soon::before {
    left: 16px;
    right: 16px;
  }

  .popup-card--catalog-soon .popup-sub {
    font-size: 14px;
  }

  .catalog-soon-note p {
    font-size: 13.5px;
  }
}
/* Desktop fixed language switch */
@media (min-width: 1024px) {
  .hero-utility .lang-switch {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 12px;
    z-index: 2101;
    padding: 6px;
    border-radius: 999px;
    background: rgba(12,12,12,0.72);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  }

  .hero-utility .lang-switch .lang-btn {
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
    background: transparent;
    border-color: transparent;
  }

  .hero-utility .lang-switch .lang-btn.active,
  .hero-utility .lang-switch .lang-btn:hover {
    background: rgba(237,201,103,0.12);
    border-color: rgba(237,201,103,0.45);
  }
}