/* ====================================================================
   PixelHub London — Main Stylesheet
   Inspired by Naturix template structure
   Light theme · Interactive · Premium Tech Feel
   ==================================================================== */

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

/* ---- Custom Properties ---- */
:root {
  --primary:       #1B4FD8;
  --primary-dk:    #1341C0;
  --primary-lt:    #EEF2FF;
  --accent:        #FF4F00;
  --accent-lt:     #FFF0EB;
  --purple:        #7C3AED;
  --green:         #10B981;
  --teal:          #06B6D4;
  --dark:          #0D1117;
  --text:          #1F2937;
  --text-2:        #374151;
  --muted:         #6B7280;
  --light:         #9CA3AF;
  --white:         #FFFFFF;
  --bg:            #FFFFFF;
  --bg-lt:         #F8FAFF;
  --bg-grey:       #F3F4F6;
  --border:        #E5E7EB;
  --border-lt:     #F3F4F6;
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:     0 1px 6px rgba(0,0,0,0.07);
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl:     0 24px 64px rgba(0,0,0,0.16);
  --r-sm:          8px;
  --r:             14px;
  --r-lg:          20px;
  --r-xl:          28px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --t:             all 0.3s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lt);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag i { font-size: 10px; }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-title .light   { font-weight: 300; color: var(--muted); }
.section-title .accent  { color: var(--primary); }
.section-title strong   { font-weight: 800; }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  transition: var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(27,79,216,0.28);
}
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,79,216,0.38);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,79,0,0.28);
}
.btn-accent:hover {
  background: #E64400;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,79,0,0.38);
}

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #1a1a2e;
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ====================================================================
   PRELOADER
   ==================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
}
.pre-logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preIconPulse 1.6s ease-in-out infinite;
}
.pre-logo-icon i { font-size: 24px; color: white; }
.pre-logo-text { line-height: 1.1; }
.pre-logo-text span { display: block; font-size: 22px; font-weight: 700; color: var(--dark); }
.pre-logo-text small { display: block; font-size: 9px; letter-spacing: 0.35em; color: var(--muted); text-transform: uppercase; }

.pre-bar {
  width: 220px;
  height: 3px;
  background: var(--bg-grey);
  border-radius: 2px;
  overflow: hidden;
}
.pre-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  border-radius: 2px;
  width: 0;
  animation: preLoad 1.8s ease forwards;
}

@keyframes preIconPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}
@keyframes preLoad {
  0%   { width: 0%; }
  80%  { width: 90%; }
  100% { width: 100%; }
}

/* ====================================================================
   ANNOUNCEMENT BAR
   ==================================================================== */
.ann-bar {
  background: var(--primary);
  color: white;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.ann-track {
  display: flex;
  white-space: nowrap;
  animation: annScroll 28s linear infinite;
  will-change: transform;
}
.ann-track:hover { animation-play-state: paused; }

.ann-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 44px;
  font-size: 13px;
  font-weight: 500;
}
.ann-item i { font-size: 11px; opacity: 0.75; }
.ann-sep { color: rgba(255,255,255,0.3); padding: 0 4px; }

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

/* ====================================================================
   SITE HEADER
   ==================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}
.site-header.stuck { box-shadow: var(--shadow); }

.header-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-box {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-box i { font-size: 18px; color: white; }
.logo-name { line-height: 1.1; }
.logo-name span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-name small {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Search */
.header-search { flex: 1; max-width: 500px; }
.search-wrap {
  display: flex;
  align-items: stretch;
  background: var(--bg-lt);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
}
.search-wrap:focus-within {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,79,216,0.09);
}
.search-wrap input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.search-wrap input::placeholder { color: var(--light); }
.search-btn {
  padding: 0 18px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--primary-dk); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.hdr-icon-btn {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-2);
  position: relative;
  transition: var(--t);
}
.hdr-icon-btn:hover { background: var(--bg-lt); color: var(--primary); }

.hdr-badge {
  position: absolute;
  top: 5px; right: 5px;
  width: 16px; height: 16px;
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.wa-header-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: white;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.wa-header-btn:hover { background: #20bd5c; transform: translateY(-1px); }
.wa-header-btn i { font-size: 17px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--t);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation */
.header-nav { border-top: 1px solid var(--border-lt); }
.nav-list { display: flex; }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--t);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--primary); }
.nav-link i { font-size: 10px; transition: transform 0.25s; }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.nav-drop {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-lt);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--t);
  z-index: 200;
}
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-drop a i { font-size: 12px; color: var(--primary); width: 16px; }
.nav-drop a:hover { background: var(--bg-lt); color: var(--primary); padding-left: 18px; }
.nav-drop .drop-divider { height: 1px; background: var(--border-lt); margin: 6px 0; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: -60px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-lt);
  width: 680px;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--t);
  z-index: 200;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 180px;
  gap: 24px;
}
.mega-col h5 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-lt);
}
.mega-col ul li a {
  display: block;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-2);
  transition: var(--t);
}
.mega-col ul li a:hover { color: var(--primary); padding-left: 6px; }
.mega-col-img { overflow: hidden; border-radius: var(--r); }
.mega-col-img img {
  width: 100%; height: 170px;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform 0.4s ease;
}
.mega-col-img:hover img { transform: scale(1.06); }
.mega-col-img .promo-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* Mobile Nav */
.header-nav.open { display: block; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: relative; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,14,26,0.78) 0%, rgba(27,79,216,0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 680px; color: white; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.live-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: liveBlink 1.6s ease-in-out infinite;
}
@keyframes liveBlink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-title .h-thin { display: block; font-weight: 300; opacity: 0.8; font-size: 0.78em; letter-spacing: -0.5px; }
.hero-title .h-bold { display: block; font-weight: 800; }
.hero-title .h-sub  { display: block; font-size: 0.56em; font-weight: 400; opacity: 0.72; letter-spacing: 0; margin-top: 6px; }

.hero-text {
  font-size: 17px;
  line-height: 1.72;
  opacity: 0.83;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r);
  padding: 20px 28px;
  width: fit-content;
}
.h-stat { text-align: center; padding: 0 28px; }
.h-stat:first-child { padding-left: 0; }
.h-stat:last-child  { padding-right: 0; }
.h-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.h-stat-lbl { display: block; font-size: 11.5px; opacity: 0.68; text-transform: uppercase; letter-spacing: 0.06em; }
.h-stat-div { width: 1px; background: rgba(255,255,255,0.2); height: 36px; }

/* Hero Controls */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.hdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--t);
  border: none;
}
.hdot.active {
  width: 30px;
  border-radius: 4px;
  background: white;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  cursor: pointer;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.05); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* ====================================================================
   FEATURES BAR
   ==================================================================== */
.features-bar {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  z-index: 5;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-right: 1px solid var(--border-lt);
  transition: var(--t);
}
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: var(--bg-lt); }

.feat-ico {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}
.feat-ico i { font-size: 20px; color: var(--primary); }
.feat-item:hover .feat-ico { background: var(--primary); }
.feat-item:hover .feat-ico i { color: white; }

.feat-text h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.feat-text p  { font-size: 12.5px; color: var(--muted); }

/* ====================================================================
   BRANDS SECTION
   ==================================================================== */
.brands-section { padding: 80px 0; background: var(--bg-lt); }
.brands-section .section-header { text-align: center; margin-bottom: 44px; }
.brands-section .section-sub { margin: 0 auto 0; }

.brands-scroller {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin-top: 44px;
}

.brand-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 16px 18px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.brand-card::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-lt), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.brand-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.brand-card:hover::after { opacity: 1; }

.brand-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  position: relative; z-index: 1;
  transition: var(--t);
}
.brand-card:hover .brand-logo { background: var(--primary-lt); }

.brand-name { font-size: 13px; font-weight: 700; color: var(--text-2); position: relative; z-index: 1; }
.brand-count { font-size: 11px; color: var(--muted); position: relative; z-index: 1; }

/* ====================================================================
   PRODUCTS SECTION
   ==================================================================== */
.products-section { padding: 88px 0; }

.sec-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-grey);
  transition: var(--t);
  border: 2px solid transparent;
  font-family: 'Space Grotesk', sans-serif;
}
.tab-btn:hover { color: var(--primary); background: var(--primary-lt); }
.tab-btn.active { background: var(--primary); color: white; }

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

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--border-lt);
  transition: var(--t);
  position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}

.prod-img-wrap {
  position: relative;
  height: 216px;
  background: var(--bg-lt);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.prod-img-wrap img {
  height: 176px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .prod-img-wrap img { transform: scale(1.09) translateY(-4px); }

.prod-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.pbadge {
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 5px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pbadge-new  { background: var(--green); color: white; }
.pbadge-sale { background: var(--accent); color: white; }
.pbadge-hot  { background: var(--purple); color: white; }
.pbadge-ref  { background: var(--teal); color: white; }

.prod-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--t);
}
.product-card:hover .prod-actions { opacity: 1; transform: translateX(0); }

.pa-btn {
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text-2);
  box-shadow: var(--shadow);
  transition: var(--t);
}
.pa-btn:hover { background: var(--primary); color: white; transform: scale(1.1); }

.prod-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }

.prod-brand {
  font-size: 11px; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.prod-name {
  font-size: 15px; font-weight: 700;
  color: var(--dark); line-height: 1.35;
  margin-bottom: 10px;
}

.prod-specs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.prod-spec {
  font-size: 11px; color: var(--muted);
  background: var(--bg-grey);
  padding: 3px 8px; border-radius: 5px;
}

.prod-stars {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.stars { display: flex; gap: 2px; color: #FBBF24; font-size: 12px; }
.rc { font-size: 12px; color: var(--muted); }

.btn-whatsapp {
  width: 100%;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: var(--t);
  font-family: 'Space Grotesk', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #20bd5c; transform: translateY(-1px); }
.btn-whatsapp i { font-size: 16px; }

/* ====================================================================
   PROMO BANNER
   ==================================================================== */
.promo-strip {
  background: linear-gradient(130deg, var(--primary) 0%, var(--purple) 55%, #4F1DA0 100%);
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
.promo-strip::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px; right: -100px;
}
.promo-strip::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -120px; left: 120px;
}
.promo-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.promo-left { color: white; }
.promo-pill {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.promo-title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.promo-title .lite { font-weight: 300; opacity: 0.75; }
.promo-sub { font-size: 16px; opacity: 0.78; max-width: 460px; margin-bottom: 28px; }
.promo-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.promo-phone-img {
  width: 220px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
  animation: floatAnim 4s ease-in-out infinite;
}
.promo-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ====================================================================
   SERVICES SECTION
   ==================================================================== */
.services-section { padding: 88px 0; background: var(--bg-lt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t);
  border: 2px solid transparent;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); border-color: var(--primary-lt); }

.svc-img {
  height: 196px;
  overflow: hidden;
  position: relative;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .svc-img img { transform: scale(1.07); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.svc-body { padding: 24px; }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  margin-top: -46px;
  position: relative;
  box-shadow: var(--shadow);
}
.svc-icon i { font-size: 22px; color: var(--primary); }

.svc-name { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.svc-feats { margin-bottom: 20px; }
.svc-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-2);
  padding: 4px 0;
}
.svc-feat i { color: var(--green); font-size: 11px; }

.svc-price { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.svc-price strong { color: var(--primary); font-size: 17px; font-weight: 700; }

/* ====================================================================
   DEAL OF THE DAY
   ==================================================================== */
.deal-section { padding: 88px 0; }

.deal-box {
  background: linear-gradient(140deg, #0D1117 0%, #0F2A5B 100%);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1fr 380px;
  overflow: hidden;
  position: relative;
}
.deal-box::before {
  content: '';
  position: absolute;
  top: -100px; right: 350px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,79,216,0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.deal-left { padding: 56px; color: white; position: relative; z-index: 1; }

.deal-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,79,0,0.16);
  border: 1px solid rgba(255,79,0,0.35);
  color: #FF8C5A;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 22px;
}
.deal-tag i { animation: spin 2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.deal-title { font-size: clamp(26px,3vw,40px); font-weight: 800; line-height: 1.18; margin-bottom: 14px; }
.deal-title .hi { color: #60A5FA; }
.deal-text { font-size: 15px; opacity: 0.68; margin-bottom: 30px; max-width: 380px; line-height: 1.65; }

.deal-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 30px;
}
.deal-spec-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
}
.deal-spec-item i { font-size: 15px; color: #60A5FA; flex-shrink: 0; }
.dsi-text { font-size: 13px; }
.dsi-text span { display: block; font-size: 10.5px; opacity: 0.5; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Countdown */
.countdown { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; }
.cd-item {
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  min-width: 64px;
}
.cd-num {
  display: block;
  font-size: 32px; font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1; margin-bottom: 4px;
}
.cd-lbl {
  display: block;
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em;
  opacity: 0.45;
}
.cd-sep { font-size: 22px; font-weight: 700; opacity: 0.35; margin-bottom: 14px; }

.deal-wa-cta {
  margin-bottom: 28px;
}
.deal-wa-cta p {
  font-size: 15px;
  opacity: 0.75;
  margin-bottom: 16px;
  line-height: 1.5;
}
.btn-wa-deal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 15px 28px;
  border-radius: var(--r);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa-deal:hover { background: #20bd5c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.btn-wa-deal i { font-size: 20px; }

.deal-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02);
  padding: 40px;
}
.deal-phone-img {
  max-width: 240px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  animation: floatAnim 4s ease-in-out infinite;
  position: relative; z-index: 1;
}
.deal-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(27,79,216,0.35) 0%, transparent 68%);
  border-radius: 50%;
}

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.testimonials-section { padding: 88px 0; background: var(--bg-lt); }

.test-slider-wrap { overflow: hidden; }
.test-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease);
}

.test-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px;
  flex: 0 0 calc(33.333% - 16px);
  border: 2px solid var(--border-lt);
  transition: var(--t);
  position: relative;
}
.test-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 22px;
  font-size: 72px;
  color: var(--primary-lt);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.test-stars { display: flex; gap: 3px; color: #FBBF24; font-size: 14px; margin-bottom: 18px; }
.test-text {
  font-size: 15px; line-height: 1.72; color: var(--text-2);
  margin-bottom: 26px; position: relative; z-index: 1;
  padding-top: 16px;
}

.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-lt);
  flex-shrink: 0;
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.test-role { font-size: 12px; color: var(--muted); }
.test-verified {
  margin-left: auto;
  font-size: 11px; color: var(--green); font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}

.test-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 36px;
}
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer; transition: var(--t); border: none;
}
.tdot.active { width: 30px; border-radius: 4px; background: var(--primary); }

/* ====================================================================
   WHY US
   ==================================================================== */
.why-section { padding: 88px 0; }
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wi-main {
  grid-row: 1/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
}
.wi-main img { width: 100%; height: 100%; object-fit: cover; }
.wi-sm { border-radius: var(--r); overflow: hidden; height: 196px; }
.wi-sm img { width: 100%; height: 100%; object-fit: cover; }
.wi-stat {
  background: var(--primary);
  border-radius: var(--r);
  padding: 22px;
  color: white;
  height: 196px;
  display: flex; flex-direction: column; justify-content: center;
}
.wi-stat-num {
  font-size: 44px; font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1; margin-bottom: 6px;
}
.wi-stat-text { font-size: 14px; opacity: 0.78; }

.why-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 34px;
}
.why-feat { display: flex; gap: 14px; }
.wf-ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-ico i { font-size: 18px; color: var(--primary); }
.wf-txt h4 { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.wf-txt p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ====================================================================
   STORE / LOCATION
   ==================================================================== */
.store-section { padding: 88px 0; background: var(--bg-lt); }
.store-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.store-info h2 {
  font-size: clamp(26px,3vw,38px);
  font-weight: 800; color: var(--dark);
  margin-bottom: 18px;
}
.store-info p { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.store-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.store-det {
  display: flex; align-items: flex-start; gap: 14px;
}
.sdet-ico {
  width: 42px; height: 42px;
  background: var(--primary-lt); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sdet-ico i { font-size: 16px; color: var(--primary); }
.sdet-txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.sdet-txt span  { font-size: 13.5px; color: var(--muted); }

.store-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.store-map iframe { width: 100%; height: 100%; border: none; }
.map-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E8EFF7, #D6E4F7);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--muted);
}
.map-fallback i { font-size: 52px; color: var(--primary); }
.map-fallback strong { font-size: 16px; font-weight: 700; color: var(--dark); }
.map-fallback span { font-size: 14px; }

/* ====================================================================
   NEWSLETTER
   ==================================================================== */
.newsletter-section {
  background: linear-gradient(130deg, var(--primary) 0%, #0F3BB0 100%);
  padding: 88px 0;
  overflow: hidden; position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -130px; left: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.newsletter-inner { text-align: center; color: white; position: relative; z-index: 1; }
.nl-title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; margin-bottom: 12px; }
.nl-sub   { font-size: 17px; opacity: 0.78; margin-bottom: 38px; }

.nl-form {
  display: flex;
  max-width: 520px; margin: 0 auto 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 6px;
}
.nl-form input {
  flex: 1; padding: 12px 16px;
  background: transparent; border: none; outline: none;
  color: white; font-size: 15px;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.48); }
.nl-form button {
  padding: 12px 26px;
  background: white; color: var(--primary);
  border-radius: var(--r-sm);
  font-weight: 800; font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-form button:hover { background: var(--bg-lt); }
.nl-note { font-size: 12.5px; opacity: 0.55; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: #0C0F18; color: rgba(255,255,255,0.65); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo .logo-name span { color: white; }
.footer-brand p { font-size: 14px; line-height: 1.72; opacity: 0.55; margin-bottom: 26px; }

.footer-social { display: flex; gap: 9px; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: var(--t);
}
.fsoc:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.footer-col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: white; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: var(--t);
}
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-item { display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.5); }
.fc-item i { color: var(--primary); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.fc-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.fc-item a:hover { color: white; }
.footer-hours {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-sm); padding: 12px 14px;
  margin-top: 14px;
}
.footer-hours p { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.42); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ====================================================================
   FLOATING WHATSAPP BUTTON
   ==================================================================== */
.wa-float {
  position: fixed;
  bottom: 84px; right: 20px;
  z-index: 800;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--t);
  white-space: nowrap;
}
.wa-float:hover { background: #20bd5c; transform: scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float i { font-size: 20px; }

/* ====================================================================
   SCROLL TO TOP
   ==================================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--t);
  z-index: 800;
  box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dk); transform: translateY(-3px); }

/* ====================================================================
   REVEAL ANIMATIONS
   ==================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====================================================================
   SHOP PAGE
   ==================================================================== */
.page-banner {
  background: linear-gradient(130deg, var(--primary) 0%, var(--purple) 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}
.page-banner h1 { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; opacity: 0.72;
}
.breadcrumb a { color: rgba(255,255,255,0.72); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 10px; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 56px 0;
}

/* Sidebar */
.shop-sidebar { flex-shrink: 0; }
.filter-block {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--border-lt);
}
.filter-block h3 {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--dark); margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-lt);
}
.filter-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
  padding: 6px 0; cursor: pointer;
}
.filter-check input[type=checkbox] { accent-color: var(--primary); width: 16px; height: 16px; }
.filter-check span { margin-left: auto; font-size: 12px; color: var(--muted); }
.price-range-track {
  height: 4px; background: var(--bg-grey); border-radius: 2px;
  position: relative; margin: 18px 0;
}
.price-range-fill {
  position: absolute; height: 100%; background: var(--primary); border-radius: 2px;
  left: 0; width: 75%;
}
.price-range-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* Shop Main */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 14px;
}
.shop-result-count { font-size: 14px; color: var(--muted); }
.shop-sort {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.shop-sort select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 14px; color: var(--text);
  outline: none; cursor: pointer;
  font-family: inherit;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--text-2);
  background: var(--white); border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--t);
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ====================================================================
   CONTACT PAGE
   ==================================================================== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; padding: 72px 0;
}
.contact-form-wrap h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.contact-form-wrap > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text-2); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 14px; color: var(--text); background: var(--white);
  outline: none; transition: var(--t); font-family: inherit;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,79,216,0.09); }
.form-control::placeholder { color: var(--light); }
textarea.form-control { resize: vertical; min-height: 130px; }

.repair-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 18px;
}
.repair-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; transition: var(--t);
  font-size: 13px; color: var(--text-2);
}
.repair-opt input[type=radio] { accent-color: var(--primary); }
.repair-opt:has(input:checked) { border-color: var(--primary); background: var(--primary-lt); }

.contact-aside { padding-top: 8px; }
.contact-aside h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: var(--t);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.cc-ico {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-lt); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.cc-ico i { font-size: 20px; color: var(--primary); }
.cc-txt h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cc-txt p  { font-size: 14px; color: var(--muted); line-height: 1.55; }
.cc-txt a  { color: var(--primary); font-weight: 600; }

.contact-hours {
  background: var(--dark); color: white;
  border-radius: var(--r-lg); padding: 24px;
}
.contact-hours h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.ch-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ch-row:last-child { border-bottom: none; }
.ch-row span:first-child { opacity: 0.6; }
.ch-row span:last-child { font-weight: 600; }
.ch-row.today { color: #4ADE80; }
.ch-row.today span:first-child { color: #4ADE80; opacity: 1; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .brands-scroller { grid-template-columns: repeat(4,1fr); }
  .mega-grid { grid-template-columns: 1fr 1fr 1fr; }
  .mega-col-img { display: none; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .section-title { font-size: 28px; }
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 12px 0; }
  .nav-drop, .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 20px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .brands-scroller { grid-template-columns: repeat(3,1fr); }
  .features-row { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .promo-row { grid-template-columns: 1fr; }
  .promo-img-wrap { display: none; }
  .deal-box { grid-template-columns: 1fr; }
  .deal-right { display: none; }
  .why-row { grid-template-columns: 1fr; }
  .store-row { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .test-card { flex: 0 0 calc(50% - 12px); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .ann-bar { display: none; }
  .hero { height: 75vh; }
  .hero-stats { display: none; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .brands-scroller { grid-template-columns: repeat(3,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .test-card { flex: 0 0 100%; }
  .shop-products-grid { grid-template-columns: repeat(2,1fr); }
  .why-imgs { grid-template-columns: 1fr; }
  .wi-main { grid-row: auto; height: 240px; }
  .wi-sm, .wi-stat { height: 140px; }
  .why-feats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .repair-options { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .header-search { display: none; }
  .hero { height: 65vh; min-height: 480px; }
  .hero-title { font-size: 32px; }
  .hero-text { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brands-scroller { grid-template-columns: repeat(3,1fr); }
  .features-row { grid-template-columns: 1fr; }
  .shop-products-grid { grid-template-columns: 1fr 1fr; }
  .deal-title { font-size: 26px; }
  .nl-form { flex-direction: column; }
  .nl-form button { border-radius: var(--r-sm); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ====================================================================
   REPAIR PRICING GRID (contact page)
   ==================================================================== */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .repair-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 560px) {
  .repair-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ====================================================================
   MOBILE HEADER IMPROVEMENTS
   ==================================================================== */

/* Mid-size: hide WA btn label, keep icon */
@media (max-width: 860px) {
  .wa-header-btn span { display: none; }
  .wa-header-btn { padding: 9px 11px; border-radius: 50%; }
  .hdr-icon-btn { display: none; }
}

/* Small phone: tighten logo */
@media (max-width: 400px) {
  .logo-name small { display: none; }
  .header-wrap { gap: 12px; }
}

/* Mobile nav improvements */
@media (max-width: 992px) {
  .header-nav.open {
    display: block;
    background: var(--white);
    border-top: 1px solid var(--border-lt);
    padding: 8px 0 16px;
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-list { gap: 0; }
  .nav-item { border-bottom: 1px solid var(--border-lt); }
  .nav-link { padding: 13px 20px; display: flex; width: 100%; justify-content: space-between; }
  .nav-drop { display: none !important; }
  .nav-item:hover .nav-drop { display: none !important; }
  .mega-menu { display: none !important; }
}

/* ====================================================================
   FLOATING WHATSAPP — MOBILE
   ==================================================================== */
@media (max-width: 540px) {
  .wa-float span { display: none; }
  .wa-float {
    width: 54px; height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    bottom: 86px; right: 16px;
  }
  .wa-float i { font-size: 24px; }
  .scroll-top { bottom: 20px; right: 16px; width: 42px; height: 42px; font-size: 14px; }
}

/* ====================================================================
   HERO — TABLET & MOBILE POLISH
   ==================================================================== */
@media (max-width: 768px) {
  .hero { height: auto; min-height: 520px; padding: 80px 0 60px; display: flex; align-items: center; }
  .hero-slides, .hero-slide { height: 100%; min-height: 520px; }
  .hero-inner { padding: 0; }
  .h-thin { font-size: 16px; }
  .h-bold { font-size: clamp(30px, 8vw, 44px); }
  .h-sub  { font-size: 14px; }
  .hero-text { font-size: 14px; max-width: 90%; }
  .hero-eyebrow { font-size: 11px; }
}

/* ====================================================================
   PRODUCT CARDS — MOBILE
   ==================================================================== */
@media (max-width: 540px) {
  .prod-body { padding: 12px; }
  .prod-name { font-size: 13px; }
  .prod-brand { font-size: 10px; }
  .prod-specs { gap: 4px; }
  .prod-spec { font-size: 10px; padding: 2px 6px; }
  .btn-whatsapp { font-size: 12px; padding: 10px 8px; gap: 5px; }
  .btn-whatsapp i { font-size: 14px; }
  .prod-stars { margin-bottom: 10px; }
}

/* ====================================================================
   SHOP PAGE — TABLET SIDEBAR
   ==================================================================== */
@media (max-width: 992px) {
  .shop-layout { gap: 24px; padding: 32px 0; }
  .shop-sidebar {
    background: var(--white);
    border: 1px solid var(--border-lt);
    border-radius: var(--r-lg);
    padding: 0;
    overflow: hidden;
  }
  .shop-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    background: var(--primary-lt);
    color: var(--primary);
  }
  .shop-sidebar-body { display: none; padding: 8px 0; }
  .shop-sidebar-body.open { display: block; }
  .filter-block { margin-bottom: 0; border: none; border-bottom: 1px solid var(--border-lt); border-radius: 0; }
  .filter-block:last-of-type { border-bottom: none; }
  .shop-sidebar .btn { margin: 12px 20px; width: calc(100% - 40px); }
}
@media (min-width: 993px) {
  .shop-sidebar-toggle { display: none; }
  .shop-sidebar-body { display: block !important; }
}

/* ====================================================================
   CONTACT PAGE — MOBILE POLISH
   ==================================================================== */
@media (max-width: 768px) {
  .contact-layout { gap: 36px; padding: 44px 0; }
  .contact-form-wrap h2 { font-size: 26px; }
  .contact-aside h2 { font-size: 22px; }
  .repair-opt { font-size: 12px; padding: 8px 10px; }
}
@media (max-width: 540px) {
  .contact-layout { padding: 28px 0; }
  .contact-card { padding: 16px; }
  .cc-ico { width: 40px; height: 40px; }
  .cc-ico i { font-size: 16px; }
}

/* ====================================================================
   FEATURES BAR — MOBILE
   ==================================================================== */
@media (max-width: 540px) {
  .feat-item { gap: 10px; }
  .feat-ico { width: 38px; height: 38px; font-size: 16px; }
  .feat-text h4 { font-size: 13px; }
  .feat-text p  { font-size: 12px; }
}

/* ====================================================================
   DEAL SECTION — MOBILE
   ==================================================================== */
@media (max-width: 540px) {
  .deal-box { padding: 32px 20px; }
  .deal-tag { font-size: 11px; }
  .countdown { gap: 12px; }
  .cd-num { font-size: 28px; width: 52px; height: 52px; }
  .btn-wa-deal { font-size: 14px; padding: 13px 20px; }
}

/* ====================================================================
   FOOTER — MOBILE
   ==================================================================== */
@media (max-width: 768px) {
  .site-footer { padding: 48px 0 0; }
  .footer-grid { gap: 28px; }
  .footer-social { gap: 8px; }
}

/* ====================================================================
   SECTION SPACING — TABLET
   ==================================================================== */
@media (max-width: 992px) {
  .products-section,
  .services-section,
  .testimonials-section { padding: 60px 0; }
  .deal-section { padding: 60px 0; }
  .brands-section { padding: 48px 0; }
  .why-us-section { padding: 60px 0; }
}
