/* ---- Hero slider (desktop balanced panel / phone compact) ---- */
.hero {
  padding: 0;
  align-items: stretch;
}

.hero-media {
  overflow: hidden;
}

.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7.5s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-media-shade {
  background:
    linear-gradient(105deg, rgba(8, 6, 8, 0.82) 0%, rgba(8, 6, 8, 0.55) 32%, rgba(8, 6, 8, 0.22) 58%, rgba(8, 6, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 6, 8, 0.38) 0%, rgba(8, 6, 8, 0.1) 45%, rgba(8, 6, 8, 0.5) 100%);
}

.hero-slider-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 28px) 0 40px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 34rem);
  text-align: left;
}

.hero-brand-fixed {
  margin: 0 0 18px;
}

.hero-brand-fixed .hero-logo {
  height: clamp(46px, 5.5vw, 62px);
  width: auto;
  filter:
    drop-shadow(0 0 0.8px #ffffff)
    drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.85))
    drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}

.hero-slides {
  display: grid;
  width: 100%;
}

.hero-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-slide .hero-title {
  max-width: 14ch;
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-slide .hero-desc {
  max-width: 26rem;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.hero-slide-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
  width: 100%;
}

.hero-slide-stats div {
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  text-align: center;
}

.hero-slide-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.hero-slide-stats span {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 0;
}

.hero-dots {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-dot.is-active {
  width: 26px;
  background: #fff;
  border-color: #fff;
}

@media (min-width: 769px) {
  .hero-slider-wrap {
    padding-left: clamp(0px, 2vw, 28px);
  }

  .hero-panel {
    width: min(100%, 36rem);
  }

  .hero-slide .hero-title {
    font-size: clamp(2.15rem, 3.6vw, 3.1rem);
  }
}

/* Soft premium header over hero (not heavy black) */
body:not(.page-inner) .header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10, 8, 10, 0.55) 0%, rgba(10, 8, 10, 0.22) 100%);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

body:not(.page-inner) .header:not(.scrolled) .logo-image-header {
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  body:not(.page-inner) {
    --header-h: 64px;
  }

  .hero {
    min-height: 0;
  }

  .hero-media-shade {
    background:
      linear-gradient(180deg, rgba(8, 6, 8, 0.58) 0%, rgba(8, 6, 8, 0.4) 45%, rgba(8, 6, 8, 0.72) 100%);
  }

  .hero-bg {
    object-position: center 35%;
  }

  .hero-slider-wrap {
    min-height: 0;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 18px) 0 28px;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    align-items: stretch;
  }

  /* Keep Rehman Telecom wordmark in hero; keep header R smaller */
  .hero-brand-fixed {
    display: block;
    margin: 0 0 14px;
    width: 100%;
  }

  .hero-brand-fixed .hero-logo {
    height: 40px;
    display: block;
  }

  .logo-image-header {
    width: 30px;
    height: 30px;
  }

  body:not(.page-inner) .header:not(.scrolled) .logo-image-header {
    width: 30px;
    height: 30px;
  }

  .hero-slides,
  .hero-slide,
  .hero-cta,
  .hero-slide-stats,
  .hero-dots {
    width: 100%;
  }

  .hero-slide {
    align-items: stretch;
  }

  .hero-kicker {
    margin: 0 0 8px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero-slide .hero-title {
    font-size: clamp(1.7rem, 7.2vw, 2.15rem);
    max-width: none;
    width: 100%;
    margin: 0 0 10px;
  }

  .hero-slide .hero-desc {
    font-size: 0.95rem;
    max-width: none;
    width: 100%;
    margin: 0 0 14px;
    line-height: 1.45;
  }

  .hero-cta {
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-cta-secondary {
    display: none;
  }

  .hero-slide-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  .hero-slide-stats div {
    padding: 14px 10px;
  }

  .hero-slide-stats strong {
    font-size: 1.18rem;
  }

  .hero-dots {
    margin-top: 16px;
    justify-content: flex-start;
  }
}

/* legacy hero panel classes kept harmless */
.hero-layout,
.hero-content,
.hero-trust {
  display: none;
}

.section-header {
  max-width: 42rem;
}

.section-header p {
  max-width: 40rem;
}

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

.reviews-grid-live {
  margin-bottom: 28px;
}

.reviews-grid-live:empty {
  display: none;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card > p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.review-empty {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.review-empty strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.review-empty p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 46rem;
}

.review-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.review-proof-row a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.review-proof-row a:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.trust-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin: 0 0 28px;
}

.trust-highlight {
  background: var(--bg-card);
  padding: 20px 18px;
}

.trust-highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.trust-highlight span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.review-submit-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.review-submit-copy h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 8px 0 12px;
}

.review-submit-copy p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.review-submit-form .form-group {
  margin-bottom: 14px;
}

.review-submit-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.review-submit-form input,
.review-submit-form select,
.review-submit-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font: inherit;
}

.review-form-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .trust-highlights,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-submit-panel {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .trust-highlights,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Bulk supply + WhatsApp group ---- */
.whatsapp-group-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  margin-bottom: 28px;
  background: var(--bg-inverse);
  color: #fff;
}

.whatsapp-group-cta .section-tag {
  color: #f0b7bf;
}

.whatsapp-group-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}

.whatsapp-group-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
  max-width: 36rem;
}

.whatsapp-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.whatsapp-group-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-group-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-group-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.bulk-terms-note {
  padding: 18px 22px;
  margin-bottom: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-red);
}

.bulk-terms-note p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.bulk-visual-grid {
  display: none;
}

.stock-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stock-shot {
  margin: 0;
  background: #111;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.stock-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.stock-shot:hover img {
  transform: scale(1.03);
}

.stock-shot figcaption {
  display: none;
}

.products-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 8px 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.products-trust-bar .trust-stat {
  text-align: left;
  padding: 22px 22px 24px;
  border-right: 1px solid var(--border);
}

.products-trust-bar .trust-stat:last-child {
  border-right: none;
}

.products-trust-bar .trust-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 8px;
}

.products-trust-bar .trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: currentColor;
  margin-bottom: 6px;
  line-height: 1.25;
}

.products-trust-bar .trust-stat span:not(.trust-label) {
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.packing-section {
  background: var(--bg-secondary);
}

.packing-note {
  margin: 0 0 24px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-red);
}

.packing-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 58rem;
}

.packing-note strong {
  color: var(--text-primary);
}

.packing-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.packing-shot {
  margin: 0;
  background: #111;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.packing-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.packing-shot:hover img {
  transform: scale(1.03);
}

.packing-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.packing-points-row {
  grid-template-columns: repeat(4, 1fr);
}

.packing-point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.packing-point strong {
  font-family: var(--font-display);
  color: var(--brand-red);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.packing-point span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .stock-gallery,
  .packing-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .packing-points-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-trust-bar .trust-stat:nth-child(2) {
    border-right: none;
  }

  .products-trust-bar .trust-stat:nth-child(1),
  .products-trust-bar .trust-stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .packing-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stock-gallery,
  .packing-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .products-trust-bar {
    grid-template-columns: 1fr;
  }

  .products-trust-bar .trust-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .products-trust-bar .trust-stat:last-child {
    border-bottom: none;
  }

  .packing-points,
  .packing-points-row {
    grid-template-columns: 1fr;
  }
}

.bulk-visual {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bulk-visual-wide {
  grid-row: 1 / span 2;
}

.bulk-visual img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  flex: 1;
}

.bulk-visual figcaption {
  padding: 12px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
}

.bulk-gallery-grid:empty {
  display: none;
}

.parts-compact .parts-cta {
  margin-top: 0;
}

.market-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.market-item {
  background: var(--bg-card);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.market-item-wide {
  grid-column: span 2;
}

.market-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.market-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.market-footnote,
.export-global-note,
.payment-footnote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 48rem;
}

.export-global-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border-left: 3px solid var(--brand-red);
}

.payment-section {
  background: var(--bg-secondary);
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
}

.payment-card-soon {
  opacity: 0.92;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.payment-card p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.65;
}

.payment-card-soon p {
  margin-bottom: 0;
}

.social-btn.tiktok svg {
  color: #111;
}

/* Multi-page chrome */
.nav-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 800;
}

body.page-inner .header,
body.page-inner .header.scrolled {
  background: rgba(246, 247, 249, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(22, 18, 22, 0.06);
  color: #161616;
}

body.page-inner .logo-image-header {
  filter:
    drop-shadow(0 0 0.5px rgba(22, 18, 22, 0.25))
    drop-shadow(0 2px 8px rgba(22, 18, 22, 0.12));
}

body.page-inner .menu-toggle span {
  background: #161616;
}

.header:not(.scrolled) .nav-links a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.header:not(.scrolled) .nav-links a[aria-current="page"] {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

body.page-inner .header .nav-links a,
body.page-inner .header .nav-links a[aria-current="page"],
.header.scrolled .nav-links a[aria-current="page"] {
  text-shadow: none;
}

body.page-inner .nav-links a[aria-current="page"],
.header.scrolled .nav-links a[aria-current="page"] {
  color: var(--accent);
}

.page-hero {
  padding: 120px 0 48px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(123, 30, 46, 0.08), transparent 55%),
    linear-gradient(180deg, #faf8f8 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 8px 0 12px;
  color: var(--text-primary);
  line-height: 1.15;
}

.page-hero p {
  color: #2c3138;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page-links,
.home-teaser-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-page-links {
  justify-content: center;
}

.section.home-teaser {
  padding: 64px 0;
}

.section.home-teaser .section-header {
  margin-bottom: 28px;
}

.process-steps-teaser {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stock-gallery-teaser,
.packing-gallery-teaser {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
}

.home-final-cta {
  padding-top: 12px;
  padding-bottom: 64px;
}

.home-final-copy {
  margin-bottom: 22px;
}

.home-final-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 10px;
}

.home-final-copy p {
  color: #2c3138;
  margin: 0;
  line-height: 1.65;
}

.contact-delivery-note {
  display: none;
}

.contact-location-note {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #2c3138;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-ok {
  background: rgba(26, 122, 76, 0.1);
  border: 1px solid rgba(26, 122, 76, 0.28);
  color: #145c3a;
}

.form-status.is-warn {
  background: rgba(180, 83, 9, 0.1);
  border: 1px solid rgba(180, 83, 9, 0.28);
  color: #9a3412;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 100px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(22, 18, 22, 0.12);
  cursor: pointer;
  z-index: 998;
  transition: transform 0.2s, opacity 0.2s;
}

.back-to-top[hidden] {
  display: none !important;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .whatsapp-group-cta,
  .bulk-visual-grid,
  .payment-grid,
  .market-list {
    grid-template-columns: 1fr;
  }

  .market-item-wide {
    grid-column: auto;
  }

  .bulk-visual-wide {
    grid-row: auto;
  }

  .process-steps-teaser,
  .stock-gallery-teaser,
  .packing-gallery-teaser {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    padding-top: 100px;
  }

  .back-to-top {
    right: 18px;
    bottom: 92px;
  }
}

@media (max-width: 560px) {
  .process-steps-teaser,
  .stock-gallery-teaser,
  .packing-gallery-teaser {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish ? phones & small browsers */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.page-inner .nav-links,
  .nav-links {
    background: #121214;
    color: #ffffff;
  }

  body.page-inner .nav-links a,
  body.page-inner .nav-links a[aria-current="page"] {
    color: #ffffff !important;
    text-shadow: none;
  }

  body.page-inner .nav-links a[aria-current="page"] {
    color: #f3c6ce !important;
  }

  .section {
    padding: 64px 0;
  }

  .section.home-teaser {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
    padding-left: 14px;
  }

  .section-header h2,
  .page-hero h1,
  .home-final-copy h2 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-hero {
    padding: 104px 0 36px;
  }

  .page-hero-actions,
  .home-teaser-cta,
  .home-page-links {
    width: 100%;
  }

  .page-hero-actions .btn,
  .home-teaser-cta .btn,
  .home-page-links .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .stock-gallery,
  .packing-gallery,
  .stock-gallery-teaser,
  .packing-gallery-teaser {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .process-steps,
  .process-steps-teaser {
    grid-template-columns: 1fr !important;
  }

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

  .whatsapp-group-actions {
    display: grid;
    gap: 10px;
  }

  .whatsapp-group-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .market-list {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    right: 14px;
    bottom: 86px;
    width: 42px;
    height: 42px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 18px;
  }
}

@media (max-width: 420px) {
  .stock-gallery,
  .packing-gallery,
  .stock-gallery-teaser,
  .packing-gallery-teaser,
  .market-list {
    grid-template-columns: 1fr !important;
  }

  .proof-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* WhatsApp app chooser */
.wa-chooser {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.wa-chooser[hidden] {
  display: none !important;
}

.wa-chooser-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wa-chooser-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: #111014;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 20px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.wa-chooser-kicker {
  margin: 0 0 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.wa-chooser-sheet h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wa-chooser-copy {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.wa-chooser-actions {
  display: grid;
  gap: 10px;
}

.wa-chooser-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.wa-chooser-btn-primary {
  background: #25d366;
  color: #053b1f;
}

.wa-chooser-btn-primary:hover {
  background: #1fbe5a;
}

.wa-chooser-btn-business {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.wa-chooser-btn-business:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.wa-chooser-cancel {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.wa-chooser-cancel:hover {
  color: #fff;
}

@media (min-width: 769px) {
  .wa-chooser {
    align-items: center;
  }
}
