/* =========================================================
   Multi InfoTech — Premium Tech CSS Design System
   Balotra Ki No. 1 Computer Shop
   ========================================================= */

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

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary:     #f9fafb; /* Gray-50 Background */
  --bg-secondary:   #ffffff; /* White background */
  --bg-card:        #ffffff; /* White card */
  --bg-glass:       rgba(255, 255, 255, 0.95);

  --blue-primary:   #001b40; /* Dark Navy Blue */
  --blue-bright:    #001b40; /* Navy Accent */
  --blue-glow:      rgba(0, 27, 64, 0.03);
  --blue-dark:      #00112c;

  --cyan:           #e31e24; /* Accent Red */
  --cyan-dim:       rgba(227, 30, 36, 0.05);

  --indigo-accent:  #001b40;

  --text-primary:   #001b40; /* Dark Navy Text */
  --text-secondary: #4b5563; /* Gray-600 */
  --text-muted:     #9ca3af; /* Gray-400 */

  --border:         #e5e7eb; /* Gray-200 */
  --border-bright:  rgba(0, 27, 64, 0.15);
  --border-active:  rgba(0, 27, 64, 0.3);

  --green:          #25d366; /* WhatsApp Green */
  --orange:         #ea580c;
  --red:            #e31e24;

  --whatsapp:       #25d366;
  --whatsapp-dark:  #1ea851;

  /* Gradients */
  --gradient-hero:  linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
  --gradient-blue:  linear-gradient(135deg, #001b40, #00112c);
  --gradient-card:  linear-gradient(145deg, #ffffff, #f9fafb);
  --gradient-glow:  radial-gradient(ellipse at center, rgba(0,27,64,0.02) 0%, transparent 75%);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.05);
  --shadow-md:      0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-glow:    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-blue:    0 4px 14px rgba(0, 27, 64, 0.15);

  /* Misc */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      16px;
  --transition:     0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--blue-primary);
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }

/* Lucide Icon styling */
[data-lucide] {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.2px;
  stroke: currentColor;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}
.btn [data-lucide] {
  margin-top: -2px;
}
.logo-icon [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--bg-primary);
}
.service-icon-wrap [data-lucide] {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--blue-primary);
}

/* ─── Top Bar ────────────────────────────────────────────── */
.top-bar {
  background: #001B40;
  color: #ffffff;
  font-size: 0.79rem;
  padding: 0.68rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.top-bar-item + .top-bar-item::before,
.top-bar-right .top-bar-social::before {
  content: '';
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
  margin-right: 0.05rem;
}
.top-bar-item a {
  color: #ffffff;
  text-decoration: none;
}
.top-bar-item a:hover {
  color: var(--cyan);
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar-social a {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.top-bar-social a:hover {
  opacity: 1;
  color: var(--cyan);
}

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 1.5rem; }
.text-gradient {
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-cyan  { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(227,30,36,0.2); }
.badge-green { background: rgba(37,211,102,0.1); color: var(--green); border: 1px solid rgba(37,211,102,0.3); }
.badge-orange{ background: rgba(234,88,12,0.1); color: var(--orange); border: 1px solid rgba(234,88,12,0.3); }
.badge-red   { background: rgba(227,30,36,0.1); color: var(--red); border: 1px solid rgba(227,30,36,0.3); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--transition); white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--blue-primary);
  color: white; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #002b5c; transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: white; box-shadow: 0 4px 14px rgba(37,211,102,0.2);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); color: white; }

.btn-call {
  background: var(--blue-primary);
  color: white; box-shadow: var(--shadow-sm);
}
.btn-call:hover { background: #002b5c; transform: translateY(-2px); color: white; }

.btn-outline {
  background: transparent; color: var(--blue-primary);
  border: 1.8px solid var(--blue-primary);
}
.btn-outline:hover { background: var(--blue-glow); color: var(--blue-primary); }

.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-primary); border-color: var(--blue-primary); color: var(--text-primary); }

.btn-sm { padding: 0.45rem 1rem; font-size: 0.78rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ─── Header / Nav ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 10px 28px rgba(6, 24, 44, 0.07);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 82px; padding: 0 1.5rem;
  max-width: 1260px; margin: 0 auto;
}
.logo-link {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.header-logo-image {
  height: 62px;
  width: auto;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav-link {
  padding: 1.9rem 0; color: #111827; font-size: 0.92rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  transition: color var(--transition); text-transform: uppercase;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--blue-primary);
  transition: width var(--transition) ease;
}
.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }

.header-call-btn-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #001B40;
  color: #ffffff !important;
  padding: 0.86rem 1.2rem;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 16px 28px rgba(0, 27, 64, 0.16);
}
.header-call-btn-box:hover {
  background: #002b5c;
  transform: translateY(-1px);
}
.header-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
}
.header-call-text-col {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.header-call-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.header-call-number {
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}



.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f3f6fb;
  border: 1px solid rgba(0, 27, 64, 0.08);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
}
.mobile-nav-panel {
  display: none;
  padding: 0 1.2rem 1rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 27, 64, 0.08);
}
.mobile-nav-panel .nav-link {
  padding: 0.85rem 0 !important;
  border-bottom: 1px solid rgba(0, 27, 64, 0.08);
}
.mobile-nav-panel .nav-link:last-child {
  border-bottom: none;
}

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(227, 30, 36, 0.12), transparent 24%),
    linear-gradient(135deg, #041124 0%, #07204a 54%, #061735 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.4rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 36, 0.92) 0%, rgba(4, 17, 36, 0.72) 42%, rgba(4, 17, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 24%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: center;
}
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #ffffff;
  max-width: 11ch;
  margin-bottom: 1rem;
}
.page-hero-desc {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.page-hero-side {
  display: grid;
  gap: 0.95rem;
}
.page-hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1.1rem 1.15rem;
  backdrop-filter: blur(10px);
}
.page-hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}
.page-hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.55;
}
.page-section {
  padding: 2rem 0 4rem;
}
.about-story-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}
.about-story-copy {
  min-width: 0;
}
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-story-media {
  min-width: 0;
}
.about-story-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  aspect-ratio: 5 / 4;
}
.about-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.section-toolbar-meta {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── Brands Page ────────────────────────────────────────── */
.brands-page-section {
  padding: 4rem 0 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(0, 27, 64, 0.06), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.brands-ribbon {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(0, 27, 64, 0.08);
  background: linear-gradient(135deg, rgba(0, 27, 64, 0.98), rgba(6, 32, 74, 0.96));
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
  padding: 1rem 0;
  margin-bottom: 2.4rem;
}
.brands-ribbon::before,
.brands-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 27, 64, 1), rgba(0, 27, 64, 0));
}
.brands-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 32, 74, 1), rgba(6, 32, 74, 0));
}
.brands-ribbon-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: brandsRibbonScroll 34s linear infinite;
  padding: 0 1rem;
}
.brands-ribbon:hover .brands-ribbon-track {
  animation-play-state: paused;
}
.brands-ribbon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 190px;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.brands-ribbon-pill img,
.brands-ribbon-pill-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  flex-shrink: 0;
}
.brands-ribbon-pill strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}
.brands-ribbon-pill span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}
.brands-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}
.brand-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--brand-card-bg, #ffffff) 0%, #ffffff 100%);
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: brandCardReveal 0.6s ease both;
}
.brand-showcase-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -24% auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--brand-accent-soft, rgba(0, 27, 64, 0.15)) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}
.brand-showcase-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-accent, #001b40), var(--brand-accent-2, #e31e24));
}
.brand-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 54px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 27, 64, 0.14);
}
.brand-showcase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.brand-logo-shell {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}
.brand-logo-shell img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand-logo-fallback {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand-accent, #001b40);
}
.brand-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-accent, #001b40);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 700;
}
.brand-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #001b40;
  margin-bottom: 0.3rem;
}
.brand-card-desc {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.65;
  min-height: 4.2em;
  margin-bottom: 1rem;
}
.brand-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.brand-card-stat,
.brand-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 27, 64, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  color: #001b40;
}
.brand-card-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.brand-card-actions .btn {
  flex: 1;
  min-width: 130px;
}

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

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

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(13, 56, 121, 0.12), transparent 26%),
    linear-gradient(180deg, #eef4fb 0%, #f6f8fb 100%);
  padding: 1.25rem 0 0.8rem;
}

/* Loading States & Spinners */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  width: 100%;
  gap: 0.75rem;
}
.spinner {
  width: 38px;
  height: 38px;
  border: 3.5px solid rgba(0, 27, 64, 0.08);
  border-left-color: var(--cyan, #e31e24);
  border-radius: 50%;
  animation: mitSpin 0.85s linear infinite;
}
.hero-carousel-stage .loading-state {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 100%;
  padding: 0;
}
.hero-carousel-stage .spinner {
  border-color: rgba(255, 255, 255, 0.15);
  border-left-color: #ffffff;
}
@keyframes mitSpin {
  to { transform: rotate(360deg); }
}
.hero .container.hero-shell {
  max-width: 1320px;
  padding-inline: 1.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-shell {
  position: relative;
  z-index: 1;
  padding: 0;
}
.hero-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.25rem;
  align-items: stretch;
}
.hero-banner-panel {
  position: relative;
  min-height: clamp(500px, 44vw, 620px);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #041124 0%, #06214a 52%, #051533 100%);
  box-shadow: 0 32px 58px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(0, 27, 64, 0.08);
}
.hero-carousel-stage {
  position: relative;
  min-height: inherit;
  height: 100%;
}
.hero-shop-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-height: clamp(500px, 44vw, 620px);
  padding: clamp(1.9rem, 4vw, 3.05rem);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 253, 0.98) 100%);
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 30px 55px rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
}
.hero-shop-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.55rem 0.95rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(0, 27, 64, 0.06);
  border: 1px solid rgba(0, 27, 64, 0.08);
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d3879;
  box-shadow: none;
}
.hero-shop-title {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(3rem, 4.9vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #001b40;
  max-width: 8ch;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.hero-shop-lead {
  max-width: 26rem;
  margin-bottom: 0.7rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.45;
  color: #0f2f66;
}
.hero-shop-desc {
  max-width: 33rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
}
.hero-shop-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-shop-actions .btn {
  flex: 0 0 auto;
  min-width: 158px;
  box-shadow: none;
  border-radius: 16px;
}
.hero-shop-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}
.hero-shop-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f2f66;
}
.hero-shop-meta [data-lucide] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
  transform: none;
}
.hero-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.hero-banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  display: none;
}
.hero-banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  display: none;
  pointer-events: none;
}
.hero-banner-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 48vw, 660px);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 5vw, 5.5rem) 5rem;
}
.hero-banner-copy {
  position: relative;
  z-index: 3;
  max-width: min(580px, 48vw);
  padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.35rem, 2.6vw, 2.1rem) clamp(1.5rem, 2.6vw, 2rem) clamp(1.5rem, 2.8vw, 2.25rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(4, 17, 36, 0.4) 0%, rgba(4, 17, 36, 0.22) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}
.hero-banner-copy::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff2f2f 0%, #2f8cff 100%);
  opacity: 0.95;
}
.hero-banner-visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.hero-banner-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  display: none;
  pointer-events: none;
}
.hero-banner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  display: none;
  pointer-events: none;
}
.hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: 2; /* Position above any other overlays */
  width: 100%;
  height: 100%;
}
.hero-banner-media img,
.hero-banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none; /* No dimming or overlay filters for absolute clarity */
}
.hero-banner-slide[data-media-type="video"] .hero-banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-slide.active .hero-banner-asset {
  animation: none;
}
.hero-banner-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff1f1f, #ef2e2e);
  box-shadow: 0 14px 30px rgba(239, 46, 46, 0.26);
  font-size: 0.88rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  max-width: 9ch;
  text-transform: uppercase;
  color: #ffffff;
}
.hero-banner-title-line {
  display: block;
}
.hero-banner-title-accent {
  background: linear-gradient(180deg, #93c8ff 0%, #2f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-banner-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  max-width: 34rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.hero-banner-description {
  max-width: 31rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}
.hero-banner-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  margin-bottom: 1.7rem;
}
.hero-banner-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.hero-banner-benefits [data-lucide] {
  width: 1.05rem;
  height: 1.05rem;
}
.hero-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-banner-link {
  min-width: 200px;
  box-shadow: none;
}
.hero-banner-link-primary {
  background: linear-gradient(135deg, #ff2f2f, #ff1f1f);
  border: none;
  box-shadow: 0 16px 30px rgba(255, 31, 31, 0.2);
}
.hero-banner-link-primary:hover {
  background: linear-gradient(135deg, #ff4949, #ff1f1f);
}
.hero-banner-link-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.hero-banner-link-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}
.hero-carousel-footer {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: auto;
}
.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 18, 38, 0.4);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}
.hero-carousel-nav {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-banner-dot.active {
  width: 28px;
  background: #ff2f2f;
}
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 18, 38, 0.48);
  backdrop-filter: blur(12px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background var(--transition), transform var(--transition);
}
.hero-carousel-btn#hero-prev-btn {
  left: 1rem;
}
.hero-carousel-btn#hero-next-btn {
  right: 1rem;
}
.hero-carousel-btn:hover {
  background: rgba(8, 18, 38, 0.7);
  transform: translateY(-50%) scale(1.04);
}
.hero-carousel-progress {
  display: none;
}
.hero-carousel-progress span {
  display: none;
}
.hero-carousel-shell.single-slide .hero-carousel-nav,
.hero-carousel-shell.single-slide .hero-carousel-footer,
.hero-carousel-shell.single-slide .hero-carousel-progress {
  display: none;
}

@keyframes heroAssetFloat {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-banner-slide.active .hero-banner-copy {
  animation: heroCopyIn 0.65s ease both;
}

/* ─── Trust Strip ────────────────────────────────────────── */
.trust-strip {
  padding: 0 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(135deg, #001b40 0%, #0b2d63 58%, #12397a 100%);
  border: 1px solid rgba(10, 37, 84, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 58px rgba(8, 23, 48, 0.18);
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.6rem;
}
.trust-strip-item + .trust-strip-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-strip-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.trust-strip-icon-whatsapp {
  color: #8ff0b8;
}
.trust-strip-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.18rem;
}
.trust-strip-item span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ─── Section Headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #001B40;
  margin-bottom: 0.5rem;
}
.section-desc {
  color: #4b5563;
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.section-line {
  width: 60px;
  height: 3.5px;
  background: #001b40;
  border-radius: 2px;
  margin: 0.8rem auto 0;
}

/* ─── Stats Strip ────────────────────────────────────────── */
.stats-strip-new {
  position: relative;
  background: #f4f7fb;
  color: #ffffff;
  padding: 1.5rem 0 4rem;
}
.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 0;
}
.stat-item-new {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 100%;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(0, 27, 64, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.stat-item-new:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 27, 64, 0.18);
  box-shadow: 0 24px 42px rgba(8, 23, 48, 0.12);
}
.stat-circle-new {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #001b40 0%, #0d3879 100%);
  color: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 16px 28px rgba(0, 27, 64, 0.18);
}
.stat-text-col-new {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.stat-title-new {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #001b40;
}
.stat-desc-new {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ─── Categories Horizontal Grid ────────────────────────── */
.cats-section-new {
  position: relative;
  padding: 4.75rem 0 4.5rem;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 72%);
}
.cats-section-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(227, 30, 36, 0.06), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(0, 27, 64, 0.05), transparent 22%);
  pointer-events: none;
}
.cats-header-pre {
  color: #e31e24;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 0.4rem;
}
.cats-header-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #001b40;
  text-align: center;
  margin-bottom: 0.5rem;
}
.cats-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2.75rem;
}
.cat-card-horizontal {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 27, 64, 0.08);
  border-radius: 24px;
  padding: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  overflow: hidden;
}
.cat-card-horizontal:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 27, 64, 0.18);
  box-shadow: 0 22px 42px rgba(0, 27, 64, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}
.cat-img-box {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  border: 1px solid rgba(0, 27, 64, 0.08);
}
.cat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.cat-card-horizontal:hover .cat-img-box img {
  transform: scale(1.08);
}
.cat-info-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}
.cat-title-hor {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #001b40;
  line-height: 1.3;
}
.cat-desc-hor {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}
.cat-link-hor {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  color: #001b40;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  margin-top: 0.35rem;
}
.cat-card-horizontal:hover .cat-link-hor {
  color: #e31e24;
}

/* ─── Product Categories fallback ────────────────────────── */
.category-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem 1rem;
  text-align: center; cursor: pointer; transition: all var(--transition);
  text-decoration: none; color: inherit;
}
.category-card:hover {
  border-color: var(--blue-primary); transform: translateY(-4px);
  box-shadow: var(--shadow-glow); background: var(--bg-card);
}


.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-bright); transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.product-img-wrap { position: relative; overflow: hidden; }
.product-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge-holsell {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0A0F1E; padding: 3px 10px; border-radius: 20px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.5px;
}
.stock-badge {
  padding: 3px 8px; border-radius: 20px;
  font-size: 0.65rem; font-weight: 700;
}
.in-stock  { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.out-stock { background: rgba(239,68,68,0.15); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }

.product-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.72rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.3rem; }
.product-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.3rem; line-height: 1.3; }
.product-short-desc { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.75rem; flex: 1; line-height: 1.55; }
.product-card-link {
  color: inherit;
  text-decoration: none;
}
.product-card-link:hover {
  color: inherit;
}

.product-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.9rem; }
.price-current { font-size: 1.25rem; font-weight: 800; color: var(--blue-bright); }
.price-original { font-size: 0.82rem; text-decoration: line-through; color: var(--text-muted); }
.price-savings { font-size: 0.72rem; color: var(--green); font-weight: 700; }

.product-attrs {
  display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0.9rem;
}
.attr-chip {
  padding: 2px 8px; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.68rem; color: var(--text-secondary); font-family: 'JetBrains Mono', monospace;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: stretch;
}
.product-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  font-size: 0.82rem;
  padding: 0.7rem 0.75rem;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
}

/* ─── Services Section ───────────────────────────────────── */
.services-section { padding: 4rem 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-bright); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--blue-glow); border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1rem;
}
.service-name { font-family: 'Sora', 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.service-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.5; }
.service-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.1rem; }
.service-price { font-size: 0.88rem; font-weight: 700; color: var(--blue-bright); }
.service-duration { font-size: 0.78rem; color: var(--text-muted); }
.service-actions { display: flex; gap: 0.5rem; }
.service-actions .btn {
  flex: 1;
  min-height: 44px;
  font-size: 0.82rem;
  padding: 0.7rem 0.75rem;
}

/* ─── Stats Strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--gradient-blue); padding: 2.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 700; color: white; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ─── Business / Contact Section ─────────────────────────── */
.contact-section { padding: 4rem 0; background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; min-height: 100%; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.1rem; transition: all var(--transition);
}
.info-card:hover { border-color: var(--border-bright); }
.info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--blue-glow); border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  flex-shrink: 0;
}
.info-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-value { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }
.info-value a { color: var(--blue-bright); }

.contact-ctas { display: flex; gap: 0.75rem; flex-direction: column; }
.map-embed {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 100%;
  height: 100%;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.05);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: none; filter: none; }

/* ─── Service Request Form ───────────────────────────────── */
.form-section { padding: 4rem 0; }
.form-card {
  max-width: 700px; margin: 0 auto;
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-input, .form-select, .form-textarea {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.7rem 0.9rem;
  color: var(--text-primary); font-family: inherit; font-size: 0.9rem;
  transition: all var(--transition); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
  background: var(--bg-card);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-select option { background: var(--bg-secondary); }

/* ─── Filters ────────────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
  padding: 1.25rem; background: var(--gradient-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.filter-bar .form-input { max-width: 280px; }
.filter-bar .form-select { min-width: 160px; }

/* ─── Pagination ─────────────────────────────────────────── */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2.5rem; }
.page-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--blue-primary); border-color: var(--blue-primary); color: white; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: #f1f5f9; border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { }
.footer-logo-name { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.footer-tagline { font-size: 0.78rem; color: var(--cyan); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }
.footer-heading { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.83rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--blue-bright); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-made { font-size: 0.78rem; color: var(--text-muted); }
.footer-made span { color: var(--red); }
.footer-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-contact-item {
  line-height: 1.6;
}
.site-footer-dark {
  background: #001b40;
  color: #ffffff;
  border-top: 4px solid var(--cyan);
  padding: 4rem 0 2rem;
}
.site-footer-dark .footer-grid-rich {
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.site-footer-dark .footer-heading,
.site-footer-dark .footer-logo-name {
  color: #ffffff;
}
.site-footer-dark .footer-links a,
.site-footer-dark .footer-desc,
.site-footer-dark .footer-copy,
.site-footer-dark .footer-made,
.site-footer-dark .footer-contact-item,
.site-footer-dark .footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer-dark .footer-links a:hover,
.site-footer-dark .footer-contact-item a:hover {
  color: #ffffff;
}
.footer-logo-badge {
  margin-bottom: 1.25rem;
  max-width: 280px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 8px;
  display: inline-block;
}
.footer-logo-image {
  height: 40px;
  display: block;
  width: auto;
}
.footer-bottom-rich {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Admin Sidebar ──────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(227, 30, 36, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}
.admin-sidebar {
  width: 280px; flex-shrink: 0;
  background: linear-gradient(180deg, rgba(0, 27, 64, 0.98) 0%, rgba(0, 17, 44, 0.98) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed; top: 0; left: 0; height: 100vh; z-index: 100;
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: 24px 0 48px rgba(0, 9, 22, 0.24);
}
.admin-sidebar-header {
  padding: 1.6rem 1.5rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-sidebar-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.admin-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.96), rgba(179, 15, 20, 0.96));
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.28);
}
.admin-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.admin-brand-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
}
.admin-brand-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-sidebar-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 0.95rem;
}
.admin-nav { flex: 1; padding: 1rem 0; }
.admin-nav-group { margin-bottom: 0.7rem; }
.admin-nav-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 0.7rem;
  margin: 0.12rem 0.9rem;
  padding: 0.82rem 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border-radius: 14px;
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(227, 30, 36, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.admin-nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  text-align: center;
  flex-shrink: 0;
}
.admin-nav-link.active .admin-nav-icon,
.admin-nav-link:hover .admin-nav-icon {
  background: rgba(227, 30, 36, 0.22);
}
.admin-sidebar-footer {
  padding: 1.1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.admin-user-info {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 0.4rem;
}
.admin-user-email {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
  word-break: break-word;
}

.admin-main {
  flex: 1;
  margin-left: 280px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 27, 64, 0.08);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  gap: 1rem;
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-title-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 27, 64, 0.06);
  color: var(--blue-primary);
}
.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.admin-sidebar-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 27, 64, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.admin-content { flex: 1; padding: 2rem; }
.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 23, 0.58);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 90;
}
.admin-sidebar-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

/* ─── Admin Cards & Stats ────────────────────────────────── */
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 27, 64, 0.08);
  border-radius: 22px; padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}
.stat-card-num { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--blue-bright); line-height: 1; }
.stat-card-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.stat-card-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  border-radius: 16px;
  background: rgba(0, 27, 64, 0.06);
  color: var(--blue-primary);
}

/* ─── Data Tables ────────────────────────────────────────── */
.data-table-wrap {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 27, 64, 0.08);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}
.data-table-header {
  padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0, 27, 64, 0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.data-table-header h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.data-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.data-table th {
  background: #f8fafc; padding: 0.8rem 1rem;
  text-align: left; font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px; border-bottom: 1px solid rgba(0, 27, 64, 0.08);
}
.data-table td { padding: 0.85rem 1rem; border-bottom: 1px solid rgba(0, 27, 64, 0.08); font-size: 0.85rem; color: var(--text-primary); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0, 27, 64, 0.03); }

/* ─── Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-md);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-title { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text-primary); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.3rem; cursor: pointer; padding: 0.2rem; transition: color var(--transition); }
.modal-close:hover { color: var(--text-primary); }
.modal-body { display: flex; flex-direction: column; gap: 1rem; }
.modal-footer { margin-top: 1.5rem; display: flex; gap: 0.75rem; justify-content: flex-end; }

/* ─── Toast Notifications ────────────────────────────────── */
.toast-container { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; }
.toast {
  padding: 0.8rem 1.2rem; border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 500; min-width: 260px;
  animation: slideInRight 0.3s ease; display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow-md);
}
.toast-success { background: rgba(16,185,129,0.9); border: 1px solid var(--green); color: white; }
.toast-error   { background: rgba(239,68,68,0.9); border: 1px solid var(--red); color: white; }
.toast-info    { background: rgba(8,145,178,0.9); border: 1px solid var(--blue-primary); color: white; }

.data-table.mobile-stack td[data-label]::before {
  content: attr(data-label);
  display: none;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(100%); }
}

/* ─── Loading Spinner ────────────────────────────────────── */
.spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--blue-bright);
  animation: spin 0.7s linear infinite; margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

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

/* ─── Empty State ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-title { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 600; }
.empty-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ─── OTP Login ──────────────────────────────────────────── */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem; background: var(--gradient-hero); position: relative; overflow: hidden;
}
.login-page::before {
  content: ''; position: absolute; inset: 0; background: var(--gradient-glow); pointer-events: none;
}
.login-card {
  background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(0, 27, 64, 0.1);
  border-radius: 28px; padding: 2.5rem; width: 100%; max-width: 440px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12); position: relative;
  backdrop-filter: blur(18px);
}
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #001b40 0%, #0f2f66 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 27, 64, 0.2);
}
.login-title { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.login-sub { font-size: 0.82rem; color: var(--text-muted); }
.otp-display {
  display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 0.5rem;
}
.otp-digit {
  width: 48px; height: 56px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg-secondary);
  color: var(--text-primary); font-size: 1.5rem; font-weight: 700;
  text-align: center; font-family: 'JetBrains Mono', monospace;
  transition: all var(--transition);
}
.otp-digit:focus { outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(0,212,255,0.15); }

/* ─── Banners / Carousel ─────────────────────────────────── */
.banner-carousel {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 3rem; border: 1px solid var(--border);
  background: var(--bg-card); min-height: 200px;
}
.banner-slide { display: none; }
.banner-slide.active { display: block; }
.banner-slide img { width: 100%; height: 280px; object-fit: cover; }
.banner-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 2rem 2rem 1.5rem;
}
.banner-title { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; color: white; }
.banner-sub { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.banner-dots { position: absolute; bottom: 1rem; right: 1.5rem; display: flex; gap: 0.4rem; }
.banner-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: all var(--transition);
}
.banner-dot.active { background: var(--blue-bright); width: 20px; border-radius: 4px; }
/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer-dark .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
  }
  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .cats-grid-horizontal { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar-toggle { display: inline-flex; }
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .top-bar-left, .top-bar-right {
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story-media {
    order: -1;
  }
  .page-hero-title {
    max-width: 12ch;
  }
  .page-hero-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .brands-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-carousel-shell {
    grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
    gap: 1rem;
  }
  .hero-shop-copy {
    min-height: 480px;
    padding: 1.75rem;
  }
  .hero-shop-title {
    font-size: clamp(2.65rem, 4.8vw, 4rem);
  }
  .hero-shop-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-banner-panel {
    min-height: 480px;
  }
  .hero-banner-grid {
    min-height: 500px;
    padding: 2rem 2rem 4.6rem;
  }
  .hero-banner-copy {
    max-width: min(540px, 62vw);
    padding: 1.35rem 1.3rem 1.45rem 1.95rem;
  }
  .hero-banner-slide::before {
    background:
      linear-gradient(90deg, rgba(2, 10, 24, 0.82) 0%, rgba(3, 16, 39, 0.7) 28%, rgba(4, 20, 49, 0.42) 54%, rgba(6, 23, 49, 0.14) 78%, rgba(6, 23, 49, 0.06) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 24%, rgba(0, 0, 0, 0.2) 100%);
  }
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-item + .trust-strip-item {
    border-left: none;
    border-top: 1px solid rgba(0, 27, 64, 0.1);
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .container { padding: 0 1rem; }
  .page-hero {
    padding: 3.4rem 0 2.6rem;
  }
  .about-story-section {
    padding: 3rem 0 3.25rem;
  }
  .about-story-grid {
    gap: 1.5rem;
  }
  .about-story-image-frame {
    border-radius: 22px;
    aspect-ratio: 4 / 3;
  }
  .about-story-stats {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero-title {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 3rem);
  }
  .page-hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .page-hero-side {
    grid-template-columns: 1fr;
  }
  .brands-ribbon-pill {
    min-width: 170px;
  }
  .brands-grid-pro {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 0.9rem 0 0.7rem;
  }
  .hero .container.hero-shell {
    width: 100%;
    padding-inline: 1rem;
  }
  .hero-carousel-shell {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
  .hero-shop-copy {
    order: 2;
    min-height: auto;
    padding: 1.45rem 1.1rem 1.1rem;
    border-radius: 26px;
  }
  .hero-banner-panel {
    order: 1;
    min-height: 300px;
    border-radius: 26px;
  }
  .hero-carousel-stage {
    min-height: 300px;
  }
  .hero-shop-title {
    font-size: clamp(2.05rem, 8vw, 2.9rem);
    max-width: 8ch;
    margin-bottom: 0.7rem;
  }
  .hero-shop-lead {
    font-size: 0.98rem;
    margin-bottom: 0.55rem;
  }
  .hero-shop-desc {
    font-size: 0.94rem;
    line-height: 1.7;
    max-width: 100%;
  }
  .hero-shop-actions {
    gap: 0.65rem;
    margin-top: 1rem;
  }
  .hero-shop-actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
  }
  .hero-shop-meta {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .hero-shop-meta span {
    font-size: 0.77rem;
    padding: 0.86rem 0.92rem;
  }
  .hero-banner-grid {
    align-items: flex-end;
    min-height: 300px;
    padding: 1rem 1rem 3.8rem;
  }
  .hero-banner-copy {
    max-width: 100%;
    padding: 1.1rem 1rem 1.2rem 1.35rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  .hero-banner-slide::before {
    background:
      linear-gradient(180deg, rgba(2, 10, 24, 0.55) 0%, rgba(3, 14, 34, 0.52) 30%, rgba(3, 14, 34, 0.42) 58%, rgba(2, 10, 24, 0.78) 100%),
      linear-gradient(90deg, rgba(2, 10, 24, 0.55) 0%, rgba(2, 10, 24, 0.12) 100%);
  }
  .hero-banner-visual::after {
    opacity: 0;
  }
  .hero-banner-media img,
  .hero-banner-media video {
    object-position: center center;
  }
  .hero-banner-title {
    font-size: clamp(1.7rem, 7.5vw, 2.5rem);
    max-width: 10ch;
    margin-bottom: 0.75rem;
  }
  .hero-banner-subtitle {
    max-width: 24rem;
    font-size: 0.88rem;
  }
  .hero-banner-description {
    max-width: 24rem;
    font-size: 0.88rem;
    line-height: 1.55;
  }
  .hero-banner-actions {
    width: 100%;
    gap: 0.65rem;
  }
  .hero-banner-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-banner-benefits {
    gap: 0.55rem 0.9rem;
    margin-bottom: 0.85rem;
  }
  .hero-banner-benefits span {
    font-size: 0.82rem;
    padding: 0.48rem 0.72rem;
  }
  .hero-carousel-footer {
    bottom: 0.85rem;
    padding: 0 0.85rem;
  }
  .hero-carousel-dots {
    gap: 0.48rem;
    padding: 0.34rem 0.62rem;
  }
  .hero-carousel-btn {
    width: 40px;
    height: 40px;
  }
  .hero-carousel-btn#hero-prev-btn {
    left: 0.85rem;
  }
  .hero-carousel-btn#hero-next-btn {
    right: 0.85rem;
  }
  .hero-carousel-btn:hover {
    transform: translateY(-50%);
  }
  .stats-strip-new {
    padding: 1.25rem 0 3rem;
    background: #f4f7fb;
  }
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0;
  }
  .stat-item-new {
    padding: 1rem;
  }
  .stat-circle-new {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .cats-grid-horizontal { grid-template-columns: 1fr; gap: 1.25rem; }
  .trust-strip {
    padding-bottom: 3.4rem;
  }
  .trust-strip-item {
    padding: 1.1rem 1rem;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer-dark {
    padding: 3rem 0 1.75rem;
  }
  .site-footer-dark .footer-grid-rich {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-bottom: 2rem;
  }
  .footer-brand {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .header-inner {
    height: auto;
    padding: 0.9rem 1.25rem;
  }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-actions { margin-left: auto; }
  .header-logo-image {
    height: 54px;
  }
  .header-call-btn-box {
    padding: 0.72rem 0.8rem;
  }
  .header-call-icon {
    width: 36px;
    height: 36px;
  }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .data-table-wrap { overflow-x: auto; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-content { padding: 1rem; }
  .admin-topbar {
    padding: 0.9rem 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .admin-topbar h1 {
    width: calc(100% - 56px);
    flex: none;
  }
  .admin-topbar-actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
  .service-meta,
  .service-actions,
  .contact-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .service-actions .btn,
  .contact-ctas .btn {
    width: 100%;
  }
  .data-table.mobile-stack {
    min-width: 0;
    display: block;
  }
  .data-table.mobile-stack thead {
    display: none;
  }
  .data-table.mobile-stack tbody {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
  }
  .data-table.mobile-stack tr {
    display: block;
    border: 1px solid rgba(0, 27, 64, 0.08);
    border-radius: 18px;
    background: #ffffff;
    padding: 0.25rem 0;
  }
  .data-table.mobile-stack td {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(0, 27, 64, 0.06);
  }
  .data-table.mobile-stack td:last-child {
    border-bottom: none;
  }
  .data-table.mobile-stack td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .filter-bar { padding: 1rem; }
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-item + .trust-strip-item {
    border-left: none;
    border-top: 1px solid rgba(0, 27, 64, 0.1);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0.7rem 0 0.55rem;
  }
  .hero-carousel-stage {
    min-height: 240px;
  }
  .hero-banner-panel {
    min-height: 240px;
  }
  .hero-shop-copy {
    padding: 1.25rem 0.95rem 1rem;
  }
  .hero-shop-kicker {
    font-size: 0.62rem;
    padding: 0.42rem 0.72rem;
    margin-bottom: 0.82rem;
  }
  .hero-shop-title {
    font-size: clamp(1.86rem, 9vw, 2.28rem);
    max-width: 8ch;
    margin-bottom: 0.6rem;
  }
  .hero-shop-lead {
    font-size: 0.9rem;
  }
  .hero-shop-desc {
    font-size: 0.87rem;
    line-height: 1.62;
  }
  .hero-shop-actions .btn {
    flex-basis: 100%;
  }
  .hero-shop-meta {
    margin-top: 0.9rem;
  }
  .hero-shop-meta span {
    font-size: 0.75rem;
  }
  .hero-carousel-footer {
    bottom: 0.8rem;
    padding: 0 0.75rem;
  }
  .hero-carousel-dots {
    padding: 0.32rem 0.58rem;
  }
  .hero-carousel-btn {
    width: 38px;
    height: 38px;
  }
  .hero-carousel-btn#hero-prev-btn {
    left: 0.75rem;
  }
  .hero-carousel-btn#hero-next-btn {
    right: 0.75rem;
  }
  .page-hero {
    padding: 3rem 0 2.4rem;
  }
  .page-hero-kicker {
    font-size: 0.7rem;
  }
  .page-hero-desc {
    font-size: 0.88rem;
  }
  .brands-page-section {
    padding: 3rem 0 3.4rem;
  }
  .brands-ribbon {
    border-radius: 22px;
    margin-bottom: 1.8rem;
  }
  .brands-ribbon-pill {
    min-width: 150px;
    padding: 0.7rem 0.85rem;
  }
  .brand-showcase-card {
    padding: 1.15rem;
    border-radius: 22px;
  }
  .brand-logo-shell {
    width: 66px;
    height: 66px;
  }
  .brand-logo-shell img {
    width: 50px;
    height: 50px;
  }
  .hero-banner-grid {
    min-height: 220px;
    padding: 0.75rem 0.75rem 3.5rem;
  }
  .hero-banner-copy {
    padding: 0.9rem 0.8rem 1rem 1.1rem;
    border-radius: 18px;
  }
  .hero-banner-copy::before {
    left: 0.7rem;
    top: 0.9rem;
    bottom: 0.9rem;
  }
  .hero-banner-kicker {
    font-size: 0.65rem;
    padding: 0.35rem 0.65rem;
  }
  .hero-banner-title {
    font-size: clamp(1.35rem, 8.5vw, 1.9rem);
    margin-bottom: 0.6rem;
    max-width: 10ch;
  }
  .hero-banner-subtitle {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .hero-banner-description {
    font-size: 0.8rem;
    line-height: 1.48;
    margin-bottom: 0.8rem;
  }
  .hero-banner-benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.48rem;
  }
  .hero-banner-benefits span {
    font-size: 0.78rem;
  }
  .hero-carousel-btn {
    width: 34px;
    height: 34px;
  }
  .hero-carousel-btn#hero-prev-btn {
    left: 0.45rem;
  }
  .hero-carousel-btn#hero-next-btn {
    right: 0.45rem;
  }
  .hero-carousel-progress {
    width: min(140px, calc(100% - 2rem));
  }
  .products-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-bar .form-input, .filter-bar .form-select { max-width: 100%; }
  .site-footer-dark {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-logo-badge {
    max-width: 220px;
    padding: 6px 10px;
  }
  .footer-logo-image {
    height: 34px;
  }
  .site-footer-dark .footer-grid-rich {
    gap: 1.35rem;
    margin-bottom: 1.6rem;
  }
  .footer-links {
    gap: 0.7rem;
  }
  .footer-links a {
    font-size: 0.88rem;
  }
  .footer-contact-item {
    align-items: flex-start !important;
    font-size: 0.88rem;
  }
  .footer-contact-item i {
    margin-top: 0.1rem;
    flex-shrink: 0;
  }
  .about-story-section {
    padding: 2.5rem 0 2.8rem;
  }
  .about-story-stats {
    grid-template-columns: 1fr;
  }
  .about-story-image-frame {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
  }
  .stats-strip-new {
    padding: 1rem 0 2.4rem;
    background: #f4f7fb;
  }
  .stats-grid-new { grid-template-columns: 1fr; }
  .stat-item-new {
    padding: 0.95rem;
    border-radius: 20px;
  }
  .header-call-label,
  .header-call-number { display: none; }
  .header-call-btn-box { padding: 0.65rem; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .footer-cta-row .btn {
    width: 100%;
  }
  .footer-bottom {
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }
  .footer-copy,
  .footer-made {
    width: 100%;
  }
  .footer-made {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cat-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem;
  }
  .cat-img-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  .toast-container {
    left: 1rem;
    right: 1rem;
    top: 1rem;
  }
  .toast {
    min-width: 0;
    width: 100%;
  }
  .data-table.mobile-stack td {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}



/* ─── Print ──────────────────────────────────────────────── */
@media print { .site-header, .site-footer, .hero-actions { display: none; } }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-primary); }

/* ─── Brands Marquee & Custom Colors ────────────────────── */
.brands-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
  display: flex;
}
.brands-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}
.brands-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Brand chips custom colors */
.brand-chip {
  padding: 8px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0; /* Prevent squashing in marquee flex layout */
}
.brand-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.brand-chip.brand-hp {
  border-color: #007DB8;
  color: #007DB8;
  background: rgba(0, 125, 184, 0.08);
}
.brand-chip.brand-dell {
  border-color: #006BAD;
  color: #006BAD;
  background: rgba(0, 107, 173, 0.08);
}
.brand-chip.brand-lenovo {
  border-color: #E11925;
  color: #E11925;
  background: rgba(225, 25, 37, 0.08);
}
.brand-chip.brand-asus {
  border-color: #00539B;
  color: #00539B;
  background: rgba(0, 83, 155, 0.08);
}
.brand-chip.brand-acer {
  border-color: #83B81A;
  color: #83B81A;
  background: rgba(131, 184, 26, 0.08);
}
.brand-chip.brand-samsung {
  border-color: #0C4DA2;
  color: #0C4DA2;
  background: rgba(12, 77, 162, 0.08);
}
.brand-chip.brand-canon {
  border-color: #CC0000;
  color: #CC0000;
  background: rgba(204, 0, 0, 0.08);
}
.brand-chip.brand-epson {
  border-color: #003399;
  color: #003399;
  background: rgba(0, 51, 153, 0.08);
}
.brand-chip.brand-logitech {
  border-color: #00B8FC;
  color: #00B8FC;
  background: rgba(0, 184, 252, 0.08);
}
.brand-chip.brand-intel {
  border-color: #0071C5;
  color: #0071C5;
  background: rgba(0, 113, 197, 0.08);
}
.brand-chip.brand-zebronics {
  border-color: #8EC63F;
  color: #8EC63F;
  background: rgba(142, 198, 63, 0.08);
}
.brand-chip.brand-tenda {
  border-color: #FF6600;
  color: #FF6600;
  background: rgba(255, 102, 0, 0.08);
}
.brand-chip.brand-fingers {
  border-color: #FF007F;
  color: #FF007F;
  background: rgba(255, 0, 127, 0.08);
}
.brand-chip.brand-labcare {
  border-color: #00A4E4;
  color: #00A4E4;
  background: rgba(0, 164, 228, 0.08);
}
.brand-chip.brand-tp-link {
  border-color: #00AEEF;
  color: #00AEEF;
  background: rgba(0, 174, 239, 0.08);
}
.brand-chip.brand-quick-heal {
  border-color: #ED1C24;
  color: #ED1C24;
  background: rgba(237, 28, 36, 0.08);
}
.brand-chip.brand-default {
  border-color: var(--border-bright);
  color: var(--text-secondary);
  background: var(--bg-card);
}

/* ─── Search Input Wrapper ───────────────────────────────── */
.search-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
}
.search-input-wrapper .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 16px;
  height: 16px;
}
.search-input-wrapper .form-input {
  padding-left: 36px;
  width: 100%;
}

/* =========================================================
   2026 Visual Refresh
   ========================================================= */
.top-bar {
  display: none !important;
}

body {
  background: #f5f7fb;
  color: #09111f;
}

.btn {
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #d1091d;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(209, 9, 29, 0.18);
}
.btn-primary:hover {
  background: #b30718;
  color: #ffffff;
}

.btn-call {
  background: #08182f;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(8, 24, 47, 0.16);
}
.btn-call:hover {
  background: #0f2444;
  color: #ffffff;
}

.btn-whatsapp {
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.18);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1320px;
  min-height: 74px;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

.header-brand {
  gap: 0.68rem;
}

.header-logo-image {
  height: 36px;
}

.header-brand-text {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #081120;
  white-space: nowrap;
}

.main-nav {
  margin-left: 1rem;
  gap: 1.3rem;
}

.nav-link {
  padding: 1.25rem 0;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1b2536;
}

.nav-link:hover,
.nav-link.active {
  color: #d1091d;
}

.nav-link::after {
  bottom: 0.9rem;
  height: 2px;
  background: #d1091d;
}

.header-actions {
  margin-left: auto;
  gap: 0.65rem;
}

.header-search-shell {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 270px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 27, 64, 0.12);
  background: #edf3ff;
}

.header-search-shell-mobile {
  width: 100%;
  min-width: 0;
  margin-bottom: 1rem;
}

.header-search-icon {
  width: 16px;
  height: 16px;
  color: #52607a;
  flex-shrink: 0;
}

.header-search-input {
  width: 100%;
  border: none;
  background: transparent;
  color: #09111f;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.header-search-input:focus {
  outline: none;
}

.header-search-input::placeholder {
  color: #6b7280;
}

.header-call-btn-box.header-call-btn-compact {
  padding: 0.78rem 1.05rem;
  border-radius: 12px;
  box-shadow: none;
  gap: 0.35rem;
}

.header-call-btn-box.header-call-btn-compact .header-call-label {
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.header-call-number-inline {
  display: none;
}

.header-utility-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 27, 64, 0.1);
  background: #ffffff;
  color: #081120;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.header-utility-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(209, 9, 29, 0.24);
  color: #d1091d;
}

.mobile-menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #edf3ff;
}

.mobile-nav-panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mobile-nav-links .nav-link {
  padding: 0.9rem 0 !important;
}

.mobile-nav-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.mobile-nav-actions .btn {
  flex: 1 1 170px;
}

.site-footer-dark {
  background: #06090f;
  border-top: none;
  padding: 3.6rem 0 1.8rem;
}

.footer-grid-rich {
  gap: 2rem;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-brand-mark .footer-logo-image {
  height: 34px;
  width: auto;
}

.footer-brand-name {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.55rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-desc-rich {
  max-width: 21rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-call-btn {
  background: #ffffff;
  color: #06090f;
  box-shadow: none;
}

.footer-call-btn:hover {
  background: #f3f4f6;
  color: #06090f;
}

.footer-contact-list {
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-contact-item [data-lucide] {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom-rich {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.page-home .hero {
  background: linear-gradient(180deg, #eaf0f8 0%, #f5f7fb 100%);
  padding: 1.2rem 0 0;
}

.page-home .hero-carousel-shell {
  gap: 0;
  background: linear-gradient(135deg, #081d45 0%, #082152 100%);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 58px rgba(8, 24, 47, 0.12);
}

.page-home .hero-shop-copy {
  min-height: 540px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #ffffff;
  padding: 2.6rem 2.4rem 3rem;
}

.page-home .hero-shop-kicker {
  background: rgba(227, 30, 36, 0.12);
  border-color: rgba(227, 30, 36, 0.2);
  color: #ffccd1;
}

.page-home .hero-shop-title {
  color: #ffffff;
}

.page-home .hero-shop-desc {
  color: rgba(255, 255, 255, 0.84);
}

.page-home .hero-shop-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .hero-shop-meta span {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.page-home .hero-banner-panel {
  border-radius: 0;
  border: none;
  box-shadow: none;
  min-height: 540px;
}

.page-home .stats-strip-new {
  margin-top: 1rem;
  padding: 0.6rem 0 4rem;
  background: transparent;
  position: relative;
  z-index: 2;
}

.page-home .cats-section-new {
  padding-top: 3.6rem;
}

.page-home .products-section,
.page-home .services-section,
.page-home .contact-section {
  background: #f5f7fb;
}

.service-hero {
  padding: 1rem 0 3.4rem;
  background: #f5f7fb;
}

.service-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.88fr);
  gap: 1.6rem;
  align-items: center;
  padding: 1.65rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #081d45 0%, #082152 100%);
  box-shadow: 0 30px 60px rgba(8, 24, 47, 0.16);
}

.service-hero-copy {
  color: #ffffff;
}

.service-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(227, 30, 36, 0.14);
  color: #ffc0c6;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-hero-title {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(2.25rem, 4.6vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.service-hero-title span {
  color: #ffb1b9;
}

.service-hero-desc {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.68;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-hero-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: -0.85rem;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.service-metric-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.service-metric-card strong {
  display: block;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #081120;
}

.service-metric-card span {
  display: block;
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.82rem;
}

.service-showcase-section {
  padding: 3.8rem 0 4rem;
  background: #f5f7fb;
}

.service-section-header .section-eyebrow,
.catalog-section-header .section-eyebrow {
  display: inline-flex;
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d1091d;
}

.catalog-section-header-left {
  text-align: left;
  align-items: flex-start;
}

.catalog-section-header-left .section-desc,
.catalog-section-header-left .section-line {
  margin-left: 0;
}

.service-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.service-showcase-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.service-showcase-card.has-media {
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.85fr);
  align-items: stretch;
}

.service-showcase-card.is-featured {
  grid-column: span 1;
}

.service-showcase-card.is-dark {
  background: linear-gradient(135deg, #081d45 0%, #0b244f 100%);
  border-color: rgba(8, 24, 47, 0.12);
}

.service-showcase-card.is-dark .service-showcase-body h3,
.service-showcase-card.is-dark .service-showcase-body p,
.service-showcase-card.is-dark .service-showcase-points li,
.service-showcase-card.is-dark .service-showcase-tags span {
  color: #ffffff;
}

.service-showcase-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-showcase-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  background: #edf3ff;
  color: #081d45;
}

.service-showcase-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.service-showcase-body h3 {
  margin-bottom: 0.45rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #081120;
}

.service-showcase-body p {
  color: #556174;
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-showcase-points {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
}

.service-showcase-points li {
  position: relative;
  padding-left: 1rem;
  color: #0f2444;
  font-size: 0.82rem;
  font-weight: 600;
}

.service-showcase-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.service-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.service-showcase-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: #edf3ff;
  color: #0f2444;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
}

.service-showcase-media {
  overflow: hidden;
  border-radius: 20px;
  background: #dbe7fa;
}

.service-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

@media (min-width: 1180px) {
  .service-showcase-card.is-featured {
    grid-column: span 2;
  }
}

.service-booking-section {
  padding: 4rem 0;
  background: #dfe8fb;
}

.service-booking-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.06);
}

.service-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-priority-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 48px;
  align-items: center;
  padding: 0.75rem 0;
}

.service-priority-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #374151;
}

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

.service-booking-actions .btn {
  flex: 1 1 220px;
}

.service-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem 1rem;
}

.service-form-success-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.service-form-success h3 {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.35rem;
}

.service-center-section {
  padding: 4rem 0 4.4rem;
  background: #f5f7fb;
}

.service-center-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.4rem;
  align-items: stretch;
}

.service-center-copy,
.catalog-store-copy {
  min-width: 0;
}

.service-center-stack {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 0 1.3rem;
}

.service-center-item {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 27, 64, 0.08);
}

.service-center-item:last-child {
  border-bottom: none;
}

.service-center-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #d1091d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-center-item p,
.service-center-item a {
  color: #081120;
  font-size: 0.95rem;
}

.service-center-actions,
.catalog-store-actions,
.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-center-actions .btn,
.catalog-store-actions .btn,
.contact-page-actions .btn {
  flex: 1 1 180px;
}

.service-center-map,
.catalog-store-map {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  margin-top: 0;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid rgba(0, 27, 64, 0.08);
  background: #dbe7fa;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.05);
}

.service-center-map iframe,
.catalog-store-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.catalog-hero {
  padding: 2.8rem 0 3.2rem;
  background: linear-gradient(135deg, #081d45 0%, #08182f 100%);
  color: #ffffff;
}

.catalog-hero-shell {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.catalog-hero-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.catalog-hero-title {
  margin-bottom: 0.85rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.catalog-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.catalog-main {
  padding: 2rem 0 3rem;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 92px;
}

.catalog-filter-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

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

.catalog-filter-head h2 {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.3rem;
}

.catalog-filter-head span {
  font-size: 0.8rem;
  color: #64748b;
}

.catalog-filter-group {
  margin-bottom: 1rem;
}

.catalog-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.catalog-help-card {
  margin-top: 1.3rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #08182f 0%, #0d2240 100%);
  color: #ffffff;
}

.catalog-help-card h3 {
  margin-bottom: 0.45rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.15rem;
}

.catalog-help-card p {
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
}

.catalog-results {
  min-width: 0;
}

.catalog-results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.catalog-results-kicker {
  margin-bottom: 0.3rem;
  color: #d1091d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-results-head h2 {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.7rem;
}

.catalog-toolbar-chipset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.catalog-products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-products .product-card.catalog-product-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.page-products .product-card.catalog-product-card:hover {
  transform: translateY(-4px);
}

.page-products .catalog-product-card .product-img {
  aspect-ratio: 1 / 0.84;
  background: #eef3fa;
}

.catalog-product-subline {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 0.95rem;
}

.page-products .catalog-product-card .product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
  align-items: center;
  gap: 0.55rem;
}

.page-products .catalog-product-card .product-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  font-size: 0.76rem;
  padding: 0.72rem 0.8rem;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
}

.catalog-product-action {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  flex-shrink: 0;
}

.catalog-empty-cta {
  margin-top: 2rem;
}

.catalog-empty-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.6rem 2rem;
  text-align: center;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.catalog-empty-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(209, 9, 29, 0.08);
  color: #d1091d;
}

.catalog-empty-card h3 {
  margin-bottom: 0.55rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.32rem;
}

.catalog-empty-card p {
  color: #64748b;
  line-height: 1.75;
}

.catalog-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.catalog-collections {
  padding: 0 0 4rem;
}

.catalog-collection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.catalog-collection-card {
  position: relative;
  display: block;
  min-height: 230px;
  border-radius: 24px;
  overflow: hidden;
  background: #08182f;
  color: #ffffff;
}

.catalog-collection-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.catalog-collection-card.is-large {
  min-height: 290px;
}

.catalog-collection-card.is-large img {
  min-height: 290px;
}

.catalog-collection-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(8, 24, 47, 0.08) 0%, rgba(8, 24, 47, 0.82) 100%);
}

.catalog-collection-overlay h3 {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.catalog-collection-overlay p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.catalog-collection-overlay span {
  margin-top: 0.9rem;
  font-weight: 700;
}

.catalog-store-section {
  padding: 0 0 4rem;
}

.catalog-store-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.catalog-store-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.catalog-store-map iframe {
  min-height: 420px;
}

.contact-page-hero {
  padding: 2.4rem 0 2.8rem;
  background: linear-gradient(135deg, #081d45 0%, #08182f 100%);
}

.product-detail-page {
  padding: 1.25rem 0 3.5rem;
  background: #f5f7fb;
}

.product-detail-back-row {
  margin-bottom: 1rem;
}

.product-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #081d45;
  font-weight: 700;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.product-detail-gallery-card,
.product-detail-copy-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.product-detail-copy-card {
  display: flex;
  flex-direction: column;
}

.product-detail-main-media {
  overflow: hidden;
  border-radius: 20px;
  background: #edf3ff;
  aspect-ratio: 5 / 4;
}

.product-detail-main-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-detail-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.product-detail-thumb {
  padding: 0;
  border: 1px solid rgba(0, 27, 64, 0.12);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.product-detail-thumb.active {
  border-color: #d1091d;
  box-shadow: 0 0 0 3px rgba(209, 9, 29, 0.12);
}

.product-detail-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.product-detail-kicker {
  margin-bottom: 0.65rem;
  color: #d1091d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-title {
  margin-bottom: 0.8rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #081120;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.product-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #edf3ff;
  color: #0f2444;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-detail-price {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #081d45;
}

.product-detail-price-original {
  font-size: 1rem;
  color: #64748b;
  text-decoration: line-through;
}

.product-detail-description {
  color: #556174;
  font-size: 0.95rem;
  line-height: 1.72;
}

.product-detail-spec-card {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(0, 27, 64, 0.08);
}

.product-detail-spec-card h2 {
  margin-bottom: 0.9rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.2rem;
}

.product-detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-detail-spec-item {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
}

.product-detail-spec-name {
  display: block;
  margin-bottom: 0.22rem;
  color: #64748b;
  font-size: 0.78rem;
}

.product-detail-spec-value {
  color: #081120;
  font-size: 0.95rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1.4rem;
}

.product-detail-actions .btn {
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 190px;
  padding-inline: 1.2rem;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
}

.product-detail-support-card {
  margin-top: 1.1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #081d45 0%, #082152 100%);
  color: #ffffff;
}

.product-detail-support-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.product-detail-support-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.contact-page-hero-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.contact-page-hero-shell h1 {
  margin-bottom: 0.9rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.contact-page-hero-shell p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-page-main {
  padding: 2.5rem 0 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-page-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-page-side {
  display: grid;
  gap: 1rem;
}

.contact-inquiry-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 64, 0.08);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.05);
}

.contact-inquiry-card h2 {
  margin-bottom: 1rem;
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-size: 1.75rem;
}

.contact-card-intro {
  margin: -0.25rem 0 1rem;
  color: #64748b;
  line-height: 1.7;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(0, 27, 64, 0.08);
  background: #dbe7fa;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.05);
}

.contact-map-card-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact-trust-strip {
  padding: 3rem 0 0;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.2rem 1.5rem;
  border-radius: 24px;
  background: #eaf1ff;
}

.contact-trust-item {
  text-align: center;
}

.contact-trust-item [data-lucide] {
  width: 26px;
  height: 26px;
  margin-bottom: 0.8rem;
}

.contact-trust-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-trust-item span {
  color: #64748b;
  font-size: 0.84rem;
}

@media (max-width: 1180px) {
  .header-search-shell {
    min-width: 220px;
  }

  .main-nav {
    gap: 1rem;
  }

  .service-showcase-grid,
  .catalog-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-inner {
    gap: 1rem;
  }

  .header-brand-text {
    font-size: 1.45rem;
  }

  .page-home .hero-carousel-shell,
  .service-hero-shell,
  .catalog-shell,
  .catalog-store-grid,
  .service-center-grid,
  .contact-page-grid,
  .contact-grid,
  .about-story-grid,
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .stats-grid-new,
  .cats-grid-horizontal,
  .footer-grid,
  .footer-grid-rich {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .hero-shop-copy,
  .page-home .hero-banner-panel,
  .service-hero-media,
  .catalog-sidebar {
    min-height: auto;
  }

  .catalog-sidebar {
    position: static;
  }

  .catalog-store-map {
    margin-top: 0;
  }

  .service-metric-row,
  .contact-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-showcase-card.is-featured {
    grid-column: span 1;
  }

  .catalog-collection-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 70px;
    padding: 0 1rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-brand-text {
    font-size: 1.35rem;
  }

  .header-search-shell {
    display: none;
  }

  .header-call-btn-box.header-call-btn-compact,
  .header-utility-btn {
    display: none;
  }

  .mobile-nav-panel .header-search-shell {
    display: flex;
  }

  .header-call-btn-box.header-call-btn-compact {
    padding: 0.7rem 0.92rem;
  }

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

  .page-home .hero-carousel-shell {
    border-radius: 26px;
    gap: 0;
    overflow: hidden;
  }

  .page-home .hero-shop-copy {
    padding: 1.4rem 1rem 1.2rem;
    border-radius: 0;
  }

  .page-home .hero-banner-panel {
    border-radius: 0;
    min-height: 280px;
  }

  .page-home .hero-shop-meta {
    grid-template-columns: 1fr;
  }

  .service-hero-shell,
  .service-booking-card,
  .contact-inquiry-card,
  .catalog-filter-card {
    padding: 1.2rem;
  }

  .service-hero-title {
    max-width: none;
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .service-hero-actions .btn,
  .service-booking-actions .btn,
  .catalog-store-actions .btn,
  .contact-page-actions .btn {
    flex-basis: 100%;
  }

  .product-detail-actions .btn {
    flex-basis: 100%;
    min-width: 0;
  }

  .service-metric-row,
  .service-showcase-grid,
  .catalog-products-grid,
  .contact-trust-grid,
  .stats-grid-new,
  .cats-grid-horizontal,
  .footer-grid,
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }

  .stats-strip-new {
    padding: 1.5rem 0 2rem;
  }

  .cats-section-new {
    padding: 3rem 0;
  }

  .cats-header-title {
    font-size: 1.75rem;
  }

  .service-showcase-card.has-media {
    grid-template-columns: 1fr;
  }

  .service-showcase-media img,
  .catalog-store-map iframe,
  .service-center-map iframe,
  .contact-map-card iframe,
  .product-detail-main-media img {
    min-height: 240px;
  }

  .service-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-results-head {
    align-items: flex-start;
  }

  .catalog-toolbar-chipset {
    justify-content: flex-start;
  }

  .catalog-product-action {
    width: 42px;
    height: 42px;
  }

  .catalog-main,
  .service-showcase-section,
  .contact-page-main {
    padding-top: 1.4rem;
  }
}

@media (max-width: 480px) {
  .header-brand-text {
    font-size: 1.2rem;
  }

  .page-home .hero-carousel-shell,
  .service-hero-shell,
  .catalog-filter-card,
  .contact-inquiry-card,
  .contact-map-card,
  .catalog-store-map,
  .service-center-map {
    border-radius: 22px;
  }

  .page-home .stats-strip-new {
    margin-top: 0.75rem;
    padding-top: 0.4rem;
  }

  .page-home .hero-shop-title,
  .service-hero-title,
  .catalog-hero-title,
  .contact-page-hero-shell h1 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
  }

  .page-home .hero-shop-copy {
    padding: 1.2rem 0.95rem 1rem;
  }

  .service-hero-shell,
  .catalog-filter-card,
  .catalog-empty-card,
  .service-booking-card {
    padding: 1rem;
  }

  .catalog-results-head h2,
  .contact-inquiry-card h2 {
    font-size: 1.35rem;
  }

  .catalog-collection-card,
  .catalog-collection-card img {
    min-height: 220px;
  }

  .catalog-collection-card.is-large,
  .catalog-collection-card.is-large img {
    min-height: 240px;
  }

  .site-footer-dark {
    padding-top: 3rem;
  }
}

/* ─── Mobile: Sections below hero (768px) ───────────────────────────── */
/* ───────────────── Customer Reviews Section ───────────────── */
.customer-reviews-section {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.16), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ecf7ff 100%);
}

.customer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.customer-review-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(14, 116, 144, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(2, 32, 71, 0.08);
}

.customer-review-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
  pointer-events: none;
}

.customer-review-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.customer-review-avatar-wrap {
  flex-shrink: 0;
}

.customer-review-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.16);
}

.customer-review-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #075985;
  background: linear-gradient(135deg, #bae6fd 0%, #e0f2fe 100%);
}

.customer-review-meta h3 {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.customer-review-meta p {
  margin: 0 0 0.45rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.customer-review-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.customer-review-stars span {
  color: #d1d5db;
}

.customer-review-text {
  position: relative;
  margin: 0;
  color: #334155;
  font-size: 0.97rem;
  line-height: 1.8;
}

.customer-review-text::before {
  content: "“";
  display: inline-block;
  margin-right: 0.2rem;
  font-size: 1.4rem;
  color: #0891b2;
  line-height: 1;
}

.customer-review-text::after {
  content: "”";
  display: inline-block;
  margin-left: 0.15rem;
  font-size: 1.1rem;
  color: #0891b2;
  line-height: 1;
}

@media (max-width: 768px) {
  .customer-reviews-section {
    padding: 2.5rem 0;
  }
  .customer-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .customer-review-card {
    padding: 1.15rem;
    border-radius: 18px;
  }
  .customer-review-avatar {
    width: 62px;
    height: 62px;
  }

  /* ── Featured Products ─────────────────────────────────────── */
  .products-section {
    padding: 2.5rem 0;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .product-card {
    border-radius: 16px;
  }
  .product-body {
    padding: 0.9rem 0.85rem;
  }
  .product-name {
    font-size: 0.88rem;
  }
  .price-current {
    font-size: 1.1rem;
  }
  .product-actions {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .product-actions .btn {
    min-height: 42px;
    font-size: 0.8rem;
  }
  .products-section [style*="text-align: center"] {
    margin-top: 1.5rem !important;
  }

  /* ── Featured Services ─────────────────────────────────────── */
  .services-section {
    padding: 2.5rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 1.35rem;
    border-radius: 16px;
  }
  .service-actions {
    flex-direction: column;
    gap: 0.45rem;
  }
  .service-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  /* ── Contact / Visit Our Shop ──────────────────────────────── */
  .contact-section {
    padding: 2.5rem 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-info {
    gap: 0.85rem;
  }
  .info-card {
    padding: 0.9rem;
    gap: 0.75rem;
  }
  .info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .info-value {
    font-size: 0.85rem;
  }
  .contact-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-ctas .btn {
    flex: 1;
    min-width: 140px;
  }
  .map-embed {
    min-height: 260px;
    height: 260px;
    border-radius: var(--radius-lg);
  }
  .map-embed iframe {
    min-height: 260px;
    height: 260px;
  }

  /* ── Section Headers ───────────────────────────────────────── */
  .section-header {
    margin-bottom: 1.75rem;
  }
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .section-desc {
    font-size: 0.88rem;
    padding: 0 0.5rem;
  }

  /* ── Footer Dark ───────────────────────────────────────────── */
  .site-footer-dark {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-rich {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer-logo-badge {
    max-width: 100%;
  }
}

/* ─── Mobile: Small phones (480px) ─────────────────────────────────── */
@media (max-width: 480px) {

  /* ── Featured Products: single column on tiny screens ─────── */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .product-img {
    aspect-ratio: 16/9;
  }
  .product-body {
    padding: 0.85rem;
  }
  .product-actions {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Services: adjust padding ──────────────────────────────── */
  .service-card {
    padding: 1.1rem;
  }
  .service-name {
    font-size: 1rem;
  }
  .service-desc {
    font-size: 0.82rem;
  }

  /* ── Contact ───────────────────────────────────────────────── */
  .contact-section {
    padding: 2rem 0;
  }
  .contact-ctas {
    flex-direction: column;
  }
  .contact-ctas .btn {
    width: 100%;
  }
  .map-embed,
  .map-embed iframe {
    min-height: 220px;
    height: 220px;
  }

  /* ── Footer: full single column ────────────────────────────── */
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }
  .footer-bottom-rich {
    font-size: 0.78rem;
  }

  /* ── General spacing ───────────────────────────────────────── */
  .products-section,
  .customer-reviews-section,
  .services-section,
  .contact-section {
    padding: 2rem 0;
  }
  .section-title {
    font-size: clamp(1.4rem, 7vw, 1.85rem);
  }
  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 0.88rem;
  }
}
