/* ════════════════════════════════════════════════════════════
   MORE TECH COMPUTERS — base.css
   Light theme · single source of truth for design tokens
════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS (global) ── */
:root {
  /* Brand */
  --primary-color: #00b6d6;
  --primary:    #00b6d6;
  --primary-dk: #0092ad;
  --primary-soft: rgba(0,182,214,0.10);
  --primary-line: rgba(0,182,214,0.28);
  --accent:     #ff6b2b;

  /* Light surfaces */
  --page:      #ffffff;
  --section:   #f4f6f9;
  --dark:      #ffffff;   /* legacy alias → now light page */
  --dark2:     #f4f6f9;   /* legacy alias → now soft grey  */
  --surface:   #ffffff;
  --surface2:  #f0f3f7;
  --border:    #e6eaf0;
  --border-2:  #d9dfe8;

  /* Text */
  --text:      #0f1722;
  --text-2:    #3a4252;
  --muted:     #6b7384;

  --gold:      #f5a300;
  --green:     #16a34a;

  --radius:    16px;
  --radius-sm: 10px;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow:    0 10px 40px rgba(15,23,34,0.10);
  --shadow-sm: 0 4px 18px rgba(15,23,34,0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-body), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Page wrapper (overrides any old dark container) */
.container {
  max-width: none !important;
  padding: 0;
  margin: 0;
  background: var(--page);
}

/* ════════════════════════════════════════
   NAVBAR  (dark glass — sits over hero + on scroll)
════════════════════════════════════════ */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 28, 0.55);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 16px;
}

/* LOGO */
.logo {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.logo span { color: var(--primary-color); }

/* LINKS */
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-color); }

/* ── MEGA MENU ── */
.mega-wrapper { position: relative; }
.mega-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: #0a0f1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.mega-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-column h4 {
  color: var(--primary-color);
  margin: 0 0 12px;
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}
.mega-column a {
  display: block;
  color: #d4d8e0;
  margin-bottom: 9px;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.mega-column a:hover { color: var(--primary-color); }

/* ── CART ── */
.cart-wrapper { position: relative; cursor: pointer; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid rgba(10,15,28,0.9);
}

.icon-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    outline: none;
    border: none;
    background: rgba(255, 255, 255, 0.99);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border: 2px solid var(--primary-color);
}
.cart-wrapper:hover .icon-btn { background: var(--primary-color); color: #fff; }

/* ── NAV ACTIONS ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #0a0f1c;
  min-height: 100vh;
  padding: 20px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  z-index: 1100;
}
.mobile-menu.active { right: 0; }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.drawer-logo {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-head);
}
.drawer-logo span { color: var(--primary-color); }
.close-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary-color); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 14px 16px; }
  .nav-actions { gap: 12px; }
  .icon-btn svg { width: 20px; }
  .hamburger span { width: 22px; }
}

/* ════════════════════════════════════════
   HERO BASE  (transparent over image, dark overlay, white text)
════════════════════════════════════════ */
.hero-global {
  position: relative;
  height: auto;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8,12,20,0.82) 0%, rgba(8,12,20,0.6) 50%, rgba(0,146,173,0.4) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
  max-width: 820px;
  z-index: 2;
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 26px;
  line-height: 1.15;
  font-family: var(--font-head);
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

/* ── Hero search (base fallback — home.html overrides) ── */
.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.18);
}
.search-icon { color: rgba(255,255,255,0.7); padding-left: 10px; }
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 13px;
  font-size: 16px;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.6); }
.hero-search button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}
.hero-search button:hover { background: var(--primary-dk); }

/* ════════════════════════════════════════
   COOKIE BANNER  (light)
════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(15,23,34,0.18);
  padding: 1.1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  animation: fadeInUp .8s ease-in-out;
  font-size: 0.95rem;
}
.cookie-text { flex: 1; color: var(--text-2); line-height: 1.55; }
.cookie-link { color: var(--primary-color); text-decoration: underline; }
.cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-btn {
  border: none;
  border-radius: 100px;
  padding: .6rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  font-family: var(--font-body);
  transition: all .3s ease;
}
.cookie-btn.accept { background: var(--primary-color); color: #fff; }
.cookie-btn.accept:hover { background: var(--primary-dk); }
.cookie-btn.decline { background: #f0f3f7; color: var(--text-2); }
.cookie-btn.decline:hover { background: #e6eaf0; }

@keyframes fadeInUp {
  from { transform: translate(-50%, 40px); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}

/* ════════════════════════════════════════
   LIVE SEARCH BOX  (base fallback — light)
════════════════════════════════════════ */
.live-search-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 10px;
  overflow: hidden;
  display: none;
  z-index: 999;
  box-shadow: var(--shadow);
}
.live-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  text-decoration: none;
  color: var(--text);
  transition: 0.2s;
}
.live-item:hover { background: var(--section); }
.live-item img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }
.live-category {
  padding: 10px 14px;
  color: var(--primary-dk);
  display: block;
  text-decoration: none;
  font-size: 15px;
}
.live-category:hover { background: var(--section); }
.live-title {
  padding: 10px 14px 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════════
   OFFER BANNER
════════════════════════════════════════ */
.offer-banner { background: var(--page); padding: 24px 20px; }
.offer-banner-inner { max-width: 1200px; margin: 0 auto; }
.offer-content {
  background: linear-gradient(135deg, #0b1220 0%, #0092ad 130%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 300px;
}
.offer-text { padding: 52px; flex: 1; }
.offer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.offer-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.14;
  margin: 0 0 12px;
}
.offer-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 30px;
  line-height: 1.6;
}
.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--primary-dk);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s;
}
.offer-btn:hover { transform: translateY(-2px); }
.offer-image { width: 400px; flex-shrink: 0; align-self: stretch; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════
   SECTION HEADINGS  (shared)
════════════════════════════════════════ */
.hp-section { max-width: 1200px; margin: 0 auto; padding: 72px 20px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 14px;
  flex-wrap: wrap;
}
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-dk);
  margin-bottom: 7px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin: 0;
}

/* ════════════════════════════════════════
   WHY CHOOSE US  (light)
════════════════════════════════════════ */
.why-section-wrap { background: var(--page); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  border-color: var(--primary-line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-dk);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 9px;
}
.why-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════
   PAYMENT & DELIVERY  (light)
════════════════════════════════════════ */
.payment-section-wrap {
  background: var(--section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.payment-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.payment-col { flex: 1; min-width: 260px; }
.payment-col h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.payment-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}
.payment-pill svg { width: 18px; height: 18px; color: var(--primary-dk); }
.delivery-info { display: flex; flex-direction: column; gap: 10px; }
.delivery-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.delivery-label {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery-label svg { color: var(--primary-dk); flex-shrink: 0; }
.delivery-val {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.delivery-val.free { color: var(--green); }

/* ════════════════════════════════════════
   REVIEWS  (light)
════════════════════════════════════════ */
.reviews-section-wrap { background: var(--page); }
.reviews-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 20px;
}
.review-author { display: flex; align-items: center; gap: 13px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dk);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.review-location {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.review-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

/* Google review CTA button */
.review-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1.5px solid var(--border-2);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.review-cta-btn svg { color: var(--gold); }
.review-cta-btn:hover { border-color: var(--primary-line); transform: translateY(-2px); }

/* ════════════════════════════════════════
   NEWSLETTER  (light)
════════════════════════════════════════ */
.newsletter-wrap {
  background: var(--section);
  border-top: 1px solid var(--border);
}
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dk);
}
.newsletter-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 11px;
}
.newsletter-inner p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 30px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--primary-dk); }

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-bubble {
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-bounce 2.5s ease-in-out infinite;
}
.whatsapp-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes wa-bounce {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.whatsapp-bubble svg { flex-shrink: 0; }
.wa-tooltip {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: fade-in 0.4s ease both;
}
@keyframes fade-in { from{ opacity:0; transform:translateY(6px); } to{ opacity:1; transform:none; } }

/* ════════════════════════════════════════
   BACK TO TOP  (light)
════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity 0.3s, background 0.2s, color 0.2s;
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-title { font-size: 36px; }
}
@media (max-width: 768px) {
  .promise-item { border-right: none; border-bottom: 1px solid var(--border); }
  .promise-item:last-child { border-bottom: none; }
  .offer-image { display: none; }
  .offer-content { border-radius: var(--radius); }
  .offer-text { padding: 36px 28px; }
  .hero-stat { padding: 14px 18px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { border-radius: var(--radius); }
  .payment-row { flex-direction: column; gap: 32px; }
  .whatsapp-bubble span { display: none; }
  .whatsapp-bubble { padding: 14px; border-radius: 50%; }
  .hp-section { padding: 56px 18px; }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
  }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .hero-global { padding: 120px 0 60px; }
  .hero-title { font-size: 28px; }
  .hero-search { flex-direction: column; border-radius: 20px; padding: 15px; }
  .hero-search input { width: 100%; text-align: center; }
  .hero-search button { width: 100%; }
  .search-icon { display: none; }
}