/* =====================================================
   SafeXen Shop — Design System
   Matches safexen.com: White canvas + Royal Blue
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0f68ea;
  --blue-dark:  #0d5ed4;
  --blue-light: rgba(15,104,234,0.08);
  --yellow:     #ffcb00;
  --ink:        #00051a;
  --smoke:      #f0f2f4;
  --soft:       #e5e6e8;
  --white:      #ffffff;
  --text-sub:   rgba(0,5,26,0.55);
  --radius:     20px;
  --radius-sm:  12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.10);
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --ease:       250ms ease-in-out;
}

body   { font-family: var(--font); color: var(--ink); background: #fff; line-height: 1.6; overflow-x: hidden; }
a      { text-decoration: none; color: inherit; }
img    { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ─────────────────────────────────────────────────
   ANNOUNCEMENT BAR  (royal blue — matches main site)
───────────────────────────────────────────────── */
.announcement-bar {
  background: #0f68ea;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;        /* overridden by stackBars() JS when notices are present */
  z-index: 1000;
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.announcement-bar:hover .marquee { animation-play-state: paused; }
.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 0 8px;
}
.marquee-sep { display: inline-block; margin: 0 16px; opacity: 0.45; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ann-deal {
  display: inline-flex; align-items: center;
  background: var(--yellow); color: var(--ink);
  font-weight: 800; font-size: 10px; padding: 2px 8px;
  border-radius: 3px; letter-spacing: 0.7px;
  text-transform: uppercase; margin: 0 7px; flex-shrink: 0;
}
.ann-tag {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.18); color: #fff;
  font-weight: 800; font-size: 10px; padding: 2px 8px;
  border-radius: 3px; letter-spacing: 0.7px;
  text-transform: uppercase; margin: 0 7px; flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   HEADER  (white — matches safexen.com exactly)
───────────────────────────────────────────────── */
.shop-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--soft);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 0 40px;
}
.header-inner {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo — same as informative site: image + "Powered by" sub-text */
.shop-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  flex-shrink: 0; gap: 2px;
}
.shop-logo a { display: flex; align-items: center; }
.shop-logo img { height: 35px; }
.shop-logo-sub {
  font-size: 10px; color: #9e9e9e; letter-spacing: 0.3px;
  font-weight: 500; padding-left: 15px; white-space: nowrap;
}
.shop-logo-sub a {
  color: var(--ink); font-weight: 600;
  display: inline; white-space: nowrap;
  transition: color var(--ease);
}
.shop-logo-sub a:hover { color: var(--blue); }

/* Nav links — centred, same style as informative site */
.shop-nav {
  display: flex; gap: 2px; align-items: center;
  flex: 1; justify-content: center;
}
.shop-nav-link {
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
  padding: 7px 13px; border-radius: 6px;
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.shop-nav-link:hover { color: var(--blue); background: rgba(15,104,234,0.06); }
.shop-nav-link.active {
  color: var(--blue); font-weight: 700;
  border-bottom: 2.5px solid var(--blue);
  border-radius: 0; padding-bottom: 4px;
}

/* Right-side actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }

.user-btn {
  display: flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--soft); border-radius: 100px;
  padding: 7px 16px; font-size: 13.5px; font-weight: 600;
  background: #fff; color: var(--ink);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.user-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(15,104,234,0.04); }

.cart-btn {
  position: relative; display: flex; align-items: center; gap: 7px;
  background: var(--yellow); color: var(--ink);
  border: none; border-radius: 100px;
  padding: 9px 20px; font-size: 13.5px; font-weight: 700;
  transition: opacity var(--ease);
}
.cart-btn:hover { opacity: 0.88; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--blue); color: #fff;
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 10px; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* Mobile search row — hidden always, shown only inside open nav */
.mobile-search-row { display: none; }

/* Hamburger — mobile only */
.shop-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.shop-hamburger span {
  width: 24px; height: 2.5px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s;
  display: block;
}
.shop-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.shop-hamburger.open span:nth-child(2) { opacity: 0; }
.shop-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Promo Banner */
.promo-banner {
  width: 100%; padding: 28px 56px;
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 24px; box-sizing: border-box;
}
.promo-banner-text { flex: 1; min-width: 0; }
.promo-banner h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 4px; }
.promo-banner p  { font-size: 14px; opacity: 0.82; margin: 0; }
.promo-banner a  {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.45);
  color: inherit; border-radius: 12px; padding: 12px 28px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  transition: background var(--ease); white-space: nowrap;
}
.promo-banner a:hover { background: rgba(255,255,255,0.32); }
.promo-banner-img {
  height: 80px; max-width: 150px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
@media (max-width: 640px) {
  .promo-banner { padding: 22px 24px; flex-direction: column; text-align: center; }
  .promo-banner a { width: 100%; justify-content: center; }
  .promo-banner-img { height: 56px; }
}

/* ─────────────────────────────────────────────────
   BIG PROMO HERO BANNER  (15% off strip)
───────────────────────────────────────────────── */
/* ── Hero Promo Banner ── */
.hero-promo-banner {
  position: relative; overflow: hidden;
  min-height: 380px; display: flex; align-items: center;
  background: linear-gradient(120deg, #00051a 0%, #0a2a6e 60%, #0f68ea 100%);
}
.hero-promo-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
}
.hero-promo-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(0,5,26,0.88) 0%, rgba(0,5,26,0.65) 55%, rgba(0,5,26,0.25) 100%);
  pointer-events: none;
}
/* Badge — always absolute top-right */
.hero-promo-right {
  position: absolute; top: 32px; right: 48px; z-index: 3;
}
.hero-promo-badge {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(255,203,0,0.5);
  animation: promo-pulse 3s ease-in-out infinite;
  text-align: center; padding: 8px;
}
@keyframes promo-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.hero-promo-badge-pct {
  font-size: 22px; font-weight: 800; color: #00051a;
  line-height: 1.1; word-break: break-word; text-align: center;
}
.hero-promo-badge-sub {
  font-size: 9px; font-weight: 700; color: rgba(0,5,26,0.65);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px;
}
/* Left content */
.hero-promo-left {
  position: relative; z-index: 2;
  padding: 48px 180px 48px 56px; /* right pad keeps text clear of badge */
  max-width: 700px;
}
.hero-promo-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,203,0,0.15); border: 1px solid rgba(255,203,0,0.4);
  color: var(--yellow); font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hero-promo-heading {
  font-size: 40px; font-weight: 800; color: #fff;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px;
}
.hero-promo-heading span { color: var(--yellow); }
.hero-promo-sub {
  font-size: 15px; color: rgba(255,255,255,0.6);
  margin-bottom: 24px; line-height: 1.6; max-width: 480px;
}
.hero-promo-coupon {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07); border: 1.5px dashed rgba(255,255,255,0.3);
  border-radius: 12px; padding: 12px 20px; margin-bottom: 28px;
}
.hero-promo-coupon-label {
  font-size: 10px; color: rgba(255,255,255,0.5);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-promo-coupon-code { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: 2px; }
.hero-promo-coupon-copy {
  background: rgba(255,255,255,0.12); border: none; color: rgba(255,255,255,0.7);
  border-radius: 7px; padding: 6px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer; font-family: var(--font); transition: background 0.2s; white-space: nowrap;
}
.hero-promo-coupon-copy:hover { background: rgba(255,255,255,0.24); color: #fff; }
.hero-promo-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-promo-btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: #00051a; text-decoration: none;
  border: none; border-radius: 12px; padding: 14px 28px;
  font-size: 15px; font-weight: 800; cursor: pointer; font-family: var(--font);
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(255,203,0,0.4);
}
.hero-promo-btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,203,0,0.5); }
.hero-promo-btn-sec {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 14px 24px;
  font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s;
}
.hero-promo-btn-sec:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Mobile ── */
@media (max-width: 860px) {
  .hero-promo-banner { min-height: 0; }
  .hero-promo-left { padding: 40px 24px 40px 24px; max-width: 100%; }
  .hero-promo-heading { font-size: 28px; }
  .hero-promo-sub { font-size: 14px; }
  .hero-promo-right { top: 20px; right: 20px; }
  .hero-promo-badge { width: 80px; height: 80px; }
  .hero-promo-badge-pct { font-size: 14px; }
  .hero-promo-badge-sub { font-size: 8px; }
  .hero-promo-coupon { flex-wrap: wrap; gap: 8px; }
  .hero-promo-btns { flex-direction: column; }
  .hero-promo-btn-main, .hero-promo-btn-sec { justify-content: center; width: 100%; max-width: 320px; }
}

/* ─────────────────────────────────────────────────
   HERO  (royal blue gradient, white text)
───────────────────────────────────────────────── */
.shop-hero {
  position: relative;
  background: linear-gradient(135deg, #0f68ea 0%, #0a4bb5 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 56vh;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.08;
  transition: opacity 1s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,75,181,0.45) 0%, rgba(15,104,234,0.1) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 88px 56px 72px; width: 100%;
  flex: 1; display: flex; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9); border-radius: 100px;
  padding: 6px 16px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 22px;
}
.shop-hero h1 {
  font-size: 60px; font-weight: 800;
  letter-spacing: -3px; color: #fff;
  line-height: 1.05; margin-bottom: 20px; max-width: 640px;
}
.shop-hero h1 span { color: var(--yellow); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 38px; font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust strip at bottom of hero */
.hero-trust-bar {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 56px;
}
.hero-trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.78); white-space: nowrap;
}
.hero-trust-item i { color: var(--yellow); font-size: 13px; }

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  border-radius: 100px; padding: 13px 28px;
  font-size: 15px; font-weight: 700; border: none;
  transition: background var(--ease), transform var(--ease); cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  border-radius: 100px; padding: 13px 28px;
  font-size: 15px; font-weight: 700; border: none;
  transition: opacity var(--ease), transform var(--ease); cursor: pointer;
}
.btn-yellow:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px; padding: 13px 28px;
  font-size: 15px; font-weight: 600;
  transition: background var(--ease); cursor: pointer;
}
.btn-white:hover { background: rgba(255,255,255,0.28); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 100px; padding: 11px 24px;
  font-size: 14px; font-weight: 700;
  transition: background var(--ease), color var(--ease); cursor: pointer;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; color: rgba(0,5,26,0.55);
  border: 1.5px solid var(--soft);
  border-radius: 100px; padding: 11px 22px;
  font-size: 14px; font-weight: 600;
  transition: border-color var(--ease), color var(--ease); cursor: pointer;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ─────────────────────────────────────────────────
   SECTIONS  (white + light-gray — no dark sections)
───────────────────────────────────────────────── */
.section { padding: 88px 48px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(15,104,234,0.18);
  border-radius: 100px; padding: 5px 16px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: 40px; font-weight: 800;
  letter-spacing: -1.8px; color: var(--ink);
  line-height: 1.1; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-sub);
  max-width: 500px; margin: 0 auto;
  line-height: 1.7; font-weight: 400;
}

/* ─────────────────────────────────────────────────
   PRODUCT GRID CARDS
───────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.product-card {
  background: #fff; border: 1.5px solid var(--soft);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer; position: relative;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,104,234,0.2);
}
.product-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow); color: var(--ink);
  border-radius: 100px; padding: 4px 12px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; z-index: 2;
}
.product-card-img {
  height: 230px; background: var(--smoke);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-bottom: 1px solid var(--soft);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 28px; transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 22px 22px 14px; flex: 1;
  display: flex; flex-direction: column; gap: 5px;
}
.product-card-type {
  font-size: 10px; font-weight: 800;
  color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase;
}
.product-card-name {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.4px; color: var(--ink); line-height: 1.2;
}
.product-card-tagline { font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.product-card-price { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.price-curr { font-size: 22px; font-weight: 800; letter-spacing: -0.8px; }
.price-orig { font-size: 14px; color: rgba(0,5,26,0.28); text-decoration: line-through; }
.price-save {
  font-size: 11px; font-weight: 800; color: #16a34a;
  background: #dcfce7; padding: 3px 9px; border-radius: 100px;
}
.product-card-footer { padding: 14px 22px 22px; display: flex; gap: 10px; }
.product-card-footer .btn-primary { flex: 1; justify-content: center; font-size: 14px; padding: 11px 16px; }
.product-card-footer .btn-ghost { padding: 11px 16px; font-size: 14px; }

/* ─────────────────────────────────────────────────
   KIT CARDS  (white/light — no dark background)
───────────────────────────────────────────────── */
.kit-card {
  background: #fff; border: 1.5px solid var(--soft);
  border-radius: var(--radius); padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.kit-card::before {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(15,104,234,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.kit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,104,234,0.25);
}
/* Featured kit card — blue tinted */
.kit-card-featured {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 100%);
  border-color: rgba(15,104,234,0.2);
}
.kit-badge {
  display: inline-block; background: var(--yellow); color: var(--ink);
  border-radius: 100px; padding: 4px 14px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; align-self: flex-start;
}
.kit-name { font-size: 24px; font-weight: 800; letter-spacing: -0.8px; color: var(--ink); }
.kit-tagline { font-size: 14px; color: var(--text-sub); line-height: 1.5; }
.kit-includes {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  border-top: 1px solid var(--soft); padding-top: 18px;
}
.kit-includes li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(0,5,26,0.7);
}
.kit-includes li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; }
.kit-price { font-size: 34px; font-weight: 800; letter-spacing: -1.5px; color: var(--ink); line-height: 1; }
.kit-price-orig {
  font-size: 15px; color: rgba(0,5,26,0.3);
  text-decoration: line-through; margin-left: 10px;
}
.kit-actions { display: flex; gap: 10px; margin-top: auto; }

/* ─────────────────────────────────────────────────
   FEATURE CARDS  (white cards on light bg — no dark)
───────────────────────────────────────────────── */
.feature-card {
  background: #fff; border: 1.5px solid var(--soft);
  border-radius: 18px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,104,234,0.2);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue);
}
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; }
.feature-card p  { font-size: 13px; color: var(--text-sub); line-height: 1.65; }

/* ─────────────────────────────────────────────────
   PAGE HERO  (light blue bg — no dark black)
───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0f68ea 0%, #0a4bb5 100%);
  padding: 56px 48px 48px; text-align: center;
}
.page-hero h1 {
  font-size: 40px; font-weight: 800;
  letter-spacing: -2px; color: #fff;
  line-height: 1.1; margin-bottom: 10px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.72); font-weight: 400; }

/* ─────────────────────────────────────────────────
   DEAL BANNER CARDS  (Flipkart-style promo grid)
───────────────────────────────────────────────── */
.deal-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 48px 20px;
}
.deal-card {
  border-radius: 20px;
  padding: 26px 20px 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  overflow: hidden;
  min-height: 160px;
  color: #fff;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.deal-card-info { flex: 1; min-width: 0; }
.deal-card-label {
  font-size: 10px; font-weight: 800; opacity: 0.75;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px;
}
.deal-card-name {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 5px;
}
.deal-card-feat { font-size: 12px; opacity: 0.82; line-height: 1.5; margin-bottom: 10px; }
.deal-card-price { font-size: 26px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.deal-card-save {
  font-size: 11px; font-weight: 800;
  background: rgba(255,203,0,0.25); color: #ffcb00;
  border-radius: 4px; padding: 2px 6px; margin-left: 6px;
}
.deal-card-img {
  width: 110px; height: 110px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
.deal-card-cta {
  display: inline-block; font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px; padding: 5px 16px; margin-top: 10px;
  transition: background var(--ease);
}
.deal-card:hover .deal-card-cta { background: rgba(255,255,255,0.32); }

/* ─────────────────────────────────────────────────
   FILTER PILLS
───────────────────────────────────────────────── */
.filter-pill {
  background: #fff; border: 1.5px solid var(--soft);
  border-radius: 100px; padding: 9px 22px;
  font-size: 14px; font-weight: 600;
  color: rgba(0,5,26,0.55);
  cursor: pointer; transition: all var(--ease); font-family: var(--font);
}
.filter-pill:hover { border-color: var(--blue); color: var(--blue); }
.filter-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ─────────────────────────────────────────────────
   CART PAGE
───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: flex-start; }
.cart-items  { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; gap: 20px; background: #fff;
  border: 1.5px solid var(--soft); border-radius: 18px;
  padding: 20px; align-items: center;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.cart-item:hover { border-color: rgba(15,104,234,0.2); box-shadow: var(--shadow); }
.cart-item-img {
  width: 82px; height: 82px; background: var(--smoke);
  border-radius: 12px; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--soft);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; color: var(--ink); }
.cart-item-sub  { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; }
.cart-item-qty  { display: flex; align-items: center; gap: 12px; }
.cart-item-price { font-size: 20px; font-weight: 800; white-space: nowrap; letter-spacing: -0.5px; }
.cart-item-remove {
  background: none; border: none; color: rgba(0,5,26,0.22);
  font-size: 16px; padding: 6px; border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}
.cart-item-remove:hover { color: #ef4444; background: #fee2e2; }

.cart-empty {
  text-align: center; padding: 80px 24px; color: rgba(0,5,26,0.35);
  background: var(--smoke); border-radius: var(--radius);
  border: 1.5px dashed var(--soft);
}
.cart-empty i { font-size: 3rem; margin-bottom: 16px; color: var(--soft); display: block; }
.cart-empty h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.cart-empty p  { font-size: 14px; color: var(--text-sub); margin-bottom: 24px; }

/* Qty control */
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--soft); border-radius: 100px;
  overflow: hidden; background: var(--smoke);
}
.qty-btn {
  width: 40px; height: 40px; background: none;
  border: none; font-size: 18px; color: var(--ink);
  transition: background var(--ease);
}
.qty-btn:hover { background: var(--soft); }
.qty-val { width: 44px; text-align: center; font-size: 15px; font-weight: 800; }

/* Order summary box */
.order-box {
  background: #fff; border: 1.5px solid var(--soft);
  border-radius: var(--radius); padding: 30px;
  position: sticky; top: 84px;
}
.order-box h3 { font-size: 17px; font-weight: 800; margin-bottom: 22px; }
.order-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; margin-bottom: 12px; color: var(--text-sub);
}
.order-line span:last-child { color: var(--ink); font-weight: 600; }
.order-line.total {
  font-size: 19px; font-weight: 800;
  border-top: 1.5px solid var(--soft);
  padding-top: 14px; margin-top: 6px;
  letter-spacing: -0.4px; color: var(--ink);
}
.order-line.total span:last-child { color: var(--ink); }

.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-input {
  flex: 1; border: 1.5px solid var(--soft); border-radius: 100px;
  padding: 10px 18px; font-size: 14px; font-family: var(--font);
  outline: none; background: var(--smoke); color: var(--ink);
  transition: border-color var(--ease);
}
.coupon-input:focus { border-color: var(--blue); background: #fff; }
.coupon-btn {
  background: var(--blue); color: #fff; border: none;
  border-radius: 100px; padding: 10px 18px;
  font-size: 14px; font-weight: 700; font-family: var(--font);
  transition: background var(--ease);
}
.coupon-btn:hover { background: var(--blue-dark); }
.coupon-msg { font-size: 13px; margin-bottom: 10px; font-weight: 600; }
.coupon-msg.success { color: #16a34a; }
.coupon-msg.error   { color: #ef4444; }
.secure-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(0,5,26,0.35);
  justify-content: center; margin-top: 10px;
}

/* ─────────────────────────────────────────────────
   CHECKOUT
───────────────────────────────────────────────── */
/* Checkout page wrapper */
.checkout-breadcrumb { background: #f8f9fb; border-bottom: 1px solid var(--soft); padding: 10px 40px; }
.checkout-section    { background: var(--smoke); padding: 52px 48px 96px; min-height: 80vh; }
.checkout-footer     { padding: 30px 48px; }
.form-row-3col       { grid-template-columns: 1fr 1fr 1fr; }
.payment-logos-right { margin-left: auto; }

.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 36px; align-items: flex-start; }
.form-section {
  background: #fff; border: 1.5px solid var(--soft);
  border-radius: var(--radius); padding: 32px; margin-bottom: 18px;
}
.form-section h3 {
  font-size: 16px; font-weight: 800; margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.form-section h3 i { color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px; font-weight: 700;
  color: rgba(0,5,26,0.4); text-transform: uppercase; letter-spacing: 0.5px;
}
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--soft); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: var(--font);
  background: #fff; outline: none; font-weight: 500; color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,104,234,0.09);
}
.guest-toggle { display: flex; gap: 10px; margin-bottom: 22px; }
.auth-tab {
  flex: 1; padding: 11px; border: 1.5px solid var(--soft);
  border-radius: 10px; background: var(--smoke);
  font-size: 14px; font-weight: 700; color: rgba(0,5,26,0.45);
  cursor: pointer; transition: all var(--ease); font-family: var(--font); text-align: center;
}
.auth-tab.active { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.payment-option {
  border: 1.5px solid var(--soft); border-radius: 12px;
  padding: 18px 20px; cursor: pointer; background: #fff;
  transition: border-color var(--ease), background var(--ease);
}
.payment-option.selected { border-color: var(--blue); background: var(--blue-light); }
.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-logos { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.payment-logo {
  background: var(--smoke); border-radius: 5px;
  padding: 3px 10px; font-size: 11px; font-weight: 700; color: rgba(0,5,26,0.45);
}
.checkout-steps { display: flex; align-items: center; margin-bottom: 32px; }
.checkout-step  { display: flex; align-items: center; gap: 8px; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--smoke); color: rgba(0,5,26,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.step-label { font-size: 14px; font-weight: 700; color: rgba(0,5,26,0.35); }
.checkout-step.active .step-num  { background: var(--blue); color: #fff; }
.checkout-step.active .step-label { color: var(--ink); }
.checkout-step.done   .step-num  { background: #16a34a; color: #fff; }
.step-line { width: 48px; height: 2px; background: var(--soft); margin: 0 8px; }

/* ─────────────────────────────────────────────────
   PRODUCT DETAIL
───────────────────────────────────────────────── */
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.detail-img-wrap {
  background: var(--smoke); border-radius: var(--radius);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1.5px solid var(--soft);
}
.detail-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 48px; }
.detail-type { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.detail-name { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 10px; line-height: 1.1; }
.detail-tagline { font-size: 16px; color: var(--text-sub); margin-bottom: 24px; line-height: 1.65; }
.detail-price-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1.5px solid var(--soft);
}
.detail-price { font-size: 40px; font-weight: 800; letter-spacing: -2px; }
.detail-orig  { font-size: 18px; color: rgba(0,5,26,0.25); text-decoration: line-through; }
.detail-save  { background: #dcfce7; color: #16a34a; padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 800; }
.detail-add-btn { width: 100%; padding: 16px; font-size: 16px; border-radius: 14px; }
.detail-includes { margin-bottom: 24px; }
.detail-includes h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(0,5,26,0.35); margin-bottom: 12px;
}
.detail-includes ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.detail-includes li { display: flex; gap: 10px; font-size: 14px; color: rgba(0,5,26,0.7); }
.detail-includes li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; }
.detail-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.shop-footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 72px 48px 36px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-logo-text { font-size: 24px; font-weight: 800; letter-spacing: -0.8px; color: #fff; margin-bottom: 10px; }
.footer-logo-text span { color: var(--yellow); }
.footer-logo-img { height: 44px; width: auto; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.36); max-width: 260px; }
.footer-brand-sub { font-size: 12px; color: rgba(255,255,255,0.24); margin-top: 8px; }
.footer-brand-sub a { color: rgba(255,255,255,0.38); transition: color var(--ease); }
.footer-brand-sub a:hover { color: #fff; }
.footer-col h4 { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.38); transition: color var(--ease); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); transition: color var(--ease); }
.footer-bottom-links a:hover { color: #fff; }

/* ─────────────────────────────────────────────────
   BADGES
───────────────────────────────────────────────── */
.badge        { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 800; }
.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-blue   { background: var(--blue-light); color: var(--blue); }
.badge-red    { background: #fee2e2; color: #dc2626; }
.badge-purple { background: #f3e8ff; color: #7c3aed; }

/* ─────────────────────────────────────────────────
   HEADER SEARCH BAR  (compact pill for white header)
───────────────────────────────────────────────── */
.header-search {
  display: flex; align-items: center;
  background: #f8f9fb; border: 1.5px solid var(--soft);
  border-radius: 100px; overflow: hidden;
  max-width: 220px; transition: border-color var(--ease), box-shadow var(--ease);
}
.header-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,104,234,0.08);
  background: #fff;
}
.header-search input {
  flex: 1; border: none; outline: none;
  padding: 8px 14px; font-size: 13px;
  font-family: var(--font); color: var(--ink); background: transparent;
  min-width: 0;
}
.header-search input::placeholder { color: #aaa; }
.header-search button {
  background: none; border: none;
  padding: 8px 12px; font-size: 13px; color: rgba(0,5,26,0.4);
  cursor: pointer; transition: color 0.15s; flex-shrink: 0;
}
.header-search button:hover { color: var(--blue); }

/* ─────────────────────────────────────────────────
   CATEGORY STRIP  (below blue header)
───────────────────────────────────────────────── */
.category-strip {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  position: sticky; top: 72px; z-index: 998;
  overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid #f0f0f0;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: stretch;
  padding: 0 20px; gap: 0;
}
.cat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 10px 22px; cursor: pointer;
  color: #212121; font-size: 12px; font-weight: 600;
  white-space: nowrap; transition: color 0.15s, border-color 0.15s;
  border-bottom: 3px solid transparent; text-decoration: none; flex-shrink: 0;
}
.cat-item:hover { color: var(--blue); border-bottom-color: var(--blue); }
.cat-item.active { color: var(--blue); border-bottom-color: var(--blue); }
.cat-icon {
  width: 40px; height: 40px;
  background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--blue);
}

/* ─────────────────────────────────────────────────
   FLIPKART-STYLE PAGE LAYOUT
───────────────────────────────────────────────── */
.fk-page { background: #f1f3f6; min-height: 60vh; }

.fk-section-wrap { max-width: 1280px; margin: 0 auto; padding: 12px 12px 0; }
.fk-section { background: #fff; margin-bottom: 10px; }
.fk-section-inner { padding: 20px 24px 28px; }

.fk-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid #f1f3f6;
}
.fk-section-head h2 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.4px; color: #212121;
}
.fk-section-head p {
  font-size: 13px; color: #878787; margin-top: 3px;
}
.fk-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff;
  padding: 9px 20px; border-radius: 2px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: background 0.15s; flex-shrink: 0;
}
.fk-view-all:hover { background: var(--blue-dark); }
.fk-view-all i { font-size: 11px; }

/* ─────────────────────────────────────────────────
   FK KIT CARDS  (3-col, Flipkart style)
───────────────────────────────────────────────── */
.fk-kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fk-kit-card {
  border: 1px solid #f0f0f0; border-radius: 4px;
  padding: 20px; cursor: pointer;
  display: flex; flex-direction: column; gap: 0;
  transition: box-shadow 0.2s; position: relative; overflow: hidden;
}
.fk-kit-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.fk-kit-card-featured {
  background: linear-gradient(160deg, #f0f6ff 0%, #eef3ff 100%);
  border-color: rgba(15,104,234,0.15);
}
.fk-kit-top {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px;
}
.fk-kit-top-img {
  width: 88px; height: 88px; object-fit: contain;
  background: #f8f9fb; border-radius: 4px; padding: 6px;
  flex-shrink: 0;
}
.fk-kit-top-info { flex: 1; }
.fk-kit-badge-wrap {
  display: inline-block; background: var(--yellow); color: var(--ink);
  border-radius: 2px; padding: 2px 10px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 6px;
}
.fk-kit-title { font-size: 17px; font-weight: 700; color: #212121; line-height: 1.2; margin-bottom: 3px; }
.fk-kit-sub   { font-size: 12px; color: #878787; line-height: 1.4; }
.fk-kit-incl-list {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.fk-kit-incl-list li {
  font-size: 12px; color: #555; display: flex; align-items: center; gap: 6px;
}
.fk-kit-incl-list li::before {
  content: '✓'; color: #388e3c; font-weight: 800; font-size: 11px; flex-shrink: 0;
}
.fk-kit-price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.fk-price     { font-size: 20px; font-weight: 700; color: #212121; }
.fk-orig      { font-size: 13px; color: #878787; text-decoration: line-through; }
.fk-off       { font-size: 13px; color: #388e3c; font-weight: 600; }
.fk-kit-actions { display: flex; gap: 8px; margin-top: auto; }
.fk-btn-cart {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--yellow); color: var(--ink);
  border: none; border-radius: 2px; padding: 11px 14px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--font); transition: opacity 0.15s;
}
.fk-btn-cart:hover { opacity: 0.88; }
.fk-btn-detail {
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--blue);
  border: 1.5px solid var(--blue); border-radius: 2px; padding: 11px 18px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.fk-btn-detail:hover { background: var(--blue); color: #fff; }

/* ─────────────────────────────────────────────────
   FK PRODUCT TILES  (5-col sensor/accessory cards)
───────────────────────────────────────────────── */
.fk-tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.fk-tile {
  padding: 16px 12px 20px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid transparent; transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.fk-tile:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: #e8e8e8;
  z-index: 1;
}
.fk-tile-img {
  height: 150px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.fk-tile-img img {
  max-height: 100%; max-width: 90%; object-fit: contain;
  transition: transform 0.3s;
}
.fk-tile:hover .fk-tile-img img { transform: scale(1.05); }
.fk-tile-name {
  font-size: 13px; font-weight: 500; color: #212121;
  margin-bottom: 4px; line-height: 1.4; text-align: center;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  width: 100%;
}
.fk-tile-price-row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; justify-content: center; }
.fk-tile-addcart {
  display: none; position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--yellow); color: var(--ink); border: none;
  padding: 8px; font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: var(--font); align-items: center; justify-content: center; gap: 5px;
  transition: background 0.15s;
}
.fk-tile:hover .fk-tile-addcart { display: flex; }
.fk-tile-addcart:hover { background: #f0c000; }

/* ─────────────────────────────────────────────────
   FK ECOMMERCE DETAILS  (ratings, delivery, stock, wishlist)
───────────────────────────────────────────────── */
.fk-star-badge {
  display: inline-flex; align-items: center; gap: 2px;
  background: #388e3c; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
}
.fk-review-count { font-size: 11px; color: #878787; }
.fk-tile-rating { display: flex; align-items: center; gap: 5px; margin: 4px 0; }
.fk-tile-delivery {
  font-size: 11px; color: #388e3c; font-weight: 600;
  margin-top: 4px;
}
.fk-tile-seller { font-size: 11px; color: #878787; margin-top: 2px; }
.fk-tile-stock {
  position: absolute; top: 8px; left: 8px;
  background: #c0392b; color: #fff;
  font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 2px;
  z-index: 2; letter-spacing: 0.3px;
}
.fk-tile-wish {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  width: 28px; height: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #878787;
  opacity: 0; transition: opacity 0.2s, color 0.2s;
  z-index: 2;
}
.fk-tile:hover .fk-tile-wish { opacity: 1; }
.fk-tile-wish.wished, .fk-tile-wish:hover { color: #ef4444; }
.fk-tile-wish.wished { opacity: 1; }

/* Kit card rating row */
.fk-kit-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.fk-kit-delivery { font-size: 12px; color: #388e3c; font-weight: 600; margin-bottom: 10px; }
.fk-kit-stock {
  display: inline-block; background: #fef3cd; color: #856404;
  font-size: 11px; font-weight: 700; padding: 2px 10px;
  border-radius: 2px; margin-bottom: 8px;
}

/* ─────────────────────────────────────────────────
   FK WHY SAFEXEN FEATURES
───────────────────────────────────────────────── */
.fk-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.fk-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: 4px; background: #f9f9f9;
}
.fk-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--blue);
}
.fk-feature-item h4 { font-size: 14px; font-weight: 700; color: #212121; margin-bottom: 4px; }
.fk-feature-item p  { font-size: 12px; color: #878787; line-height: 1.5; }

/* ─────────────────────────────────────────────────
   FK TRUST BAR  (Flipkart-style delivery/trust row)
───────────────────────────────────────────────── */
.fk-trust-bar {
  background: #fff; margin-bottom: 10px;
  border-bottom: none;
}
.fk-trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  padding: 16px 24px; flex-wrap: wrap; gap: 12px;
}
.fk-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: #212121; white-space: nowrap;
}
.fk-trust-item i { font-size: 18px; color: var(--blue); }

/* ─────────────────────────────────────────────────
   FK PROMO BANNER  (full-width, admin-configured)
───────────────────────────────────────────────── */
.fk-promo-wrap { background: #f1f3f6; }

/* ─────────────────────────────────────────────────
   CART DRAWER  (slides in from right)
───────────────────────────────────────────────── */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.48); z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: -480px; bottom: 0;
  width: 440px; max-width: 100vw;
  background: #fff; z-index: 9001;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }

.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #f0f0f0;
  background: #fff; flex-shrink: 0;
}
.cart-drawer-head h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; color: #00051a; }
.cart-drawer-close {
  width: 32px; height: 32px; border: none; background: #f1f3f6;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #555; cursor: pointer; transition: background 0.15s;
}
.cart-drawer-close:hover { background: #e5e6e8; }

.cart-drawer-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }

.cart-drawer-empty { text-align: center; padding: 60px 24px; color: rgba(0,5,26,0.35); }
.cart-drawer-empty i { font-size: 2.5rem; color: #e0e0e0; display: block; margin-bottom: 14px; }
.cart-drawer-empty p { font-size: 15px; font-weight: 600; margin-bottom: 8px; }

.cart-drawer-item {
  display: flex; gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid #f5f5f5; align-items: flex-start;
}
.cart-drawer-item-img {
  width: 70px; height: 70px; background: #f8f9fb; border-radius: 6px;
  flex-shrink: 0; overflow: hidden; border: 1px solid #f0f0f0;
}
.cart-drawer-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-drawer-item-info { flex: 1; min-width: 0; }
.cart-drawer-item-name {
  font-size: 13px; font-weight: 600; color: #212121; line-height: 1.4; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cart-drawer-item-price { font-size: 15px; font-weight: 800; color: #212121; margin-bottom: 8px; }
.cart-drawer-item-orig  { font-size: 11px; color: #878787; text-decoration: line-through; margin-left: 5px; font-weight: 400; }
.cart-drawer-qty {
  display: inline-flex; align-items: center;
  border: 1px solid #ddd; border-radius: 3px; overflow: hidden;
}
.cart-drawer-qty-btn {
  width: 28px; height: 28px; border: none; background: #f5f5f5;
  font-size: 14px; cursor: pointer; color: #212121;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.cart-drawer-qty-btn:hover { background: #e8e8e8; }
.cart-drawer-qty-val { width: 32px; text-align: center; font-size: 13px; font-weight: 700; color: #212121; }
.cart-drawer-item-remove {
  background: none; border: none; color: #c0392b; cursor: pointer;
  font-size: 13px; padding: 4px; flex-shrink: 0; margin-top: 2px;
  opacity: 0.55; transition: opacity 0.15s;
}
.cart-drawer-item-remove:hover { opacity: 1; }

.cart-drawer-upsell { padding: 14px 18px 8px; border-top: 1px solid #f0f0f0; background: #fafafa; }
.cart-drawer-upsell h4 {
  font-size: 11px; font-weight: 800; color: #878787;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.cart-drawer-upsell-row {
  display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 8px;
}
.cart-drawer-upsell-row::-webkit-scrollbar { display: none; }
.cart-drawer-upsell-item { flex-shrink: 0; width: 100px; text-align: center; cursor: pointer; }
.cart-drawer-upsell-item img {
  width: 64px; height: 64px; object-fit: contain; background: #f1f3f6;
  border-radius: 4px; padding: 6px; margin: 0 auto 5px; display: block;
}
.cart-drawer-upsell-item-name {
  font-size: 10px; color: #212121; font-weight: 600; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cart-drawer-upsell-item-price { font-size: 11px; font-weight: 800; color: #0f68ea; margin-top: 3px; }
.cart-drawer-upsell-add {
  font-size: 10px; background: #fff; border: 1px solid #ddd;
  border-radius: 2px; padding: 3px 8px; cursor: pointer; margin-top: 4px;
  font-family: var(--font); font-weight: 700; color: #555; transition: border-color 0.15s, color 0.15s;
}
.cart-drawer-upsell-add:hover { border-color: #0f68ea; color: #0f68ea; }

.cart-drawer-foot {
  border-top: 1px solid #f0f0f0; padding: 16px 18px;
  background: #fff; flex-shrink: 0;
}
.cart-drawer-subtotal {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px;
}
.cart-drawer-subtotal-label { font-size: 13px; color: #878787; font-weight: 600; }
.cart-drawer-subtotal-val   { font-size: 20px; font-weight: 800; color: #212121; letter-spacing: -0.5px; }
.cart-drawer-savings { font-size: 12px; color: #388e3c; font-weight: 700; margin-bottom: 14px; }
.cart-drawer-foot-btns { display: flex; gap: 10px; }
.cart-drawer-btn-continue {
  flex: 1; padding: 12px; border: 1.5px solid #e0e0e0; border-radius: 4px;
  background: #fff; color: #212121; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--font); transition: border-color 0.15s, color 0.15s;
}
.cart-drawer-btn-continue:hover { border-color: #0f68ea; color: #0f68ea; }
.cart-drawer-btn-checkout {
  flex: 1; padding: 12px; border: none; border-radius: 4px;
  background: #0f68ea; color: #fff; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--font); transition: background 0.15s;
}
.cart-drawer-btn-checkout:hover { background: #0d5ed4; }

/* ─────────────────────────────────────────────────
   PRODUCT IMAGE GALLERY  (thumbnail strip + main)
───────────────────────────────────────────────── */
.gallery-main {
  width: 100%; background: var(--smoke); border-radius: var(--radius);
  border: 1.5px solid var(--soft); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
#galleryMainImg { width: 100%; height: 100%; object-fit: contain; padding: 40px; transition: opacity 0.2s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.gallery-thumbs {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: row; gap: 6px;
  max-width: calc(100% - 24px);
  overflow-x: auto; scrollbar-width: none;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(6px);
  border-radius: 10px; padding: 6px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.10); border-radius: 6px;
  background: #fff; overflow: hidden; cursor: pointer;
  transition: border-color 0.15s; padding: 4px;
  display: flex; align-items: center; justify-content: center;
}
.gallery-thumb.active { border-color: #0f68ea; }

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════
   RESPONSIVE — all breakpoints
═══════════════════════════════════════════════════ */

/* ── 1200px — large tablets / small laptops ── */
@media (max-width: 1200px) {
  .deal-cards-grid      { grid-template-columns: repeat(2, 1fr); padding: 20px 16px 12px; gap: 12px; }
  .fk-kits-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fk-tile-grid         { grid-template-columns: repeat(4, 1fr); }
  .fk-features-grid     { grid-template-columns: repeat(3, 1fr); }
  .detail-layout        { gap: 40px; }
}

/* ── 1024px — tablets ── */
@media (max-width: 1024px) {
  .detail-layout        { grid-template-columns: 1fr; gap: 28px; }
  .detail-img-wrap      { position: static; aspect-ratio: 4/3; max-height: 400px; }
  .cart-layout          { grid-template-columns: 1fr; }
  .checkout-layout      { grid-template-columns: 1fr; }
  .footer-top           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .order-box            { position: static; }
  .shop-hero            { min-height: 50vh; }
  .hero-inner           { padding: 72px 32px 56px; }
  .hero-trust-bar       { padding: 14px 32px; }
  .deal-cards-grid      { grid-template-columns: 1fr; padding: 20px 16px 12px; gap: 10px; }
  .deal-card            { min-height: 120px; }
  .deal-card-img        { width: 90px; height: 90px; }
  .fk-kits-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fk-tile-grid         { grid-template-columns: repeat(3, 1fr); }
  .fk-features-grid     { grid-template-columns: repeat(2, 1fr); }
  .shop-nav             { gap: 0; }
  .shop-nav-link        { font-size: 0.82rem; padding: 7px 9px; }
  .checkout-steps       { gap: 4px; }
  .step-line            { width: 28px; }
}

/* ── 860px — nav → hamburger ── */
@media (max-width: 860px) {
  .shop-nav             { display: none; }
  .shop-hamburger       { display: flex !important; }
  .header-search        { display: none; }
  .fk-kits-grid         { grid-template-columns: repeat(2, 1fr); }
  .fk-tile-grid         { grid-template-columns: repeat(3, 1fr); }
  .fk-trust-bar         { overflow-x: auto; }
  .fk-trust-inner       { min-width: max-content; padding: 0 8px; }

  /* Mobile nav dropdown */
  .shop-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--soft); padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999;
  }
  .shop-nav.open .shop-nav-link {
    padding: 13px 24px; border-radius: 0; font-size: 15px; border-bottom: none;
    border-left: 3px solid transparent;
  }
  .shop-nav.open .shop-nav-link.active { border-left-color: var(--blue); background: rgba(15,104,234,0.04); }
  .shop-nav.open::after {
    content: ''; display: block; height: 1px;
    background: var(--soft); margin: 8px 20px 0;
  }
  .shop-nav.open .mobile-search-row { display: flex; }
}

/* ── 768px — phones (landscape & portrait) ── */
@media (max-width: 768px) {
  /* Header */
  .shop-header          { padding: 0 14px; }
  .header-inner         { height: 62px; }
  .header-search        { display: none; }
  .shop-nav.open        { top: 62px; }
  /* Hide "Account" text label on small screens, keep icon */
  .user-btn span        { display: none; }
  .user-btn             { padding: 7px 12px; }

  /* Hero */
  .shop-hero            { min-height: auto; }
  .shop-hero h1         { font-size: 32px; letter-spacing: -1.5px; }
  .hero-sub             { font-size: 14px; }
  .hero-inner           { padding: 48px 20px 40px; }
  .hero-trust-bar       { padding: 10px 16px; }
  .hero-trust-inner     { gap: 12px; }
  .hero-trust-item      { font-size: 11px; gap: 5px; }

  /* Sections */
  .section              { padding: 56px 18px; }
  .section-title        { font-size: 26px; letter-spacing: -0.8px; }
  .fk-section-inner     { padding: 16px 14px 20px; }
  .fk-section-head      { flex-wrap: wrap; gap: 10px; }
  .fk-section-head h2   { font-size: 17px; }
  .fk-section-wrap      { padding: 8px 0 0; }
  .fk-view-all          { font-size: 12px; padding: 7px 14px; }

  /* Products grids */
  .fk-kits-grid         { grid-template-columns: 1fr; gap: 10px; }
  .fk-tile-grid         { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .fk-features-grid     { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fk-feature-item      { padding: 14px; gap: 10px; }
  .fk-feature-icon      { width: 36px; height: 36px; font-size: 14px; flex-shrink: 0; }
  .fk-feature-item h4   { font-size: 13px; }
  .fk-feature-item p    { font-size: 12px; }
  .deal-cards-grid      { grid-template-columns: 1fr; }
  .deal-card-name       { font-size: 17px; }
  .deal-card-price      { font-size: 22px; }

  /* Kit card — stack image + info vertically */
  .fk-kit-top           { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fk-kit-top-img       { width: 72px; height: 72px; }
  .fk-kit-title         { font-size: 15px; }
  .fk-kit-actions       { flex-direction: column; gap: 8px; }
  .fk-btn-cart, .fk-btn-detail { justify-content: center; padding: 12px; }
  .fk-kit-delivery      { font-size: 12px; }

  /* Cart items — stack on mobile */
  .cart-item            { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .cart-item-img        { width: 64px; height: 64px; }
  .cart-item-info       { flex: 1; min-width: 160px; }
  .cart-item-name       { font-size: 14px; }
  .cart-item-price      { font-size: 17px; width: 100%; text-align: right; }
  .cart-layout          { gap: 18px; }
  .order-box            { padding: 20px 18px; }

  /* Checkout */
  .checkout-breadcrumb  { padding: 10px 16px; }
  .checkout-section     { padding: 24px 14px 60px; }
  .checkout-footer      { padding: 20px 16px; }
  .checkout-layout      { gap: 16px; }
  .form-section         { padding: 20px 16px; border-radius: 14px; margin-bottom: 12px; }
  .form-section h3      { font-size: 14px; margin-bottom: 16px; }
  .form-row             { grid-template-columns: 1fr; gap: 10px; }
  .form-row-3col        { grid-template-columns: 1fr 1fr; }
  .form-field input, .form-field select { padding: 12px 14px; font-size: 16px; }
  .checkout-steps       { overflow-x: auto; padding-bottom: 4px; }
  .step-label           { font-size: 12px; }
  .step-line            { width: 20px; }
  .payment-option       { padding: 14px 16px; }
  .payment-logos-right  { display: none; }
  .auth-tab             { font-size: 13px; padding: 10px 8px; }

  /* Product detail */
  .detail-layout        { gap: 20px; }
  .detail-name          { font-size: 26px; letter-spacing: -0.8px; }
  .detail-price         { font-size: 30px; }
  .detail-img-wrap img  { padding: 24px; }
  .gallery-thumb        { width: 48px; height: 48px; }

  /* Cart drawer */
  .cart-drawer          { width: 100vw; right: -100vw; }
  .cart-drawer.open     { right: 0; }

  /* Pages */
  .page-hero            { padding: 40px 18px 32px; }
  .page-hero h1         { font-size: 26px; letter-spacing: -0.8px; }
  .page-hero p          { font-size: 14px; }
  .kit-card             { padding: 24px; }

  /* Footer */
  .footer-top           { grid-template-columns: 1fr; gap: 24px; }
  .shop-footer          { padding: 44px 18px 24px; }
  .footer-bottom        { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links  { justify-content: center; }

  /* Account orders */
  .guest-wrap           { flex-direction: column; }

  /* Announcement bar */
  .announcement-bar     { font-size: 11px; }
}

/* ── 480px — small phones ── */
@media (max-width: 480px) {
  /* Header — very tight */
  .shop-logo img        { height: 32px; }
  .shop-logo-sub        { font-size: 9px; }
  .header-actions       { gap: 4px; }
  .cart-label           { display: none; }         /* hide "Cart" text, keep icon only */
  .cart-btn             { padding: 8px 11px; }
  .user-btn             { padding: 7px 10px; }
  .shop-hamburger       { padding: 4px 2px; }

  /* Hero promo banner */
  .hero-promo-left      { padding: 32px 18px; }
  .hero-promo-heading   { font-size: 24px; }
  .hero-promo-eyebrow   { font-size: 10px; }
  .hero-promo-sub       { font-size: 13px; margin-bottom: 16px; }
  .hero-promo-coupon    { padding: 9px 14px; margin-bottom: 18px; }
  .hero-promo-coupon-code { font-size: 16px; }
  .hero-promo-right     { top: 14px; right: 14px; }
  .hero-promo-badge     { width: 66px; height: 66px; }
  .hero-promo-badge-pct { font-size: 12px; }
  .hero-promo-btn-main, .hero-promo-btn-sec { padding: 12px 18px; font-size: 14px; }

  /* Products */
  .fk-tile-grid         { grid-template-columns: repeat(2, 1fr); }
  .fk-tile              { padding: 12px 8px 14px; }
  .fk-tile-img          { height: 110px; }
  .fk-tile-name         { font-size: 12px; }
  .fk-tile-price-row span { font-size: 13px !important; }
  .fk-tile-addcart      { font-size: 12px; padding: 8px; }

  /* Kit card */
  .fk-kit-card          { padding: 16px; }
  .fk-kit-top-img       { width: 60px; height: 60px; }
  .fk-kit-incl-list li  { font-size: 11px; }
  .fk-price             { font-size: 17px; }

  /* Cart */
  .cart-item            { padding: 14px; }
  .cart-item-img        { width: 56px; height: 56px; }
  .qty-btn              { width: 34px; height: 34px; font-size: 15px; }
  .qty-val              { width: 36px; font-size: 14px; }
  .coupon-row           { flex-direction: column; }

  /* Checkout */
  .checkout-section     { padding: 16px 10px 48px; }
  .form-section         { padding: 16px 14px; margin-bottom: 10px; }
  .form-row-3col        { grid-template-columns: 1fr; }
  .checkout-step .step-label { display: none; }
  .step-line            { width: 16px; }

  /* Detail */
  .detail-name          { font-size: 22px; }
  .detail-price         { font-size: 26px; }
  .detail-orig          { font-size: 15px; }
  .detail-qty-row       { flex-wrap: wrap; }
  .detail-add-btn       { font-size: 15px; padding: 14px; }

  /* Footer */
  .footer-logo-img      { height: 36px; }
  .footer-col h4        { font-size: 13px; }

  /* Trust bar */
  .fk-trust-item        { font-size: 11px; padding: 0 8px; }

  /* Features */
  .fk-features-grid     { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero            { padding: 32px 16px 28px; }
  .page-hero h1         { font-size: 22px; }
}

@keyframes noticeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Notice strips (full-width top banners, like the screenshot) ── */
#noticesBar {
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
}

.notice-strip {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  gap: 8px;
}
/* invisible spacer on the left = same width as close button so text stays truly centered */
.notice-strip::before {
  content: '';
  width: 28px;
  flex-shrink: 0;
}
.notice-strip-text {
  flex: 1;
  text-align: center;
}
.notice-strip-close {
  width: 28px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: inherit;
  opacity: 0.7;
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.notice-strip-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .notice-strip { font-size: 12px; padding: 9px 12px; }
}
