/* TransLEZ Sale & Services — Homepage */
:root {
  --blue: #0047ab;
  --blue-dark: #003380;
  --blue-light: #1a6fd4;
  --navy: #051d33;
  --navy-deep: #031525;
  --pink: #e91e8c;
  --pink-light: #ff4b9a;
  --lavender: #ebe6f8;
  --lavender-2: #d8e6f8;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --star: #f5a623;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 40, 100, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Montserrat", "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

/* ——— Header ——— */
.top-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: none;
}

.search-bar {
  display: flex;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.search-bar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.12);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
}

.search-bar input::placeholder {
  color: #9ca3af;
}

.search-bar button {
  background: var(--blue);
  color: #fff;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: var(--blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.2s;
}

.header-action:hover {
  color: var(--blue);
}

.header-action svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.header-action .label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-action .label small {
  font-size: 0.68rem;
  color: var(--muted);
}

.header-action .label strong {
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ——— Category Nav ——— */
.cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}

.cat-nav .container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-nav .container::-webkit-scrollbar {
  display: none;
}

.cat-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  color: var(--text);
  transition: color 0.15s, background 0.15s;
}

.cat-nav a:hover {
  color: var(--blue);
  background: rgba(0, 71, 171, 0.06);
}

.cat-nav a.all-cats {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.cat-nav a.deals {
  color: var(--blue);
  font-weight: 700;
}

/* ——— Hero ——— */
.hero {
  background: linear-gradient(135deg, #ebe4f7 0%, #e0e8f8 45%, #d4e4f7 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  min-height: 420px;
  padding-block: 2.5rem;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero p.lead {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 28ch;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 71, 171, 0.45);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
}

.hero-trust-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: var(--blue);
  flex-shrink: 0;
}

.hero-trust-item .icon svg {
  width: 16px;
  height: 16px;
}

.hero-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-platform {
  position: absolute;
  border-radius: 50%;
  background: #e8eef8;
  box-shadow: 0 12px 40px rgba(80, 60, 140, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-platform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hp-1 {
  width: 160px;
  height: 160px;
  top: 10%;
  left: 8%;
  z-index: 2;
}

.hp-2 {
  width: 200px;
  height: 200px;
  top: 5%;
  right: 12%;
  z-index: 3;
}

.hp-3 {
  width: 180px;
  height: 180px;
  bottom: 8%;
  left: 22%;
  z-index: 4;
}

.hp-4 {
  width: 130px;
  height: 130px;
  bottom: 15%;
  right: 8%;
  z-index: 2;
}

.off-badge {
  position: absolute;
  top: 8%;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(145deg, #a855f7, #7c3aed);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
  z-index: 10;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

.off-badge span {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* ——— Features strip / single-line slider ——— */
.features {
  padding: 1.25rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.features-slider-wrap {
  overflow: hidden;
  padding: 1rem 0;
}

.features-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.features-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: features-marquee 28s linear infinite;
  padding: 0.25rem 1rem;
}

.features-slider:hover .features-track {
  animation-play-state: paused;
}

.features-track .feature-card {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 300px;
  width: 280px;
}

@keyframes features-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(0, 71, 171, 0.3);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.12), rgba(26, 111, 212, 0.08));
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.feature-card p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ——— Section common ——— */
.section {
  padding: 3rem 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.section-title.centered {
  justify-content: center;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  flex: 1;
  max-width: 80px;
}

.section-title:not(.centered)::before,
.section-title:not(.centered)::after {
  display: none;
}

.view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.view-all:hover {
  text-decoration: underline;
}

/* ——— Categories ——— */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
}

.cat-item {
  text-align: center;
}

.cat-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 40, 100, 0.12);
  background: var(--bg-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cat-item:hover .cat-circle {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.2);
}

.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cat-item .shop-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

/* ——— Products ——— */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-img {
  position: relative;
  background: #f3f4f6;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.product-img img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #9ca3af;
  transition: color 0.2s, transform 0.2s;
}

.wish-btn:hover,
.wish-btn.active {
  color: var(--pink);
}

.wish-btn svg {
  width: 18px;
  height: 18px;
}

.product-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.product-body h3 {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price .current {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.product-price .old {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-rating .stars {
  color: var(--star);
  letter-spacing: -1px;
}

.btn-cart {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem;
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.btn-cart:hover {
  background: var(--blue);
  color: #fff;
}

.btn-cart svg {
  width: 16px;
  height: 16px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: auto;
}

.product-actions .btn-cart {
  margin-top: 0;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.35);
}

/* ——— Promo banners ——— */
.promos {
  padding: 0.5rem 0 3rem;
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.promo-card {
  border-radius: 16px;
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.promo-offer {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 40%, #e879f9 100%);
}

.promo-deal {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 50%, #f472b6 100%);
}

.promo-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e1033;
  margin-bottom: 0.35rem;
}

.promo-card .promo-sub {
  font-size: 0.95rem;
  color: #3b2854;
  margin-bottom: 1rem;
  font-weight: 500;
}

.coupon-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed var(--pink);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
}

.countdown {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  text-align: center;
  min-width: 56px;
}

.countdown-unit .num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1.2;
}

.countdown-unit .lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

.btn-pink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-pink:hover {
  background: #c2186b;
  transform: translateY(-1px);
}

.promo-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-art img {
  max-height: 160px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* ——— Testimonials ——— */
.testimonials {
  background: var(--bg-soft);
}

.testimonial-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 3px solid #eef2ff;
}

.testimonial-card .stars {
  color: var(--star);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  letter-spacing: 1px;
}

.testimonial-card blockquote {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  font-style: italic;
}

.testimonial-card .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .loc {
  font-size: 0.75rem;
  color: var(--muted);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--blue);
  z-index: 2;
  transition: background 0.2s;
}

.testimonial-nav:hover {
  background: var(--blue);
  color: #fff;
}

.testimonial-nav.prev {
  left: -20px;
}

.testimonial-nav.next {
  right: -20px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background 0.2s, width 0.2s;
}

.testimonial-dots button.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

/* ——— Bottom features ——— */
.features-bottom {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--navy);
  color: #c8d4e0;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr 0.9fr;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-foot {
  height: 56px;
  width: auto;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 22ch;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.82rem;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #fff;
}

.contact-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 1.75;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--blue);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-bottom {
  background: var(--navy-deep);
  padding: 1rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-policies a:hover {
  color: #fff;
}

/* ——— Mobile menu ——— */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.65rem);
  }

  .header-action .label small {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-block: 1.5rem;
    gap: 1rem;
  }

  .hero p.lead {
    max-width: none;
    margin-inline: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-trust-item {
    font-size: 0.72rem;
  }

  .hero-visual {
    height: 260px;
    order: -1;
    max-width: 100%;
  }

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

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

  .promo-card {
    grid-template-columns: 1fr auto;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 0;
  }

  .section-head {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1280px, 100% - 1.25rem);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cat-circle {
    width: 88px;
    height: 88px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .product-body {
    padding: 0.75rem;
  }

  .product-body h3 {
    font-size: 0.8rem;
  }

  .product-price .current {
    font-size: 0.95rem;
  }

  .btn-cart,
  .btn-buy {
    font-size: 0.68rem;
    padding: 0.55rem 0.4rem;
  }

  .promo-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
    min-height: auto;
  }

  .promo-art {
    order: -1;
  }

  .promo-art img {
    max-height: 100px;
  }

  .countdown {
    justify-content: center;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-nav.prev {
    left: 0;
  }

  .testimonial-nav.next {
    right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-visual {
    height: 220px;
  }

  .hp-1 {
    width: 90px;
    height: 90px;
    top: 8%;
    left: 5%;
    display: block;
  }

  .hp-2 {
    width: 120px;
    height: 120px;
    top: 0;
    right: 12%;
  }

  .hp-3 {
    width: 110px;
    height: 110px;
    bottom: 5%;
    left: 18%;
  }

  .hp-4 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 5%;
    display: block;
  }

  .off-badge {
    width: 70px;
    height: 70px;
    font-size: 0.58rem;
    top: 4%;
    right: 2%;
  }

  .off-badge span {
    font-size: 0.9rem;
  }

  .features-track .feature-card {
    min-width: 220px;
    width: 240px;
  }

  .page-hero {
    padding: 1.25rem 0 1rem;
  }

  .page-section {
    padding: 1.25rem 0 2rem;
  }
}

/* ——— Header: desktop full / mobile logo+menu ——— */
.header-desktop {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 64px;
}

.header-mobile {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 56px;
}

.header-side {
  display: flex;
  align-items: center;
}

.header-left { justify-content: flex-start; }
.header-right { justify-content: flex-end; }

.logo-center {
  justify-self: center;
}

.logo-center img {
  height: 44px;
}

.menu-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(0, 71, 171, 0.06);
  transition: background 0.2s;
}

.menu-btn:hover { background: rgba(0, 71, 171, 0.12); }
.menu-btn svg { width: 22px; height: 22px; }

.header-action {
  position: relative;
}

.wish-badge {
  right: -6px;
}

@media (max-width: 900px) {
  .header-desktop { display: none !important; }
  .header-mobile { display: grid !important; }
}

/* Hide old cat-nav if present */
.cat-nav { display: none !important; }

/* Side drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 29, 51, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 200;
}

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

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.side-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}

.drawer-logo { height: 40px; width: auto; }

.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text);
}
.drawer-close svg { width: 20px; height: 20px; }

.drawer-search {
  display: flex;
  margin: 1rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.drawer-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.9rem;
}

.drawer-search button {
  background: var(--blue);
  color: #fff;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
}
.drawer-search button svg { width: 16px; height: 16px; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.75rem 1rem;
}

.drawer-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s, color 0.15s;
}

.drawer-nav a:hover {
  background: rgba(0, 71, 171, 0.08);
  color: var(--blue);
}

.drawer-cats {
  padding: 0.5rem 1.1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.drawer-cats h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.drawer-cats a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--text);
}
.drawer-cats a:hover { color: var(--blue); }

body.drawer-open { overflow: hidden; }

/* ——— Mobile sticky bottom bar ——— */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 40, 100, 0.08);
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0.15rem;
  position: relative;
}

.bn-item.active,
.bn-item:hover {
  color: var(--blue);
}

.bn-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bn-icon svg {
  width: 22px;
  height: 22px;
}

.bn-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

@media (max-width: 900px) {
  .bottom-nav { display: grid; }
  body.has-bottom-nav { padding-bottom: 72px; }
  .site-footer { margin-bottom: 0; }
}

/* Toast */
.tlz-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tlz-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 901px) {
  .tlz-toast { bottom: 32px; }
}

/* Product badge */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  z-index: 1;
}

.btn-cart.added {
  background: var(--blue) !important;
  color: #fff !important;
}

/* ——— Inner pages ——— */
.page-hero {
  background: linear-gradient(135deg, #ebe4f7 0%, #d4e4f7 100%);
  padding: 2rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-dark);
}

.page-hero p {
  color: #4b5563;
  margin-top: 0.35rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.breadcrumb a:hover { color: var(--blue); }

.page-section {
  padding: 2rem 0 3rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.shop-filters {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem;
  position: sticky;
  top: 80px;
}

.shop-filters h3 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.filter-list a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.filter-list a:hover,
.filter-list a.active {
  background: rgba(0, 71, 171, 0.08);
  color: var(--blue);
  font-weight: 600;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-toolbar select {
  font: inherit;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.categories-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cat-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cat-card .cat-card-body {
  padding: 1rem;
  text-align: center;
}

.cat-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.cat-card p { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.cat-card .shop-link { font-size: 0.82rem; font-weight: 700; color: var(--blue); }

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.pdp-gallery {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.pdp-gallery img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
}

.pdp-info h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.qty-control span {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
}

/* Cart / wishlist tables */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f4f6;
}

.cart-summary {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  background: #fff;
  position: sticky;
  top: 80px;
}

.cart-summary h3 { margin-bottom: 1rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}
.summary-row.total {
  font-weight: 800;
  font-size: 1.1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.empty-state h2 {
  color: var(--text);
  margin: 0.75rem 0 0.5rem;
  font-size: 1.35rem;
}

/* Forms */
.form-card {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  background: #fff;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.12);
}

.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-tabs button {
  flex: 1;
  padding: 0.65rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--bg-soft);
  color: var(--muted);
}

.form-tabs button.active {
  background: var(--blue);
  color: #fff;
}

.content-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}

.content-card h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.65rem;
  color: var(--blue-dark);
}

.content-card h2:first-child { margin-top: 0; }

.content-card p, .content-card li {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.content-card ul { padding-left: 1.25rem; list-style: disc; }

.account-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
}

.account-nav a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.account-nav a.active,
.account-nav a:hover {
  background: rgba(0, 71, 171, 0.08);
  color: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-box {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.info-box h4 { margin-bottom: 0.35rem; }
.info-box p { font-size: 0.88rem; color: var(--muted); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  padding: 0 1.1rem 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.track-result {
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: none;
}

.track-result.show { display: block; }

.track-steps {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.track-step {
  flex: 1;
  min-width: 100px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.track-step.done { color: var(--blue); font-weight: 700; }
.track-step .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  margin: 0 auto 0.4rem;
}
.track-step.done .dot { background: var(--blue); }

@media (max-width: 900px) {
  .shop-layout,
  .cart-layout,
  .pdp,
  .account-panel,
  .contact-grid,
  .categories-page-grid {
    grid-template-columns: 1fr;
  }
  .shop-filters { position: static; }
  .categories-page-grid { grid-template-columns: repeat(2, 1fr); }
  
}

.coupon-box { cursor: pointer; }
.top-header { position: sticky; top: 0; z-index: 100; }

html, body { overflow-x: hidden; max-width: 100vw; }
.hero-visual { overflow: hidden; }

.search-bar button svg { width: 18px; height: 18px; }
.header-action.cart-btn .cart-badge, .header-action .wish-badge { right: -4px; }
