/* style.css */
:root {
  --black: #000;
  --white: #fff;

  --text: #111111;
  --brand: #353433;
  --brand-accent: #25d366;

  --font-base:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;

  --container: 1400px;
  --pad-x: 16px;

  --topbar-h: 32px;
  --header-h: 64px;

  --ease: 0.2s ease;
}

/* ===== Reset ===== */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-base);
  background: #161616;
  color: var(--text);
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
a {
  color: inherit;
  text-decoration: none;
}

/* ===== Topbar ===== */
.topbar {
  height: var(--topbar-h);
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
}
.topbar-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.topbar a {
  color: #fff;
  opacity: 0.9;
}
.topbar a:hover {
  opacity: 1;
}
.divider {
  opacity: 0.45;
}
.topbar .whatsapp {
  font-weight: 700;
}

/* ===== Header ===== */
.site-header {
  height: var(--header-h);
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;

  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);

  /* ✅ Desktop layout EXACT: logo | menu | search */
  display: grid;
  grid-template-columns: 260px 1fr 360px;
  align-items: center;
  gap: 16px;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none; /* hidden on desktop */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.hamburger::before {
  top: 14px;
  box-shadow: 0 8px 0 #fff; /* middle line */
}
.hamburger::after {
  top: 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* space between logo icon + text */
}

.logo img {
  display: block;
  width: auto;
  height: 48px; /* change this to whatever size you want */
  object-fit: contain;
}

/* If you want the icon smaller than the text */
.logo img:first-child {
  height: 42px;
}

/* If you want the text part bigger */
.logo .logo-img {
  height: 42px;
}
/* Menu (center) */
.menu {
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* Search (right) */
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  padding: 8px 10px;
}
.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
}
.search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.search-submit {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.search-submit img {
  width: 25px;
}
.search-icon {
  display: none;
}

/* ===== Page / HH blocks ===== */
.page {
  background: #fff;
}
.hh-wrap {
  width: 100%;
  margin: 0 auto;
}

.hh-card {
  position: relative;
  overflow: hidden;
  background: #111;
  outline: 10px solid #fff;
  outline-offset: -10px;
  height: 45vh;
}
.hh-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.813) 0%,
    rgba(0, 0, 0, 0.352) 35%,
    rgba(0, 0, 0, 0.05) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hh-content {
  position: absolute;
  left: 34px;
  bottom: clamp(100px, 8vh, 110px);
  z-index: 2;
  color: #fff;
  max-width: 520px;
}
.hh-title {
  margin: 0;
  font-size: clamp(46px, 6.5vw, 60px);
  line-height: 1;
  letter-spacing: 0.5px;
  font-weight: 900;
  text-transform: uppercase;
}
.hh-subtitle {
  margin: 10px 0 16px 0;
  font-size: 14px;
  opacity: 0.92;
}
.hh-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: #f3f1f1;
  color: #111;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.hh-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hh-hero {
  min-height: clamp(420px, 75vh, 800px);
}

.hh-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
  margin-left: 14px;
  margin-right: 14px;
}
.hh-half {
  min-height: clamp(320px, 60vh, 625px);
}

.hh-full {
  margin-top: 14px;
  min-height: clamp(420px, 75vh, 700px);
}

/* Backgrounds */
.hh-bg--hero {
  background-image: url("images/bodyprotection2.webp");
}
.hh-bg--hi {
  background-image:
    linear-gradient(
      20deg,
      rgba(0, 0, 0, 0.722) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("images/disposables-main.webp");
}
.hh-bg--mid {
  background-image:
    linear-gradient(
      20deg,
      rgba(0, 0, 0, 0.722) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("images/safety-equip-main.webp");
}
.hh-bg--acc {
  background-image:
    linear-gradient(
      20deg,
      rgba(0, 0, 0, 0.722) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("images/ppe-main.webp");
}

/* ===== why choose us ===== */
/* ===== Why Choose Us ===== */
.why {
  background: #fff;
  padding: 80px 16px;
}

.why-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.why-title {
  margin: 0 0 16px 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #363434;
}

.why-sub-title {
  margin: 0 0 16px 0;
  font-size: clamp(20px, 2vw, 20px);
  font-weight: 450;
  letter-spacing: 0.5px;
  color: #111;
}
.why-intro {
  max-width: 820px;
  margin: 0 auto 56px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* item */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why-item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;
}

.why-item img {
  width: 62px;
}
/* ===== contact us ===== */
/* ===== Contact Section (FULL WIDTH) ===== */
.contact-section {
  background: #fff;
  padding: 0; /* remove side padding for true full width */
}

/* full-width grid */
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  width: 100%;
  min-height: 520px;
}

/* MAP – edge to edge */
.contact-map {
  width: 100%;
  height: 100%;
}

.map {
  filter: grayscale(80%) invert(90%);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* INFO SIDE */
.contact-info {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f2bb49;
}

.contact-title {
  margin: 0 0 28px 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 3vw, 50px);
  font-weight: 800;
  color: #363434;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li a {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: #1d1d1d;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.contact-list li a:hover {
  opacity: 0.75;
}

.contact-icon {
  width: 24px;
  text-align: center;
  font-size: 18px;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 40px 20px;
  }

  .contact-map {
    min-height: 260px;
  }
}

/* =======FOOTER / SITEMAP =========*/

/* =========================
   FOOTER / SITEMAP
   ========================= */

.site-footer {
  width: 100%;
  background: #363434;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 46px var(--pad-x) 18px;
  padding-top: 5em;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: clamp(30px, 3vw, 40px);
  text-transform: uppercase;
}

.footer-logo img {
  width: 44px;
  height: auto;
  display: block;
}

.footer-desc {
  margin: 14px 0 14px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 14px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.footer-muted {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.footer-form input {
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 12px;
  outline: none;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-form button {
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: #ffffff;
  color: #111;
  font-weight: 900;
  letter-spacing: 0.4px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.footer-form button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.footer-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a {
  display: block;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  opacity: 0.92;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-link {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.35;
}

.ficon {
  width: 18px;
  display: inline-flex;
  justify-content: center;
  opacity: 0.9;
}

.footer-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.footer-whatsapp img {
  width: 60px;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-bottom-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.sep {
  opacity: 0.5;
}

.footer-social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  text-transform: lowercase;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   NEW ARRIVALS
   ============================================================ */
.new-arrivals {
  width: 100%;
  background: #e6e5e5;
  padding: clamp(40px, 6vw, 80px) 0;
}

.new-arrivals-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.new-arrivals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.new-arrivals-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 3vw, 50px);
  margin: 0;
  letter-spacing: 0.3px;
  color: #363434;
}

.new-arrivals-desc {
  margin: 0;
  max-width: 420px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* GRID */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

/* CARD */
.arrival-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.arrival-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.arrival-img {
  height: 220px;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
}

.arrival-img img {
  max-width: 100%;
  max-height: 100%;
  width: 250px; /* your preferred size */
  object-fit: contain;
}
/* BODY */
.arrival-body {
  padding: 16px;
}

.arrival-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: #363434;
  padding: 4px 8px;
  border-radius: 4px;
}

.arrival-name {
  margin: 6px 0 4px 0;
  font-size: 15px;
  font-weight: 800;
  color: #111;
}

.arrival-cat {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* CTA */
.new-arrivals-cta {
  margin-top: 32px;
  text-align: center;
}

.arrival-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  background: #363434;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.arrival-btn:hover {
  opacity: 0.9;
}

/* ============================================================
   SHOP MEGA MENU (FULL WIDTH / SLIDE DOWN)
   ============================================================ */

.shop-trigger {
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.6px;
  opacity: 0.95;
  cursor: pointer;
  padding: 0;
}
.shop-trigger:hover {
  opacity: 1;
  color: #f2bb49;
}

/* overlay behind mega */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 95; /* under header */
}

/* panel */
.mega {
  position: fixed;
  left: 0;
  width: 100%;
  top: calc(var(--topbar-h) + var(--header-h));
  background: #fff;
  color: #111;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  z-index: 99;

  /* CLOSED state */
  transform: translateY(-24px);
  max-height: 0;
  overflow: hidden;

  visibility: hidden;
  pointer-events: none;

  /* ✅ glide speed (same open + close) */
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.35s;
}

.mega-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad-x) 26px;
}

.mega-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mega-heading {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.mega-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.6);
}
.mega-close:hover {
  color: rgba(0, 0, 0, 0.9);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.mega-col {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 14px;
}
.mega-col:last-child {
  border-right: 0;
  padding-right: 0;
}

.mega-title {
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.55);
}

.mega-item {
  display: block;
  padding: 10px 10px;
  margin: 2px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  transition:
    background var(--ease),
    transform var(--ease);
}
.mega-item:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
}

.mega-spacer {
  height: 12px;
}

/* OPEN state */
.mega.is-open {
  transform: translateY(0);
  max-height: 70vh;

  visibility: visible;
  pointer-events: auto;

  /* ✅ IMPORTANT: no transition override here */
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}
.mega-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* responsive columns */
@media (max-width: 1100px) {
  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  /* hide mega entirely on mobile (your hamburger will control mobile nav later) */
  .mega,
  .mega-overlay {
    display: none !important;
  }
}

/* ============================================================
   MOBILE NAV (HAMBURGER)
   ============================================================ */

body.mobile-nav-open {
  overflow: hidden;
}

/* overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 23, 0.496);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 120; /* above header */
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* panel */
.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--topbar-h) + var(--header-h));
  background: #faf9f9;
  color: #333232;

  transform: translateY(-14px);
  max-height: 0;
  overflow: hidden;

  visibility: hidden;
  pointer-events: none;

  z-index: 121;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.45s;
}

.mobile-nav.is-open {
  transform: translateY(0);
  max-height: calc(100vh - (var(--topbar-h) + var(--header-h)));
  overflow: auto;

  visibility: visible;
  pointer-events: auto;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.mobile-nav-inner {
  padding: 14px 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.mobile-nav-title {
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
}

.mobile-close {
  border: 0;
  background: transparent;
  color: #333232;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* accordion trigger */
.mobile-acc-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #333232;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 6px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-acc-icon {
  opacity: 0.8;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

.mobile-acc-trigger[aria-expanded="true"] .mobile-acc-icon {
  transform: rotate(180deg);
}

.mobile-acc-panel {
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-subhead {
  display: block;
  margin: 10px 6px 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #333232;
}

.mobile-link {
  display: block;
  padding: 10px 10px;
  margin: 2px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333232;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-all {
  margin-top: 8px;
  font-weight: 900;
  color: #333232;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-toplink {
  display: block;
  padding: 14px 6px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  color: #333232;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   Back Button
   ============================================================ */

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;

  margin-bottom: 0.75rem;
  padding: 0.5rem 0.8rem;

  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);

  background-color: #fff;
  color: #111;

  transition:
    background-color 0.15s ease,
    color 0.45s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.back-home:hover {
  transform: translateY(-1px);
  background-color: #111;
  color: #e6e5e5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.back-home:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
}

/* ============================================================
   cart Button
   ============================================================ */

/* Topbar buttons should look like links */
.topbar button {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  opacity: 0.9;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.topbar button:hover {
  opacity: 1;
}

/* Cart button layout */
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-icon {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
}

.cart-badge {
  color: #fff;
}

/* ---------- CART (drawer) ---------- */
/* =========================
   CART (Drawer) — FINAL
   Use this ONE version only
========================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9998;
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: #0f1115;
  color: #e6e5e5;
  transform: translateX(102%);
  transition: transform 0.22s ease;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-head h3 {
  margin: 0;
  font-family:
    "Bebas Neue",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0.04em;
  font-size: 22px;
}

.cart-close {
  background: transparent;
  border: none;
  color: #e6e5e5;
  font-size: 20px;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0; /* IMPORTANT: allows footer to stay visible */
  padding: 12px 16px;
}

.cart-empty {
  padding: 16px 0;
  opacity: 0.85;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.cart-item-title {
  font-weight: 650;
  line-height: 1.2;
  margin: 0 0 6px;
  font-size: 14px;
}

.cart-item-meta {
  font-size: 12px;
  opacity: 0.85;
}

.cart-remove {
  display: inline-block;
  margin-top: 10px; /* more space above Remove */
  font-size: 12px;
  opacity: 0.85;
  text-decoration: underline;
  background: transparent;
  border: none;
  color: #e6e5e5;
  cursor: pointer;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 14px; /* more space between - qty + */
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #e6e5e5;
  cursor: pointer;
}

.cart-foot {
  flex: 0 0 auto; /* locks to bottom */
  padding: 18px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #fff;

  background: transparent;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cart-checkout:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.cart-clear-full {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;

  background: #fff;
  color: #111;
  border: 1px solid #fff;

  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cart-clear-full:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
}

/* extra breathing room under Clear */
.cart-foot::after {
  content: "";
  display: block;
  height: 14px;
}

.menu-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
}

/* Only mobile */
@media (min-width: 921px) {
  .mobile-nav,
  .mobile-overlay {
    display: none !important;
  }
}
/* ============================================================
   search
   ============================================================ */
/* ===== Mobile Search Overlay ===== */
.msearch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9998;
}
.msearch {
  position: fixed;
  left: 50%;
  top: 14px;
  transform: translateX(-50%) translateY(-12px);
  width: min(560px, calc(100vw - 24px));
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 9999;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.msearch-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}
.msearch input {
  width: 100%;
  min-width: 0;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px; /* prevents iOS zoom */
}
.msearch-go {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.msearch-close {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

/* open state */
.msearch-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.msearch.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* only needed on mobile; harmless on desktop */
@media (min-width: 901px) {
  .msearch,
  .msearch-overlay {
    display: none;
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-arrivals-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .new-arrivals-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive footer */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-form {
    grid-template-columns: 1fr;
  }
  .footer-form button {
    width: 100%;
  }
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 520px) {
  .why {
    padding: 60px 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 240px 1fr 320px;
  }
}

/* ✅ MOBILE HEADER BEHAVIOR */
@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 48px 1fr 48px;
    gap: 10px;
  }

  .hamburger {
    display: inline-block;
    grid-column: 1;
    justify-self: start;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    gap: 0;
  }
  .logo-text {
    display: none;
  }
  .logo img {
    width: 42px;
  }

  .logo .logo-img {
    display: none;
  }

  .menu {
    display: none;
  }

  .search {
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    border-radius: 0;
    display: grid;
    place-items: center;
  }
  .search input {
    display: none;
  }
  .search-submit {
    display: none;
  }
  .search-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .search-icon img {
    width: 30px;
  }
  .hh-row {
    grid-template-columns: 1fr;
  }

  .hh-row {
    gap: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .hh-content {
    left: 22px;
  }

  .hh-full {
    margin-top: 0px;
  }

  .footer-whatsapp {
    position: fixed;
    right: 10px;
    bottom: calc(1px + env(safe-area-inset-bottom));
    z-index: 9999;
  }
}

@media (max-width: 520px) {
  .hh-card {
    outline: 8px solid #fff;
    outline-offset: -8px;
  }
}
/* =========================
   HH blocks = full screen on mobile
   ========================= */
@media (max-width: 920px) {
  /* each card becomes a full "screen" section */
  .hh-card {
    height: 100svh;
    min-height: 100svh;
  }

  /* keep your interior spacing so text isn't against edges */
  .hh-content {
    left: 18px;

    max-width: 560px;
  }

  /* remove any extra margins so they stack clean */
  .hh-row,
  .hh-full {
    margin: 0;
    gap: 0;
  }

  .hh-wrap {
    scroll-snap-type: y mandatory;
  }
  .hh-card {
    scroll-snap-align: start;
  }

  .hh-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
