/* ============================================================
   CARTONITE — GLOBAL DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --black-2:  #111111;
  --black-3:  #1a1a1a;
  --white:    #ffffff;
  --off-white:#f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e8e8e8;
  --gray-400: #9a9a9a;
  --gray-600: #555555;
  --accent:   #e8534a;     /* coral-red brand accent */
  --accent-h: #d13d35;
  --accent-s: #ff7168;
  --green:    #22c55e;
  --font-main: 'Inter', sans-serif;
  --font-head: 'Outfit', sans-serif;
  --nav-h:    64px;
  --ann-h:    38px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-main); border: none; outline: none; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px 16px;
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 100;
}

.announcement-bar a {
  color: var(--accent-s);
  text-decoration: underline;
  margin-left: 6px;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* On mobile: push icons to far right */
.nav-spacer { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--black);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: var(--transition);
  position: relative;
}

.nav-icon-btn:hover {
  background: var(--gray-100);
  color: var(--accent);
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.search-overlay.active { display: flex; }

.search-drawer {
  background: var(--white);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: slideDown .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.search-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
}

.search-icon-large {
  color: var(--gray-400);
  flex-shrink: 0;
}

.search-header input {
  flex: 1;
  border: none;
  font-size: 18px;
  padding: 8px 0;
  outline: none;
  background: transparent;
  color: var(--black);
}

.search-header input::placeholder {
  color: var(--gray-400);
}

.search-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-right: -8px;
  border-radius: 50%;
  transition: var(--transition);
}

.search-close-btn:hover {
  background: var(--gray-100);
  color: var(--black);
}

.search-results {
  padding: 16px 24px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-box input {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}

.search-box input:focus { border-color: var(--accent); }

/* Mobile menu */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  z-index: 199;
  box-shadow: var(--shadow-md);
  animation: slideDown .2s ease;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mobile-menu a:hover { background: var(--gray-100); color: var(--accent); }

/* ── BANNER SLIDER ────────────────────────────────────────── */
.banner-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Desktop: 1920x600 ratio */
  aspect-ratio: 1920 / 600;
  max-height: 600px;
}

.banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 7%;
}

.banner-content {
  color: var(--white);
  max-width: 520px;
  animation: fadeUp .6s ease;
}

.banner-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-s);
  margin-bottom: 12px;
}

.banner-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.banner-subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  font-weight: 400;
}

.btn-shop-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 31px;
  border: 1px solid var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-shop-now:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-shop-now svg { transition: transform var(--transition); }
.btn-shop-now:hover svg { transform: translateX(4px); }

/* Banner dots */
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.banner-dot.active {
  background: var(--white);
  width: 24px;
}

/* ── CATEGORIES ──────────────────────────────────────────── */
.categories-section {
  padding: 40px var(--space) 0;
  max-width: 1280px;
  margin: 0 auto;
}

.category-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-grid::-webkit-scrollbar { display: none; }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  min-width: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.category-card.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.category-icon { font-size: 24px; }
.category-name { font-size: 13px; font-weight: 600; }

/* ── SECTION TITLES ───────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.view-all-link:hover { gap: 8px; }

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.products-section {
  padding: 56px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── PRODUCT CARD ─────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-100);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
}

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

.product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

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

.product-compare {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.free-delivery-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  margin-top: 2px;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-add-cart {
  flex: 1;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid var(--black);
  text-align: center;
}

.btn-add-cart:hover {
  background: var(--black-3);
  transform: translateY(-1px);
}

.btn-buy-now {
  flex: 1;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--black);
  transition: var(--transition);
  text-align: center;
}

.btn-buy-now:hover {
  background: var(--black);
  color: var(--white);
}

/* ── LOAD MORE ────────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-load-more:hover {
  background: var(--black);
  color: var(--white);
}

/* ── EMAIL SECTION ────────────────────────────────────────── */
.email-section {
  padding: 56px 24px;
  background: var(--gray-100);
}

.email-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.email-box-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-s));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.email-box h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.email-box p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.email-form {
  display: flex;
  gap: 10px;
}

.email-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}

.email-form input:focus { border-color: var(--accent); }

.email-form button {
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--white); }

/* ── CART TOAST ───────────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast svg { color: var(--green); flex-shrink: 0; }

/* ── PRODUCT SKELETON LOADER ──────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── BUTTONS GLOBAL ───────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); }

.btn-secondary {
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--black);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover { background: var(--black); color: var(--white); }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; --ann-h: 34px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Push icons to right when nav-links hidden */
  .nav-spacer { display: block; flex: 1; }

  /* Tighter navbar on mobile */
  .navbar { padding: 0 14px; gap: 10px; }

  /* Banner: 16:9 on mobile */
  .banner-section { aspect-ratio: 16 / 9; max-height: none; }

  .banner-overlay { padding: 0 6%; }
  .banner-eyebrow { font-size: 11px; }

  .products-section { padding: 36px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .product-info { padding: 10px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 15px; }
  .btn-add-cart, .btn-buy-now { font-size: 12px; padding: 9px 6px; }

  .email-section { padding: 36px 16px; }
  .email-box { padding: 32px 20px; border-radius: var(--radius-lg); }
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }

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

  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  /* Product grid */
  .product-grid { gap: 10px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Announcement bar — prevent text overflow on tiny screens */
  .announcement-bar {
    font-size: 11px;
    padding: 8px 12px;
    height: auto;
    min-height: 34px;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
  }

  /* Navbar — tighter on small phones */
  .navbar { padding: 0 12px; gap: 6px; }
  .nav-logo img { height: 30px; }
  .nav-icon-btn { width: 34px; height: 34px; }
  .cart-badge { font-size: 9px; min-width: 14px; height: 14px; }

  /* Banner text sizes for small phones */
  .banner-title { font-size: 18px !important; line-height: 1.2; }
  .banner-subtitle { font-size: 12px !important; margin-bottom: 14px; }
  .btn-shop-now { font-size: 13px; padding: 10px 18px; }
  .banner-eyebrow { display: none; }
  .banner-dots { bottom: 10px; }

  /* Product card buttons — stack vertically on tiny screens */
  .product-actions { flex-direction: column; gap: 6px; }
  .btn-add-cart, .btn-buy-now { width: 100%; padding: 9px; font-size: 12px; }

  /* Email section */
  .email-box h2 { font-size: 20px; }
  .email-box { padding: 24px 16px; }
  .email-box-icon { width: 52px; height: 52px; }

  /* Toast — full width */
  .cart-toast { left: 12px; right: 12px; bottom: 12px; font-size: 13px; }

  /* Search overlay */
  /* Search overlay */
  .search-drawer {
    border-radius: 0;
    height: 100vh;
    max-height: 100vh;
  }
  .search-results {
    max-height: calc(100vh - 70px);
    padding: 16px;
  }
  .search-header {
    padding: 12px 16px;
  }

  /* Mobile menu */
  .mobile-menu a { font-size: 14px; padding: 13px 20px; }
}

/* ── ANTI HORIZONTAL SCROLL (all pages) ───────────────────── */
html { overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; }
* { min-width: 0; }
