/* Diamond Bright CyberGuard — Marketplace shop
   Extends marketing_home.css package-card system with storefront chrome. */

:root {
  --shop-surface: rgba(8, 17, 31, 0.72);
  --shop-surface-2: rgba(12, 28, 48, 0.92);
  --shop-border: rgba(94, 190, 255, 0.16);
  --shop-border-hot: rgba(122, 238, 195, 0.45);
  --shop-mint: #7aeec3;
  --shop-sky: #9ec8e8;
  --shop-glow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.fade-in,
.fade-in.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Layout ───────────────────────────────────────────── */
.shop-main {
  padding: calc(var(--nav-h, 74px) + 8px) 0 110px;
  position: relative;
  z-index: 1;
}

.shop-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--shop-sky);
  margin: 0 0 14px;
}
.shop-breadcrumb a {
  color: var(--shop-sky);
  text-decoration: none;
}
.shop-breadcrumb a:hover {
  color: var(--shop-mint);
}
.shop-breadcrumb .sep {
  opacity: 0.45;
}
.shop-breadcrumb .here {
  color: #fff;
}

/* ── Hero marketplace ─────────────────────────────────── */
.shop-hero {
  padding: 20px 0 4px;
}
.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}
.shop-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin: 8px 0 12px;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.shop-hero .lede {
  color: var(--shop-sky);
  max-width: 640px;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.shop-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.shop-hero-stats div {
  border: 1px solid var(--shop-border);
  border-radius: 14px;
  padding: 12px 12px 11px;
  background: var(--shop-surface);
}
.shop-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.shop-hero-stats span {
  color: var(--shop-sky);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-hero-panel {
  border: 1px solid var(--shop-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 0%, rgba(122, 238, 195, 0.14), transparent 45%),
    linear-gradient(165deg, rgba(14, 32, 54, 0.98), rgba(6, 12, 24, 0.98));
  padding: 18px 18px 16px;
  box-shadow: var(--shop-glow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-hero-panel .panel-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--shop-mint);
}
.shop-hero-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.shop-hero-panel p {
  margin: 0;
  color: var(--shop-sky);
  font-size: 13px;
  line-height: 1.45;
}
.shop-hero-panel .panel-price {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
}
.shop-hero-panel .panel-price span {
  color: var(--shop-sky);
  font-size: 13px;
  font-weight: 700;
  margin-left: 4px;
}
.shop-hero-panel .panel-picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.shop-hero-panel .panel-picks a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #dff4ff;
  border: 1px solid rgba(94, 190, 255, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(4, 13, 26, 0.45);
  font-size: 13px;
  font-weight: 750;
  transition: border-color 0.15s, background 0.15s;
}
.shop-hero-panel .panel-picks a:hover {
  border-color: var(--shop-border-hot);
  background: rgba(8, 122, 84, 0.16);
  text-decoration: none;
  color: #fff;
}
.shop-hero-panel .panel-picks em {
  color: var(--shop-mint);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

/* ── Trust / payment strip ────────────────────────────── */
.shop-pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 22px 0 6px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--shop-border);
  background: rgba(8, 17, 31, 0.55);
}
.shop-pay-strip .chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: #dff4ff;
}
.shop-pay-strip .chip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--shop-mint);
  box-shadow: 0 0 0 3px rgba(122, 238, 195, 0.18);
  flex-shrink: 0;
}
.shop-pay-strip .divider {
  width: 1px;
  height: 16px;
  background: rgba(94, 190, 255, 0.2);
}

/* ── Category tiles ───────────────────────────────────── */
.shop-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 4px;
}
.shop-cat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid var(--shop-border);
  border-radius: 16px;
  padding: 14px 14px 13px;
  background: linear-gradient(165deg, rgba(12, 28, 48, 0.95), rgba(7, 14, 26, 0.98));
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  min-height: 112px;
  position: relative;
  overflow: hidden;
}
.shop-cat::after {
  content: "→";
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: rgba(122, 238, 195, 0.55);
  font-weight: 900;
  font-size: 14px;
}
.shop-cat:hover {
  border-color: var(--shop-border-hot);
  transform: translateY(-3px);
  box-shadow: var(--shop-glow);
  text-decoration: none !important;
}
.shop-cat .k {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-mint);
}
.shop-cat strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  padding-right: 18px;
}
.shop-cat span {
  color: var(--shop-sky);
  font-size: 12px;
  line-height: 1.35;
}

/* ── Sticky marketplace bar ───────────────────────────── */
.shop-sticky {
  position: sticky;
  top: calc(var(--nav-h, 74px) - 2px);
  z-index: 80;
  padding: 10px 0;
  background: rgba(4, 13, 26, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94, 190, 255, 0.12);
  margin: 10px 0 8px;
}
/* Category menu open: fully remove sticky from hit-testing + paint stack
   (backdrop-filter sticky layers can still cover fixed menus in some browsers) */
body.shop-cat-open .shop-sticky {
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}
body.shop-cat-open .shop-cat-scrim {
  display: block;
}
/* Dim page behind open category panel */
.shop-cat-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(2, 8, 18, 0.55);
  backdrop-filter: blur(2px);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.shop-cat-bar {
  margin: 4px auto 14px;
  position: relative;
  z-index: 40;
}
.shop-sticky-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  align-items: center;
}
.shop-sticky a,
.shop-filter-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(94, 190, 255, 0.22);
  border-radius: 999px;
  padding: 7px 13px;
  color: #dff4ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  background: rgba(8, 17, 31, 0.75);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.shop-sticky a:hover,
.shop-sticky a.is-active,
.shop-filter-btn:hover,
.shop-filter-btn.is-active {
  border-color: rgba(122, 238, 195, 0.55);
  color: #fff;
  background: rgba(8, 122, 84, 0.22);
  text-decoration: none;
}
.shop-filter-sep {
  width: 1px;
  height: 22px;
  background: rgba(94, 190, 255, 0.18);
  flex: 0 0 auto;
  margin: 0 2px;
}
.shop-count-pill {
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 850;
  color: var(--shop-sky);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Featured rail ────────────────────────────────────── */
.shop-featured {
  padding: 18px 0 8px;
}
.shop-featured-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.shop-featured-head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.shop-featured-head p {
  margin: 0;
  color: var(--shop-sky);
  font-size: 13px;
}
.shop-featured-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shop-featured-card {
  scroll-snap-align: start;
  border: 1px solid var(--shop-border);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(14, 32, 54, 0.96), rgba(6, 12, 24, 0.98));
  padding: 12px;
  text-decoration: none !important;
  color: inherit;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.shop-featured-card:hover {
  border-color: var(--shop-border-hot);
  transform: translateY(-3px);
  box-shadow: var(--shop-glow);
  text-decoration: none !important;
}
.shop-featured-card .media {
  height: 88px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 15%, rgba(75, 220, 255, 0.16), transparent 50%),
    linear-gradient(165deg, #101b2d, #070f1a);
  border: 1px solid rgba(94, 190, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
  position: relative;
}
.shop-featured-card .media img {
  max-height: 72px;
  max-width: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.shop-featured-card .media .svc-icon {
  font-size: 28px;
  line-height: 1;
}
.shop-featured-card .tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-mint);
}
.shop-featured-card strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}
.shop-featured-card .price {
  margin-top: auto;
  color: #fff;
  font-weight: 950;
  font-size: 15px;
}
.shop-featured-card .price span {
  color: var(--shop-sky);
  font-weight: 700;
  font-size: 12px;
  margin-left: 4px;
}

/* ── Sections ─────────────────────────────────────────── */
.usb-offer-section,
.shop-section,
.seal-offer-section,
.backup-offer-section,
.pkg-line-section {
  padding-top: 44px;
}
.shop-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.shop-section-head .section-head {
  margin: 0;
  text-align: left;
  max-width: 720px;
}
.shop-section-head .from-price {
  color: var(--shop-mint);
  font-weight: 950;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid rgba(122, 238, 195, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(8, 122, 84, 0.12);
}
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 238, 195, 0.35), rgba(94, 190, 255, 0.08), transparent);
  margin: 8px 0 0;
}

.shop-note-banner {
  border: 1px solid rgba(122, 238, 195, 0.28);
  background: rgba(8, 122, 84, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 0 20px;
  color: #c8f5e3;
  font-size: 14px;
  line-height: 1.5;
}
.shop-note-banner strong {
  color: #fff;
}
.shop-note-banner a {
  color: var(--shop-mint);
  font-weight: 800;
}

.backup-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}
.backup-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #c8e6ff;
  font-size: 13px;
  line-height: 1.45;
}
.backup-points li::before {
  content: "✓";
  color: var(--shop-mint);
  font-weight: 900;
  flex-shrink: 0;
}

.seal-offer-hero {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--shop-border);
  background: linear-gradient(165deg, rgba(12, 28, 48, 0.9), rgba(7, 14, 26, 0.96));
}
.seal-offer-hero img {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
  margin: 0 auto;
}

/* ── Product cards (shop overrides) ───────────────────── */
.shop-main .packages-grid,
.shop-main .remote-grid {
  gap: 18px;
}

.product-visual {
  height: 200px;
  border-radius: 16px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(122, 238, 195, 0.16), transparent 42%),
    radial-gradient(circle at 82% 0%, rgba(75, 220, 255, 0.18), transparent 48%),
    linear-gradient(165deg, #142338 0%, #0a1424 48%, #060d18 100%);
  border: 1px solid rgba(158, 200, 232, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
  padding: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  /* Keep product art in its own layer so it never paints over badges/title below */
  z-index: 0;
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(122, 238, 195, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* <picture> must fill the frame and clip tall product photos (backup drives, kits). */
.product-visual picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.product-visual img.product-photo {
  display: block;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  /* Softer shadow — large drop-shadows paint outside overflow:hidden and look like overlap */
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.32));
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
  /* Avoid reserved tall aspect boxes from width/height HTML attrs covering content */
  vertical-align: middle;
}
.product-visual .usb-chip,
.product-visual .ship-chip {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #062034;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 4px 9px;
  pointer-events: none;
}
.product-visual .ship-chip.free {
  background: rgba(122, 238, 195, 0.95);
  color: #04251a;
}
.product-visual.seal-mini {
  background:
    radial-gradient(circle at 30% 20%, rgba(75, 220, 255, 0.18), transparent 55%),
    linear-gradient(160deg, #0a1a2e, #07111f);
}
.product-visual.seal-mini img {
  height: auto;
  max-height: 110px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}
.product-visual.service-visual {
  background:
    radial-gradient(circle at 70% 20%, rgba(124, 92, 255, 0.2), transparent 50%),
    linear-gradient(165deg, #121a30, #070f1a);
}
.product-visual.service-visual .svc-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #dff4ff;
  text-align: center;
}
.product-visual.service-visual .svc-mark .ico {
  font-size: 34px;
  line-height: 1;
}
.product-visual.service-visual .svc-mark .lbl {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-mint);
}

.shop-main .package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(94, 190, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(16, 30, 50, 0.96) 0%, rgba(8, 14, 26, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Card body content (badge, title, price) stays above any image paint bleed */
  z-index: 0;
}
.shop-main .package-card > :not(.product-visual) {
  position: relative;
  z-index: 1;
}
.shop-main .package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 238, 195, 0.55), transparent);
  opacity: 0.85;
}
.shop-main .package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 238, 195, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 48px rgba(0, 0, 0, 0.38);
}
.shop-main .package-card:hover .product-visual {
  border-color: rgba(122, 238, 195, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.35);
}
.shop-main .package-card:hover .product-visual img.product-photo {
  transform: scale(1.02);
}
.shop-main .package-card.featured {
  border-color: rgba(122, 238, 195, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 238, 195, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 36, 56, 0.98) 0%, rgba(8, 14, 26, 0.99) 100%);
}
.shop-main .package-card h3 {
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 4px 0 8px;
}
.shop-main .package-card .pkg-badge {
  align-self: flex-start;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.shop-main .package-card .pkg-tagline {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.6em;
  color: rgba(158, 200, 232, 0.92);
  font-size: 13.5px;
  line-height: 1.45;
}
.shop-main .package-card .pkg-price {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #fff;
}
.shop-main .package-card .pkg-price span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--shop-sky);
  margin-left: 4px;
}
.shop-main .package-card .pkg-meta {
  color: rgba(158, 200, 232, 0.78);
  font-size: 12px;
  margin-top: 4px;
}
.shop-main .package-card .trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 4px;
}
.shop-main .package-card .trust-chip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fd7c0;
  background: rgba(122, 238, 195, 0.08);
  border: 1px solid rgba(122, 238, 195, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
}
.shop-main .package-card .trust-chip.free {
  color: #04251a;
  background: rgba(122, 238, 195, 0.88);
  border-color: transparent;
}
.shop-main .package-card .pkg-features {
  margin: 10px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(94, 190, 255, 0.1);
  list-style: none;
}
.shop-main .package-card .pkg-features li {
  position: relative;
  padding: 4px 0 4px 18px;
  color: rgba(223, 244, 255, 0.88);
  font-size: 12.5px;
  line-height: 1.4;
}
.shop-main .package-card .pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--shop-mint);
  font-size: 11px;
  font-weight: 900;
}
.shop-main .package-card .pkg-cta {
  margin-top: auto;
  padding-top: 14px;
}
.shop-main .package-card .pkg-cta-note,
.shop-main .package-card .ship-eta {
  color: rgba(158, 200, 232, 0.7);
  font-size: 11px;
  text-align: center;
  margin: 2px 0 0;
}
.shop-main .package-card .pkg-features {
  margin-bottom: 0;
}
.shop-main .package-card .btn-primary {
  border-radius: 12px;
  min-height: 42px;
  font-weight: 850;
}
.shop-main .pkg-group-block {
  margin-top: 28px;
}
.pkg-compare-price {
  color: var(--shop-sky);
  font-size: 13px;
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 600;
}
.pkg-save {
  display: inline-block;
  margin-top: 6px;
  color: var(--shop-mint);
  font-size: 12px;
  font-weight: 900;
}

/* Hidden by filter */
.shop-section-block.is-hidden,
.package-card.is-filtered-out {
  display: none !important;
}

/* ── Bottom CTA / footer ──────────────────────────────── */
.shop-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  margin: 14px 0;
}
.shop-footer-links a {
  color: var(--shop-sky);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.shop-footer-links a:hover {
  color: var(--shop-mint);
}

.shop-guarantee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.shop-guarantee div {
  border: 1px solid var(--shop-border);
  border-radius: 16px;
  padding: 14px;
  background: var(--shop-surface);
  text-align: center;
}
.shop-guarantee strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
}
.shop-guarantee span {
  color: var(--shop-sky);
  font-size: 12px;
  line-height: 1.4;
}

#security-usbs,
#packages,
#remote-scans,
#monthly-plans,
#seal-stickers,
#backup-drives,
#secure-router,
#employee-kit,
#network-kit,
#security-key,
#bundles,
#featured {
  scroll-margin-top: calc(var(--nav-h, 74px) + 56px);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1000px) {
  .shop-hero-grid {
    grid-template-columns: 1fr;
  }
  .shop-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-guarantee {
    grid-template-columns: 1fr;
  }
  .shop-count-pill {
    display: none;
  }
}
@media (max-width: 720px) {
  .seal-offer-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .backup-points {
    grid-template-columns: 1fr;
  }
  .shop-cat {
    min-height: 0;
  }
  .product-visual {
    height: 168px;
  }
  .shop-hero-stats {
    grid-template-columns: 1fr;
  }
  .shop-pay-strip .divider {
    display: none;
  }
}

/* ── Category dropdown ────────────────────────────────── */
.shop-cat-dropdown {
  position: relative;
  margin: 0;
  max-width: 520px;
  z-index: 55;
}
.shop-cat-dropdown.is-open {
  z-index: 10050;
}
.shop-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--shop-border);
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(165deg, rgba(12, 28, 48, 0.95), rgba(7, 14, 26, 0.98));
  color: #fff;
  font: inherit;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 10051;
}
.shop-cat-toggle:hover {
  border-color: var(--shop-border-hot);
}
.shop-cat-toggle .chev {
  color: var(--shop-mint);
  font-size: 12px;
  transition: transform 0.15s;
}
.shop-cat-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}
/* Fixed panel parked on <body> — above nav (100) and sticky (30) */
.shop-cat-panel {
  display: none;
  position: fixed !important;
  left: 16px;
  top: 120px;
  width: min(520px, calc(100vw - 32px));
  z-index: 10050 !important;
  border: 1px solid var(--shop-border);
  border-radius: 16px;
  background: rgba(6, 12, 24, 0.99);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--shop-glow);
  padding: 8px;
  max-height: min(70vh, 480px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}
.shop-cat-panel.is-open {
  display: block;
}
/* Anchor jumps clear sticky nav + filter bar */
.shop-section-block,
.pkg-line-section,
.pkg-group-block,
#featured,
#backup-drives,
#security-usbs,
#seal-stickers,
#remote-scans,
#monthly-plans,
#hardware {
  scroll-margin-top: calc(var(--nav-h, 74px) + 64px);
}
.shop-cat-panel a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #dff4ff;
  border: 1px solid transparent;
}
.shop-cat-panel a:hover {
  background: rgba(8, 122, 84, 0.16);
  border-color: rgba(122, 238, 195, 0.28);
  color: #fff;
}
.shop-cat-panel .k {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-mint);
}
.shop-cat-panel strong {
  font-size: 14px;
  color: #fff;
}
.shop-cat-panel span {
  font-size: 12px;
  color: var(--shop-sky);
}

/* Sticky simplified */
.shop-sticky-inner .shop-filter-btn {
  min-width: 0;
}

/* ── Cart chrome ──────────────────────────────────────── */
.cart-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--shop-border-hot);
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(165deg, rgba(8, 122, 84, 0.95), rgba(6, 40, 30, 0.98));
  color: #fff;
  font: inherit;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.cart-fab:hover {
  filter: brightness(1.06);
}
.cart-badge,
[data-cart-count] {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  color: #04251a;
  font-size: 11px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.cart-badge-pulse {
  animation: cartPulse 0.45s ease;
}
@keyframes cartPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(94, 190, 255, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: #dff4ff;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 850;
  background: rgba(8, 17, 31, 0.75);
  cursor: pointer;
  font: inherit;
}
.nav-cart-btn:hover {
  border-color: var(--shop-border-hot);
  color: #fff;
}
.nav-cart-btn .cart-badge {
  position: static;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 18, 0.62);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  display: block;
  hidden: false;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100%;
  z-index: 95;
  background: linear-gradient(180deg, #0a1526, #050b16);
  border-left: 1px solid var(--shop-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
  transform: translateX(105%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--shop-border);
}
.cart-drawer-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-mint);
}
.cart-drawer-head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}
.cart-close {
  border: 0;
  background: transparent;
  color: #dff4ff;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}
.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 14px 16px;
}
.cart-drawer-empty {
  text-align: center;
  color: var(--shop-sky);
  padding: 40px 12px;
}
.cart-line {
  border: 1px solid var(--shop-border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(8, 17, 31, 0.55);
}
.cart-line-main strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}
.cart-line-meta {
  color: var(--shop-sky);
  font-size: 12px;
  margin-top: 3px;
}
.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.cart-qty-btn,
.cart-remove {
  border: 1px solid rgba(94, 190, 255, 0.25);
  background: rgba(4, 13, 26, 0.7);
  color: #dff4ff;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: 900;
}
.cart-remove {
  width: auto;
  padding: 0 10px;
  margin-left: auto;
  font-size: 12px;
}
.cart-qty {
  color: #fff;
  font-weight: 900;
  min-width: 18px;
  text-align: center;
}
.cart-line-total {
  color: var(--shop-mint);
  font-weight: 950;
  font-size: 13px;
}
.cart-drawer-footer {
  border-top: 1px solid var(--shop-border);
  padding: 14px 16px 18px;
}
.cart-totals {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.cart-totals div {
  display: flex;
  justify-content: space-between;
  color: var(--shop-sky);
  font-size: 13px;
}
.cart-totals strong {
  color: #fff;
}
.cart-total-row {
  font-size: 15px !important;
  padding-top: 6px;
  border-top: 1px solid rgba(94, 190, 255, 0.12);
}
.cart-total-row strong {
  color: var(--shop-mint) !important;
  font-size: 1.1rem;
}
.cart-drawer-note {
  margin: 10px 0 0;
  color: var(--shop-sky);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}
body.cart-open {
  overflow: hidden;
}
.cart-backdrop[hidden] {
  display: none !important;
}

/* Dual CTA row on cards */
.pkg-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-cta-row .btn {
  width: 100%;
  justify-content: center;
}
.btn-add-cart {
  border: 1px solid rgba(122, 238, 195, 0.45) !important;
  background: rgba(8, 122, 84, 0.18) !important;
  color: #dff4ff !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
  border-radius: 12px !important;
  min-height: 44px;
  box-shadow: 0 8px 20px rgba(8, 122, 84, 0.18);
}
.btn-add-cart:hover {
  background: rgba(8, 122, 84, 0.32) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(8, 122, 84, 0.28);
}

/* Cart page */
.cart-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}
.cart-page-title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 8px;
}
.cart-page-lede {
  color: var(--shop-sky);
  margin: 0 0 18px;
  max-width: 640px;
}
.cart-exit-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(122, 238, 195, 0.22);
  background:
    linear-gradient(110deg, rgba(10, 40, 32, 0.55), rgba(10, 22, 40, 0.72));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.cart-exit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  min-width: min(100%, 240px);
}
.cart-exit-btn:hover {
  color: var(--shop-mint);
}
.cart-exit-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #04251a;
  background: var(--shop-mint);
  box-shadow: 0 8px 18px rgba(122, 238, 195, 0.25);
}
.cart-exit-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.cart-exit-copy strong {
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
}
.cart-exit-copy em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--shop-sky);
}
.cart-exit-link {
  color: var(--shop-sky);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(94, 190, 255, 0.16);
  background: rgba(8, 17, 31, 0.45);
}
.cart-exit-link:hover {
  color: #fff;
  border-color: rgba(122, 238, 195, 0.35);
}
.cart-exit-secondary {
  white-space: nowrap;
}
.cart-exit-footer {
  margin-top: 16px;
  text-align: center;
}
.cart-lines-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--shop-sky);
  font-size: 12px;
  font-weight: 800;
}
.cart-mini-exit,
.cart-summary-exit {
  color: var(--shop-mint);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}
.cart-mini-exit:hover,
.cart-summary-exit:hover {
  color: #fff;
}
.cart-summary-exit {
  display: block;
  margin-top: 12px;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(94, 190, 255, 0.12);
}
.cart-page-empty {
  text-align: center;
  padding: 48px 16px;
  border: 1px solid var(--shop-border);
  border-radius: 18px;
  background: var(--shop-surface);
}
.cart-page-empty h2 {
  color: #fff;
  margin: 0 0 8px;
}
.cart-page-empty p {
  color: var(--shop-sky);
  margin: 0 0 18px;
}
.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cart-nav-exit .btn {
  font-weight: 900;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.cart-table th,
.cart-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(94, 190, 255, 0.12);
  color: #dff4ff;
  vertical-align: top;
  font-size: 13px;
}
.cart-table th {
  color: var(--shop-sky);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cart-summary-box {
  border: 1px solid var(--shop-border);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--shop-surface);
  max-width: 360px;
  margin-left: auto;
  margin-bottom: 24px;
}
.cart-summary-box > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--shop-sky);
  font-size: 13px;
  margin-bottom: 8px;
}
.cart-summary-box strong {
  color: #fff;
}
.cart-summary-total {
  border-top: 1px solid rgba(94, 190, 255, 0.14);
  padding-top: 8px;
  font-size: 15px !important;
}
.cart-summary-total strong {
  color: var(--shop-mint) !important;
  font-size: 1.15rem;
}
.cart-checkout-form {
  border: 1px solid var(--shop-border);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(165deg, rgba(12, 28, 48, 0.9), rgba(7, 14, 26, 0.96));
  margin-top: 8px;
}
.cart-checkout-form h2,
.cart-checkout-form h3 {
  color: #fff;
  margin: 0 0 12px;
}
.cart-checkout-form h3 {
  margin-top: 18px;
  font-size: 1rem;
}
.cart-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cart-form-grid label,
.note-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--shop-sky);
  font-size: 12px;
  font-weight: 750;
}
.cart-form-grid label.full,
.note-label {
  grid-column: 1 / -1;
}
.cart-checkout-form .cg-input,
.cart-checkout-form input,
.cart-checkout-form textarea {
  border: 1px solid rgba(94, 190, 255, 0.22);
  border-radius: 10px;
  background: rgba(4, 13, 26, 0.75);
  color: #fff;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
}
.cart-error {
  border: 1px solid rgba(255, 120, 120, 0.45);
  background: rgba(120, 20, 20, 0.25);
  color: #ffd0d0;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.cart-success-card {
  border: 1px solid var(--shop-border-hot);
  border-radius: 18px;
  padding: 18px;
  background: rgba(8, 122, 84, 0.12);
  color: #dff4ff;
}
.cart-success-lines {
  margin: 12px 0;
  padding-left: 18px;
  color: #c8f5e3;
}
.order-status-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 16px;
}
.order-status-meta span {
  display: block;
  color: var(--shop-sky, #9ec8e8);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.order-status-meta strong {
  color: #fff;
  font-size: 14px;
  word-break: break-word;
}
.order-timeline {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  border-left: 2px solid rgba(122, 238, 195, 0.28);
}
.order-timeline li {
  position: relative;
  padding: 0 0 14px 18px;
  color: #9ec8e8;
}
.order-timeline li:last-child {
  padding-bottom: 0;
}
.order-timeline li strong {
  display: block;
  color: #dff4ff;
  font-size: 14px;
}
.order-timeline li span {
  font-size: 12px;
}
.order-timeline .dot {
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a405c;
  border: 2px solid #08111f;
}
.order-timeline li.is-done .dot {
  background: #7aeec3;
  box-shadow: 0 0 0 3px rgba(122, 238, 195, 0.18);
}
.order-timeline li.is-done strong {
  color: #fff;
}
.order-track-box {
  border: 1px solid rgba(122, 238, 195, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(4, 13, 26, 0.35);
  margin: 12px 0;
}
.order-track-box.is-pending {
  border-color: rgba(255, 203, 112, 0.35);
}
.order-track-code {
  font-size: 15px;
  color: #9ee6c8;
  font-weight: 800;
}
.order-lines-title {
  margin: 16px 0 6px;
  color: #fff;
  font-size: 15px;
}
.order-next-steps {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(94, 190, 255, 0.16);
}
.order-next-steps h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
}
.order-next-steps ol {
  margin: 0;
  padding-left: 18px;
  color: #c8e6ff;
  font-size: 14px;
}
.order-next-steps li {
  margin-bottom: 6px;
}
.cart-page-upsell {
  margin: 18px 0 8px;
  max-width: 720px;
  border: 1px solid rgba(94, 190, 255, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(8, 17, 31, 0.55);
}
.cart-page-upsell h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
}
.cart-page-upsell .cart-upsell-list {
  margin-top: 10px;
}
@media (max-width: 720px) {
  .cart-form-grid {
    grid-template-columns: 1fr;
  }
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) {
    display: none;
  }
  .cart-fab-label {
    display: none;
  }
}

/* ── Search ───────────────────────────────────────────── */
.shop-search-row {
  margin: 16px 0 6px;
  max-width: 560px;
}
.shop-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--shop-border);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(8, 17, 31, 0.75);
}
.shop-search:focus-within {
  border-color: var(--shop-border-hot);
  box-shadow: 0 0 0 3px rgba(122, 238, 195, 0.12);
}
.shop-search-icon {
  color: var(--shop-mint);
  font-weight: 900;
  font-size: 16px;
}
.shop-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.shop-search input::placeholder {
  color: rgba(158, 200, 232, 0.65);
}
.shop-search-clear {
  border: 0;
  background: rgba(94, 190, 255, 0.12);
  color: #dff4ff;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-weight: 900;
}
.shop-search-hint {
  margin: 8px 0 0;
  color: var(--shop-sky);
  font-size: 12px;
  font-weight: 700;
}
.package-card.is-search-hidden,
.shop-section-block.is-search-empty {
  display: none !important;
}

/* Ship ETA chip on cards */
.ship-eta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #9ee6c8;
  letter-spacing: 0.02em;
}
.ship-eta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7aeec3;
  box-shadow: 0 0 0 3px rgba(122, 238, 195, 0.18);
}

/* Cart upsells */
.cart-upsell {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(94, 190, 255, 0.14);
}
.cart-upsell h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.cart-upsell-list {
  display: grid;
  gap: 8px;
}
.cart-upsell-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(94, 190, 255, 0.16);
  border-radius: 12px;
  padding: 10px 11px;
  background: rgba(4, 13, 26, 0.45);
}
.cart-upsell-item strong {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}
.cart-upsell-item span {
  color: var(--shop-sky);
  font-size: 11px;
}
.cart-upsell-item button {
  flex: 0 0 auto;
  border: 1px solid rgba(122, 238, 195, 0.4);
  background: rgba(8, 122, 84, 0.2);
  color: #dff4ff;
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.cart-upsell-item button:hover {
  background: rgba(8, 122, 84, 0.35);
  color: #fff;
}

/* USB visual boost */
.product-visual.usb-hero {
  background:
    radial-gradient(circle at 50% 30%, rgba(122, 238, 195, 0.12), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(75, 220, 255, 0.14), transparent 40%),
    linear-gradient(165deg, #121f33, #070f1a);
}
.product-visual.usb-hero img.product-photo {
  max-height: 100%;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

/* ── Track E: trust chips + footer strip ───────────────── */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #c8e6ff;
  background: rgba(94, 190, 255, 0.1);
  border: 1px solid rgba(94, 190, 255, 0.22);
}
.trust-chip.free {
  color: #9ee6c8;
  background: rgba(8, 122, 84, 0.18);
  border-color: rgba(122, 238, 195, 0.35);
}

.shop-trust-strip {
  padding: 8px 0 28px;
}
.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.shop-trust-item {
  border: 1px solid rgba(94, 190, 255, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(8, 17, 31, 0.55);
}
.shop-trust-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
}
.shop-trust-item span,
.shop-trust-item a {
  color: var(--shop-sky, #9ec8e8);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}
.shop-trust-item a:hover {
  color: #7aeec3;
}
.shop-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  margin: 10px 0 14px;
  color: #9ec8e8;
  font-size: 12px;
  font-weight: 700;
}
.shop-footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shop-footer-trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7aeec3;
  box-shadow: 0 0 0 3px rgba(122, 238, 195, 0.15);
}
.shop-footer-trust a {
  color: #9ee6c8;
  text-decoration: none;
}
.shop-footer-trust a:hover {
  color: #fff;
}
.review-stars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
}
.review-stars label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(94, 190, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  color: #dff4ff;
  font-size: 13px;
  font-weight: 800;
}
.review-stars input {
  accent-color: #7aeec3;
}
@media (max-width: 900px) {
  .shop-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .shop-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Track F — stock badges on product cards */
.stock-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.stock-chip.low {
  color: #311c00;
  background: #ffcb70;
  border-color: rgba(255, 190, 77, 0.5);
}
.stock-chip.out {
  color: #3f0711;
  background: #ff8a9a;
  border-color: rgba(255, 120, 140, 0.45);
}
.product-visual {
  position: relative;
}

/* Reviews on shop */
.shop-reviews-section {
  padding: 12px 0 28px;
}
.shop-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.shop-review-card {
  border: 1px solid rgba(94, 190, 255, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(8, 17, 31, 0.55);
}
.shop-review-stars {
  color: #ffcb70;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  font-size: 13px;
}
.shop-review-body {
  margin: 0 0 12px;
  color: #dff4ff;
  font-size: 13px;
  line-height: 1.45;
}
.shop-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}
.shop-review-meta strong {
  color: #fff;
  font-size: 12px;
}
.shop-review-meta span {
  color: var(--shop-sky, #9ec8e8);
  font-size: 11px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .shop-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .shop-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Compact expandable product cards ─────────────────── */
.shop-main .packages-grid,
.shop-main .remote-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.shop-main .package-card.is-compact {
  padding: 12px 12px 10px;
  border-radius: 16px;
  cursor: pointer;
  height: auto;
  min-height: 0;
}
.shop-main .package-card.is-compact:hover {
  transform: translateY(-2px);
}

/* Compact mode: image + name + price only */
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-tagline,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-meta,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-cadence,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-support,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-best-for,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-features,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-features-title,
.shop-main .package-card.is-compact:not(.is-expanded) .trust-chips,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-save,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-cta,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-cta-note,
.shop-main .package-card.is-compact:not(.is-expanded) .ship-eta,
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-compare-price {
  display: none !important;
}

.shop-main .package-card.is-compact:not(.is-expanded) .product-visual {
  height: 120px;
  margin: 0 0 10px;
  padding: 10px;
  border-radius: 12px;
}
.shop-main .package-card.is-compact:not(.is-expanded) .product-visual picture {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.shop-main .package-card.is-compact:not(.is-expanded) .product-visual img.product-photo {
  max-height: 100%;
  max-width: 100%;
}
.shop-main .package-card.is-compact:not(.is-expanded) .product-visual.service-visual .svc-mark .ico {
  font-size: 26px;
}
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-badge {
  margin-bottom: 6px;
  font-size: 9px;
  padding: 3px 7px;
}
.shop-main .package-card.is-compact:not(.is-expanded) h3 {
  font-size: 0.95rem;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  line-height: 1.25;
}
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-price {
  margin-top: 0;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.shop-main .package-card.is-compact:not(.is-expanded) .pkg-price span {
  display: none;
}

/* Expand control */
.shop-main .package-card .pkg-expand-toggle {
  display: none;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(94, 190, 255, 0.2);
  background: rgba(8, 17, 31, 0.55);
  color: var(--shop-sky);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.shop-main .package-card.is-compact .pkg-expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.shop-main .package-card .pkg-expand-toggle:hover {
  color: #fff;
  border-color: rgba(122, 238, 195, 0.4);
  background: rgba(12, 32, 28, 0.55);
}
.shop-main .package-card .pkg-expand-toggle .chev {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 12px;
}
.shop-main .package-card.is-expanded .pkg-expand-toggle .chev {
  transform: rotate(180deg);
}
.shop-main .package-card.is-expanded .pkg-expand-toggle {
  margin-top: 12px;
  color: var(--shop-mint);
  border-color: rgba(122, 238, 195, 0.3);
}

/* Expanded: restore full card content */
.shop-main .package-card.is-compact.is-expanded {
  cursor: default;
  grid-column: span 1;
  z-index: 2;
}
.shop-main .package-card.is-compact.is-expanded .product-visual {
  height: 168px;
}
.shop-main .package-card.is-compact.is-expanded .product-visual picture {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.shop-main .package-card.is-compact.is-expanded .product-visual img.product-photo {
  max-height: 100%;
  max-width: 100%;
}
.shop-main .package-card.is-compact.is-expanded h3 {
  -webkit-line-clamp: unset;
  font-size: 1.08rem;
}
.shop-main .package-card.is-compact.is-expanded .pkg-price {
  font-size: 1.25rem;
  margin-top: 8px;
}
.shop-main .package-card.is-compact.is-expanded .pkg-price span {
  display: inline;
}
.shop-main .package-card.is-compact.is-expanded .pkg-tagline {
  min-height: 0;
  -webkit-line-clamp: 5;
}

@media (min-width: 900px) {
  .shop-main .packages-grid,
  .shop-main .remote-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 560px) {
  .shop-main .packages-grid,
  .shop-main .remote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .shop-main .package-card.is-compact:not(.is-expanded) .product-visual {
    height: 110px;
  }
  .shop-main .package-card.is-compact:not(.is-expanded) .product-visual picture,
  .shop-main .package-card.is-compact:not(.is-expanded) .product-visual img.product-photo {
    max-height: 90px;
  }
  .shop-main .package-card.is-compact:not(.is-expanded) h3 {
    font-size: 0.86rem;
  }
  .shop-main .package-card.is-compact:not(.is-expanded) .pkg-price {
    font-size: 0.95rem;
  }
}

/* ── Shop polish (hero note, panel CTA, footer) ───────── */
.shop-hero-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--shop-sky);
}
.shop-hero-note a {
  color: var(--shop-mint);
  font-weight: 750;
  text-decoration: none;
}
.shop-hero-note a:hover {
  text-decoration: underline;
}
.shop-hero-panel-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 2px;
}
.shop-featured-eyebrow {
  margin: 0 0 6px;
}
.shop-help-actions {
  justify-content: center;
  margin-bottom: 0;
}
.shop-site-footer {
  margin-top: 8px;
}
.shop-footer-grid {
  /* inherits home footer-grid when marketing_home.css loaded */
}
.shop-footer-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 4px;
}
.shop-footer-trust-inline span {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a90a8;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(8, 17, 31, 0.45);
}
/* Footer form polish when site-footer styles present */
.shop-site-footer .cg-square-subscribe {
  max-width: none;
  margin: 0;
}
.shop-site-footer .cg-square-subscribe-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 720px) {
  .shop-hero-actions .btn {
    flex: 1 1 auto;
  }
}
