/** Shopify CDN: Minification failed

Line 968:9 Expected "*/" to terminate multi-line comment

**/
/* =============================================================
   Chawla Tech — Custom Theme Overrides
   Blue / Teal / White design system, inspired by JunaidTech.pk
   and KhananiStore.com tech store layouts.
   -----------------------------------------------------------
   Loaded AFTER base.css in layout/theme.liquid so every rule
   below wins by cascade. Uses CSS variables so the user can
   later swap brand colors from a single :root block.
   ============================================================= */

:root {
  /* Brand palette — matched to Chawla Tech logo (navy + electric blue) */
  --ct-primary: #1E7FE5;           /* electric blue (the "T" + "TECH") */
  --ct-primary-dark: #1162C7;
  --ct-primary-light: #E6F1FD;
  --ct-accent: #0E1A3B;            /* deep navy (the "C" ring + "CHAWLA") */
  --ct-accent-dark: #060F26;
  --ct-danger: #E11D48;            /* sale red for discount pills */
  --ct-warning: #F59E0B;
  --ct-success: #16A34A;

  --ct-ink: #0E1A3B;               /* text = logo navy */
  --ct-ink-2: #2A3A5E;
  --ct-muted: #6B7894;
  --ct-line: #E2E8F0;
  --ct-line-2: #F1F5F9;
  --ct-bg: #FFFFFF;
  --ct-bg-soft: #F6F9FD;
  --ct-bg-dark: #0E1A3B;            /* dark strip = logo navy */

  --ct-radius-sm: 6px;
  --ct-radius: 10px;
  --ct-radius-lg: 16px;

  --ct-shadow-sm: 0 1px 2px rgba(14, 26, 59, 0.05);
  --ct-shadow: 0 4px 14px rgba(30, 127, 229, 0.10), 0 1px 3px rgba(14, 26, 59, 0.06);
  --ct-shadow-lg: 0 10px 30px rgba(30, 127, 229, 0.18);

  --ct-container: 1400px;
}

/* -------- Global body / typography tweaks -------- */
body.gradient {
  background: var(--ct-bg) !important;
  color: var(--ct-ink);
}
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--ct-ink);
  letter-spacing: -0.01em;
}

/* -------- Page width / container helper -------- */
/* Widen Dawn's container but KEEP its responsive side padding intact.
   (Earlier rule used !important on max-width only, which was fine, but Dawn's
   base.css leaves page-width with zero padding on some breakpoints, so we
   add an explicit baseline here that doesn't fight Dawn's media queries.) */
.page-width {
  max-width: var(--ct-container) !important;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
@media (max-width: 749px) {
  .page-width { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.ct-container { max-width: var(--ct-container); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 749px) { .ct-container { padding: 0 1.5rem; } }

/* Shopify wraps each static section in <div class="shopify-section">. The
   footer-group section wrapper sometimes gets a color-scheme background that
   paints white behind our dark footer. Force the wrapper transparent so the
   footer's own dark background wins. */
.shopify-section-group-footer-group,
.shopify-section-group-footer-group > .shopify-section,
#shopify-section-sections--footer-group,
.shopify-section:has(.ct-footer) {
  background: transparent !important;
}

/* =============================================================
   HEADER — utility bar + main row + category nav
   ============================================================= */
.ct-utility-bar {
  background: var(--ct-bg-dark);
  color: #cbd5e1;
  font-size: 1.25rem;
  line-height: 1;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-utility-bar__row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; gap: 2rem;
}
.ct-utility-bar a { color: inherit; text-decoration: none; }
.ct-utility-bar a:hover { color: #fff; }
.ct-utility-bar__left, .ct-utility-bar__right { display: flex; align-items: center; gap: 2rem; }
.ct-utility-bar__item { display: inline-flex; align-items: center; gap: 0.6rem; }
.ct-utility-bar__item svg { width: 14px; height: 14px; flex-shrink: 0; }

.ct-utility-bar__slider {
  position: relative;
  overflow: hidden;
  min-height: 1.6em;
  min-width: 320px;
  flex-shrink: 0;
}
.ct-utility-bar__slide {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.4s ease;
  pointer-events: none;
}
.ct-utility-bar__slide.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.ct-utility-bar__slide.is-leaving {
  transform: translateX(-100%);
  opacity: 0;
}

@media (max-width: 989px) {
  .ct-utility-bar__left .ct-hide-mobile { display: none; }
  .ct-utility-bar__slider { display: none; }
}

.ct-main-header {
  background: var(--ct-bg);
  border-bottom: 1px solid var(--ct-line);
  padding: 1.6rem 0;
}
/* Header main row — single flex row at every breakpoint.
   Visual order: [hamburger] [logo] [cart] [search] */
.ct-main-header__row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  position: relative;
}
.ct-main-header__row > header-drawer { order: 1; flex: 0 0 auto; }
.ct-main-header__row > .ct-logo { order: 2; flex: 0 0 auto; }
.ct-main-header__row > .ct-header-actions--right { order: 3; flex: 0 0 auto; }
.ct-main-header__row > .ct-search {
  order: 4;
  flex: 0 0 560px;
  min-width: 0;
  width: 560px !important;
  max-width: 560px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}
@media (max-width: 1199px) {
  .ct-main-header__row > .ct-search {
    flex-basis: 480px;
    width: 480px !important;
    max-width: 480px !important;
  }
}

/* Mobile: search hidden, logo absolute-centered, hamburger + cart on left. */
@media (max-width: 989px) {
  .ct-main-header__row {
    gap: 0.6rem;
    min-height: 56px;
  }
  .ct-main-header__row > .ct-search { display: none !important; }
  .ct-main-header__row > .ct-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .ct-main-header__row > .ct-logo img { max-height: 38px; }
  .ct-main-header__row > header-drawer { z-index: 2; }
  .ct-main-header__row > .ct-header-actions--right { z-index: 2; }
}

.ct-logo { display: inline-flex; align-items: center; gap: 1rem; text-decoration: none; }
.ct-logo__text { font-weight: 800; font-size: 2.2rem; color: var(--ct-ink); letter-spacing: -0.02em; line-height: 1; }
.ct-logo__text .ct-logo__accent { color: var(--ct-primary); }
.ct-logo__subtitle { display: block; font-size: 1rem; color: var(--ct-muted); font-weight: 500; margin-top: 2px; letter-spacing: 0.05em; text-transform: uppercase; }
.ct-logo img { max-height: 52px; width: auto; }

/* Search pill — a single rounded row: [category ▾] [input...........] [🔍 Search] */
predictive-search.ct-search,
.ct-search {
  position: relative !important;
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 680px;
  margin: 0 auto;
  height: 48px;
  background: #fff !important;
  border: 1px solid var(--ct-line) !important;
  border-radius: 999px !important;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(14,26,59,0.04);
  transition: border-color .18s ease, box-shadow .18s ease;
  box-sizing: border-box;
}
predictive-search.ct-search:hover,
.ct-search:hover { border-color: #c5d3ea !important; }
predictive-search.ct-search:focus-within,
.ct-search:focus-within {
  border-color: var(--ct-primary) !important;
  box-shadow: 0 0 0 3px rgba(30,127,229,0.15) !important;
}

/* Force the form inside to pass its children up to the flex pill */
.ct-search > form,
.ct-search__form {
  display: contents !important;
}

.ct-search__category {
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%230E1A3B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/></svg>") no-repeat right 1.2rem center;
  border: 0 !important;
  border-right: 1px solid var(--ct-line) !important;
  padding: 0 2.8rem 0 1.8rem;
  font-size: 1.3rem; font-weight: 500;
  color: var(--ct-ink); cursor: pointer;
  min-width: 150px; flex-shrink: 0;
  font-family: inherit;
  height: 100%;
  border-radius: 0;
}
.ct-search__category:focus { outline: none; background-color: var(--ct-bg-soft); }

.ct-search__input {
  flex: 1 1 auto !important;
  min-width: 0;
  border: 0 !important;
  outline: none !important;
  padding: 0 1.6rem !important;
  font-size: 1.4rem;
  color: var(--ct-ink);
  background: transparent !important;
  font-family: inherit;
  height: 100%;
  box-shadow: none !important;
}
.ct-search__input::placeholder { color: var(--ct-muted); }

.ct-search__button {
  flex-shrink: 0;
  border: 0 !important;
  background: var(--ct-primary) !important;
  color: #fff !important;
  padding: 0 1.4rem !important;
  margin: 4px !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 44px;
  height: calc(100% - 8px);
  transition: background .15s ease;
  box-shadow: none !important;
}
.ct-search__button:hover { background: var(--ct-primary-dark) !important; }
.ct-search__button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; flex-shrink: 0; }

/* Tighter on narrow screens */
@media (max-width: 749px) {
  .ct-search__category { min-width: 110px; padding-right: 2.4rem; font-size: 1.2rem; }
  .ct-search__button { padding: 0 1.2rem !important; width: 42px !important; }
}

.ct-header-actions { display: flex; align-items: center; gap: 1.6rem; }
.ct-header-actions--left { justify-self: start; }
.ct-header-actions--right { justify-self: end; }
.ct-header-action {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--ct-ink); text-decoration: none; padding: 1rem 1.2rem;
  border-radius: var(--ct-radius-sm);
  transition: background .15s ease;
  position: relative;
  min-height: 44px;
  cursor: pointer;
}
.ct-header-action:hover { background: var(--ct-bg-soft); color: var(--ct-primary); }
.ct-header-action--cart { padding-right: 1.4rem; }
.ct-header-action__icon {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.ct-header-action__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ct-header-action__text { display: flex; flex-direction: column; line-height: 1.1; }
.ct-header-action__label { font-size: 1.05rem; color: var(--ct-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.ct-header-action__value { font-size: 1.3rem; font-weight: 600; color: var(--ct-ink); }
.ct-header-action__single-label { font-size: 1.3rem; font-weight: 600; color: var(--ct-ink); }
.ct-header-action__icon .ct-cart-bubble {
  position: absolute; top: -6px; right: -8px;
  background: var(--ct-danger); color: #fff;
  font-size: 1rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  box-sizing: content-box;
}
@media (max-width: 989px) {
  .ct-header-action__text,
  .ct-header-action__single-label { display: none; }
}

/* Category nav (below main header) */
.ct-nav {
  background: var(--ct-primary);
  color: #fff;
}
.ct-nav__row { display: flex; align-items: stretch; gap: 0; }
.ct-nav__all {
  background: var(--ct-primary-dark);
  color: #fff;
  padding: 1.3rem 1.8rem;
  font-weight: 700; font-size: 1.35rem;
  display: inline-flex; align-items: center; gap: 0.8rem;
  position: relative;
  cursor: pointer;
}
.ct-nav__all svg { width: 18px; height: 18px; }
.ct-nav__list {
  display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; flex: 1;
}
.ct-nav__list a {
  display: inline-flex; align-items: center;
  padding: 1.3rem 1.6rem;
  color: #fff; text-decoration: none; font-weight: 500; font-size: 1.35rem;
  transition: background .15s ease;
}
.ct-nav__list a:hover { background: rgba(255,255,255,0.12); }
.ct-nav__right { display: inline-flex; align-items: center; padding: 0 1.8rem; font-size: 1.3rem; opacity: 0.95; gap: 0.6rem; }
@media (max-width: 989px) { .ct-nav { display: none; } }

/* Override Dawn's default header section so our custom markup gets a clean canvas */
.section-header { box-shadow: none !important; }
.header-wrapper--border-bottom { border: 0 !important; }

/* =============================================================
   BUTTONS
   ============================================================= */
.button, button.button, a.button {
  border-radius: var(--ct-radius) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  min-height: 4.6rem !important;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease !important;
}
.button--primary, button.button--primary {
  --color-button: 30, 127, 229;
  --color-button-text: 255, 255, 255;
  background: var(--ct-primary) !important;
  color: #fff !important;
  border-color: var(--ct-primary) !important;
}
.button--primary:hover, button.button--primary:hover {
  background: var(--ct-primary-dark) !important;
  border-color: var(--ct-primary-dark) !important;
  box-shadow: 0 8px 20px rgba(30,127,229,0.28);
}
.button--secondary {
  background: #fff !important;
  color: var(--ct-primary) !important;
  border: 1.5px solid var(--ct-primary) !important;
}
.button--secondary:hover { background: var(--ct-primary-light) !important; }

.ct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
  padding: 1.2rem 2rem; border-radius: var(--ct-radius); font-weight: 600; font-size: 1.4rem;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
}
.ct-btn--primary { background: var(--ct-primary); color: #fff; }
.ct-btn--primary:hover { background: var(--ct-primary-dark); box-shadow: 0 6px 16px rgba(30,127,229,0.25); }
.ct-btn--accent { background: var(--ct-accent); color: #fff; }
.ct-btn--accent:hover { background: var(--ct-accent-dark); }
.ct-btn--ghost { background: transparent; color: var(--ct-primary); border: 1.5px solid var(--ct-primary); }
.ct-btn--ghost:hover { background: var(--ct-primary-light); }
.ct-btn--block { width: 100%; }

/* =============================================================
   PRODUCT CARDS — bigger discount badge, red price, blue CTA
   ============================================================= */
.card-wrapper { background: transparent; }

.card--standard,
.card--card {
  border: 1px solid var(--ct-line) !important;
  border-radius: var(--ct-radius-lg) !important;
  background: #fff !important;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--standard:hover,
.card--card:hover {
  transform: translateY(-3px);
  border-color: var(--ct-primary);
  box-shadow: 0 18px 40px rgba(30,127,229,0.12);
}
.card__inner { border-radius: var(--ct-radius-lg) !important; }
.card__content { padding: 1.4rem 1.6rem 1.8rem !important; }
.card__heading, .card__information .card__heading a {
  font-size: 1.45rem !important;
  font-weight: 600 !important;
  color: var(--ct-ink) !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}
.card__heading a:hover { color: var(--ct-primary) !important; }

/* Price styling */
.price { margin-top: 0.6rem; }
.price__sale .price-item--sale,
.price .price-item--regular,
.price__regular .price-item--regular {
  font-weight: 800 !important;
  font-size: 1.7rem !important;
  color: var(--ct-danger) !important;
  letter-spacing: -0.01em;
}
.price__sale .price-item--regular {
  color: var(--ct-muted) !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
  font-size: 1.3rem !important;
  margin-left: 0.8rem !important;
}
.price__regular .price-item--regular { color: var(--ct-ink) !important; }

/* Sale / new / discount badge */
.card__badge { top: 1rem !important; left: 1rem !important; }
.card__badge .badge {
  background: var(--ct-danger) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0.5rem 1rem !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 4px 10px rgba(225,29,72,0.25);
}
.card__badge .badge.color-scheme-4 { background: var(--ct-accent) !important; }

/* Quick-add button tint */
.quick-add__submit, .card__content .button {
  background: var(--ct-primary) !important;
  color: #fff !important;
  border-color: var(--ct-primary) !important;
}

/* =============================================================
   SECTIONS / HEADINGS
   ============================================================= */
.ct-section { padding: 4.5rem 0; }
.ct-section--tight { padding: 2.5rem 0; }
.ct-section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 2.8rem; gap: 2rem; flex-wrap: wrap;
}
.ct-section-title {
  font-size: 2.6rem; font-weight: 800; line-height: 1.15;
  color: var(--ct-ink); margin: 0;
  position: relative; padding-left: 1.4rem;
}
.ct-section-title::before {
  content: ''; position: absolute; left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 5px; border-radius: 5px; background: var(--ct-primary);
}
.ct-section-title__sub { color: var(--ct-muted); font-weight: 500; font-size: 1.4rem; margin-left: 0.8rem; }
.ct-section-link { color: var(--ct-primary); font-weight: 600; font-size: 1.4rem; text-decoration: none; }
.ct-section-link:hover { text-decoration: underline; }

/* Match Dawn's featured collection heading */
.collection .title-wrapper--no-top-margin .title {
  font-size: 2.6rem !important; font-weight: 800 !important;
  padding-left: 1.4rem; position: relative;
}
.collection .title-wrapper--no-top-margin .title::before {
  content: ''; position: absolute; left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 5px; border-radius: 5px; background: var(--ct-primary);
}

/* =============================================================
   HERO SLIDER (chawla-hero section)
   ============================================================= */
.ct-hero {
  background: linear-gradient(135deg, #E6F1FD 0%, #F3F7FC 100%);
  padding: 2rem 0;
}
.ct-hero__grid {
  display: grid; grid-template-columns: 240px 1fr 320px;
  gap: 2rem; align-items: stretch;
}
@media (max-width: 1199px) { .ct-hero__grid { grid-template-columns: 1fr 320px; } .ct-hero__cats { display: none; } }
@media (max-width: 989px) { .ct-hero__grid { grid-template-columns: 1fr; } .ct-hero__side { display: none; } }

.ct-hero__cats {
  background: #fff; border-radius: var(--ct-radius-lg);
  box-shadow: var(--ct-shadow-sm); border: 1px solid var(--ct-line);
  padding: 1rem 0; overflow: hidden;
}
.ct-hero__cats-title {
  padding: 1rem 1.6rem; font-weight: 700; font-size: 1.3rem; color: var(--ct-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ct-line);
}
.ct-hero__cats ul { list-style: none; padding: 0; margin: 0; }
.ct-hero__cats a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.6rem; font-size: 1.35rem;
  color: var(--ct-ink-2); text-decoration: none;
  border-left: 3px solid transparent;
}
.ct-hero__cats a:hover {
  background: var(--ct-primary-light); color: var(--ct-primary);
  border-left-color: var(--ct-primary);
}
.ct-hero__cats a svg { width: 18px; height: 18px; opacity: 0.7; }

.ct-hero__main {
  position: relative; border-radius: var(--ct-radius-lg); overflow: hidden;
  background: #0E1A3B; min-height: 420px;
  box-shadow: var(--ct-shadow);
}
.ct-hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.7s ease;
  background-size: cover; background-position: center;
}
.ct-hero__slide.is-active { opacity: 1; z-index: 2; }
.ct-hero__slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,26,59,0.78) 0%, rgba(14,26,59,0.28) 55%, transparent 100%);
}
.ct-hero__content {
  position: relative; z-index: 3;
  padding: 4rem 4.5rem; max-width: 560px; color: #fff;
}
.ct-hero__eyebrow {
  display: inline-block; padding: 0.5rem 1.2rem; border-radius: 999px;
  background: rgba(30,127,229,0.22); color: #8EC1FB;
  font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}
.ct-hero__title {
  font-size: 4.2rem; font-weight: 800; line-height: 1.05;
  margin: 0 0 1.2rem; letter-spacing: -0.02em; color: #fff;
}
.ct-hero__sub { font-size: 1.5rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; line-height: 1.5; }
.ct-hero__price { font-size: 2.4rem; font-weight: 800; color: #8EC1FB; margin-bottom: 2rem; }
.ct-hero__dots {
  position: absolute; bottom: 2rem; left: 4.5rem; z-index: 4; display: flex; gap: 0.8rem;
}
.ct-hero__dot {
  width: 34px; height: 4px; border-radius: 3px;
  background: rgba(255,255,255,0.3); border: 0; cursor: pointer; padding: 0;
}
.ct-hero__dot.is-active { background: #fff; }
@media (max-width: 749px) {
  .ct-hero__main { min-height: 280px; }
  .ct-hero__content { padding: 2.5rem; }
  .ct-hero__title { font-size: 2.8rem; }
}

.ct-hero__side { display: grid; grid-template-rows: 1fr 1fr; gap: 2rem; }
.ct-hero__promo {
  position: relative; overflow: hidden; border-radius: var(--ct-radius-lg);
  background: #fff; border: 1px solid var(--ct-line);
  padding: 2rem 2.2rem; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px; text-decoration: none; color: var(--ct-ink);
  box-shadow: var(--ct-shadow-sm);
  background-size: cover; background-position: right center; background-repeat: no-repeat;
}
.ct-hero__promo:hover { box-shadow: var(--ct-shadow); }
.ct-hero__promo-eyebrow { font-size: 1.1rem; color: var(--ct-primary); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.ct-hero__promo-title { font-size: 2rem; font-weight: 800; margin: 0.6rem 0; line-height: 1.2; }
.ct-hero__promo-cta { font-size: 1.3rem; color: var(--ct-primary); font-weight: 600; }
.ct-hero__promo-cta::after { content: ' →'; }

/* =============================================================
   CATEGORY GRID (icon tiles)
   ============================================================= */
.ct-cat-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 1.2rem;
}
@media (max-width: 1199px) { .ct-cat-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 989px) { .ct-cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 549px) { .ct-cat-grid { grid-template-columns: repeat(3, 1fr); } }

.ct-cat-tile {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.8rem 1rem;
  background: #fff; border: 1px solid var(--ct-line); border-radius: var(--ct-radius);
  text-decoration: none; color: var(--ct-ink);
  transition: all .18s ease;
  text-align: center;
}
.ct-cat-tile:hover {
  border-color: var(--ct-primary); color: var(--ct-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(30,127,229,0.1);
}
.ct-cat-tile__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background-color: var(--ct-primary-light) !important;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ct-primary);
  transition: background-color .18s ease, color .18s ease;
  flex-shrink: 0;
}
.ct-cat-tile:hover .ct-cat-tile__icon {
  background-color: var(--ct-primary) !important;
  color: #fff;
}
.ct-cat-tile__icon svg {
  width: 32px !important;
  height: 32px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.ct-cat-tile:hover .ct-cat-tile__icon svg { stroke: #fff !important; }
.ct-cat-tile__icon img { width: 44px; height: 44px; object-fit: contain; }
.ct-cat-tile__label { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }

/* =============================================================
   FEATURE BANNERS (promo tiles row)
   ============================================================= */
.ct-banner-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
@media (max-width: 989px) { .ct-banner-row { grid-template-columns: 1fr; } }
.ct-banner-tile {
  position: relative; border-radius: var(--ct-radius-lg); overflow: hidden;
  padding: 3rem; color: #fff; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none;
  background-size: cover; background-position: center;
}
.ct-banner-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,127,229,0.92), rgba(14,26,59,0.78));
  z-index: 1;
}
.ct-banner-tile > * { position: relative; z-index: 2; }
.ct-banner-tile h3 { font-size: 2.2rem; font-weight: 800; margin: 0 0 0.8rem; color: #fff; }
.ct-banner-tile p { margin: 0; font-size: 1.3rem; opacity: 0.9; }
.ct-banner-tile__cta { align-self: flex-start; margin-top: 1.5rem; font-weight: 600; border-bottom: 2px solid #fff; padding-bottom: 2px; }

/* =============================================================
   PRODUCT GRID / DEALS SECTION
   ============================================================= */
.ct-products-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.6rem;
}
@media (max-width: 1199px) { .ct-products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 989px) { .ct-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 749px) { .ct-products-grid { grid-template-columns: repeat(2, 1fr); } }

.ct-product-card {
  background: #fff; border: 1px solid var(--ct-line); border-radius: var(--ct-radius-lg);
  overflow: hidden; transition: all .18s ease;
  display: flex; flex-direction: column; position: relative;
}
.ct-product-card:hover {
  border-color: var(--ct-primary);
  box-shadow: 0 18px 40px rgba(30,127,229,0.12);
  transform: translateY(-3px);
}
.ct-product-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  background: var(--ct-danger); color: #fff;
  font-weight: 700; font-size: 1.15rem;
  padding: 0.45rem 0.9rem; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(225,29,72,0.25);
}
.ct-product-card__media {
  aspect-ratio: 1/1; background: var(--ct-bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ct-product-card__media img, .ct-product-card__media svg {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .3s ease;
}
.ct-product-card:hover .ct-product-card__media img { transform: scale(1.05); }
.ct-product-card__body { padding: 1.4rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.ct-product-card__vendor { font-size: 1.1rem; color: var(--ct-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ct-product-card__title {
  font-size: 1.4rem; font-weight: 600; color: var(--ct-ink); line-height: 1.35;
  text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ct-product-card__title:hover { color: var(--ct-primary); }
.ct-product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.ct-product-card__price { font-weight: 800; font-size: 1.7rem; color: var(--ct-ink); }
.ct-product-card__price-row--sale .ct-product-card__price { color: var(--ct-danger); }
.ct-product-card__compare { font-size: 1.25rem; color: var(--ct-muted); text-decoration: line-through; }
.ct-product-card__discount {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--ct-danger);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.ct-product-card__add {
  margin-top: 1rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--ct-primary); color: #fff;
  padding: 1rem; border-radius: var(--ct-radius-sm);
  font-weight: 600; font-size: 1.3rem; border: 0; cursor: pointer;
  text-decoration: none;
}
.ct-product-card__add:hover { background: var(--ct-primary-dark); }

/* Countdown pill for deals section */
.ct-countdown {
  display: inline-flex; gap: 0.6rem; align-items: center;
  background: rgba(225,29,72,0.1); color: var(--ct-danger);
  padding: 0.7rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: 1.3rem;
}
.ct-countdown__box {
  background: var(--ct-danger); color: #fff;
  min-width: 32px; padding: 3px 6px; border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* =============================================================
   BRAND STRIP
   ============================================================= */
.ct-brand-strip {
  background: var(--ct-bg-soft); border-radius: var(--ct-radius-lg);
  padding: 2.2rem 3rem;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 3rem; align-items: center;
}
@media (max-width: 989px) { .ct-brand-strip { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.ct-brand-strip__item {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.65; transition: opacity .15s ease; filter: grayscale(100%);
}
.ct-brand-strip__item:hover { opacity: 1; filter: none; }
.ct-brand-strip__item img { max-height: 42px; max-width: 100%; }
.ct-brand-strip__item span {
  font-weight: 800; font-size: 1.8rem; letter-spacing: -0.02em;
  color: var(--ct-ink-2);
}

/* =============================================================
   COLLECTION PAGE — denser grid, cleaner filter sidebar
   ============================================================= */
.collection-hero { padding: 3rem 0 !important; }
.collection-hero__title {
  font-weight: 800 !important;
  font-size: 3rem !important;
  letter-spacing: -0.02em;
}
.collection .product-grid { gap: 1.6rem 1.6rem !important; }

.facets-wrapper { background: #fff; padding: 2rem; border: 1px solid var(--ct-line); border-radius: var(--ct-radius-lg); }
.facets__heading, .facets__summary { font-weight: 700 !important; color: var(--ct-ink) !important; }
.facets__button-no-js, .facets__button, .facets__summary {
  font-size: 1.4rem !important;
}
.facets__details { border-bottom: 1px solid var(--ct-line-2) !important; }
.facets-container .facets__checkbox:checked + .facets__label { color: var(--ct-primary) !important; font-weight: 600; }
.active-facets__button-remove, .active-facets__button-inner {
  background: var(--ct-primary-light) !important; color: var(--ct-primary) !important;
  border-radius: 999px !important;
}

/* Sort dropdown + count bar */
.collection__sort-wrapper select, .facets__sort {
  border: 1.5px solid var(--ct-line) !important;
  border-radius: var(--ct-radius-sm) !important;
  padding: 0.8rem 1.2rem !important; font-size: 1.3rem !important;
}

/* Breadcrumb-like subtle top bar on collection */
.collection-hero__text-wrapper { padding: 1rem 0 !important; }

/* =============================================================
   PRODUCT PAGE — hero gallery, price, variant pills, CTA
   ============================================================= */
.product { padding-top: 2rem; }
.product__title h1, .product__title {
  font-size: 2.8rem !important; font-weight: 800 !important;
  letter-spacing: -0.02em; color: var(--ct-ink);
}
.product .price,
.product__info-wrapper .price {
  margin-top: 0.5rem !important; padding: 1.2rem 0 !important;
  border-bottom: 1px solid var(--ct-line);
}
.product .price-item--sale, .product .price-item--regular,
.product .price--large .price-item {
  font-size: 2.8rem !important; font-weight: 800 !important;
}
.product .price__sale .price-item--regular {
  font-size: 1.6rem !important; color: var(--ct-muted) !important; text-decoration: line-through;
  font-weight: 500 !important;
}
.product .price__sale .price-item--sale { color: var(--ct-danger) !important; }

.product-form__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.product-form__submit {
  background: var(--ct-primary) !important; color: #fff !important;
  border-color: var(--ct-primary) !important;
  font-size: 1.5rem !important; font-weight: 700 !important;
}
.product-form__submit:hover { background: var(--ct-primary-dark) !important; }
.shopify-payment-button__button--unbranded,
.shopify-payment-button__button {
  background: var(--ct-accent) !important; color: #fff !important;
  border-radius: var(--ct-radius) !important;
  font-weight: 700 !important;
}

.product-form__input input[type="radio"] + label,
.product-form__input .product-form__input-label,
variant-radios label.product-form__input-label {
  border-radius: var(--ct-radius-sm) !important;
  border: 1.5px solid var(--ct-line) !important;
  padding: 0.9rem 1.6rem !important; font-weight: 600 !important;
}
.product-form__input input[type="radio"]:checked + label {
  border-color: var(--ct-primary) !important; background: var(--ct-primary-light) !important; color: var(--ct-primary) !important;
}

.ct-trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--ct-line);
}
@media (max-width: 749px) { .ct-trust-row { grid-template-columns: 1fr; } }
.ct-trust-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--ct-bg-soft); border-radius: var(--ct-radius);
}
.ct-trust-item__icon {
  width: 36px; height: 36px; flex-shrink: 0; color: var(--ct-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.ct-trust-item__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ct-trust-item__title { font-size: 1.3rem; font-weight: 700; color: var(--ct-ink); line-height: 1.2; }
.ct-trust-item__desc { font-size: 1.15rem; color: var(--ct-muted); margin-top: 2px; }

/* =============================================================
   FOOTER
   ============================================================= */
.ct-footer,
footer.ct-footer {
  background-color: var(--ct-bg-dark) !important;
  background: var(--ct-bg-dark) !important;
  color: #cbd5e1 !important;
  padding: 5rem 0 0; margin-top: 5rem;
}
.ct-footer *, footer.ct-footer * { color: inherit; }
.ct-footer a, footer.ct-footer a { color: #cbd5e1 !important; text-decoration: none; }
.ct-footer a:hover, footer.ct-footer a:hover { color: #fff !important; }
.ct-footer h3, .ct-footer h4, .ct-footer__col h4, .ct-footer__brand h3 { color: #fff !important; }
.ct-footer__top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 989px) { .ct-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 549px) { .ct-footer__top { grid-template-columns: 1fr; } }

.ct-footer__brand h3 { color: #fff; font-size: 2.2rem; font-weight: 800; margin: 0 0 1rem; letter-spacing: -0.02em; }
.ct-footer__brand p { margin: 0 0 1.5rem; font-size: 1.3rem; line-height: 1.7; }
.ct-footer__contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; font-size: 1.3rem; }
.ct-footer__contact-item svg { width: 18px; height: 18px; color: var(--ct-accent); flex-shrink: 0; margin-top: 2px; }

.ct-footer__col h4 {
  color: #fff; font-size: 1.35rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 1.6rem;
}
.ct-footer__col ul { list-style: none; padding: 0; margin: 0; }
.ct-footer__col li { margin-bottom: 1rem; font-size: 1.3rem; }

.ct-footer__newsletter input[type="email"] {
  width: 100%; padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ct-radius-sm); color: #fff;
  font-size: 1.3rem; font-family: inherit;
}
.ct-footer__newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.ct-footer__newsletter button {
  margin-top: 0.8rem; width: 100%;
  background: var(--ct-primary); color: #fff; border: 0;
  padding: 1.2rem; border-radius: var(--ct-radius-sm);
  font-weight: 600; cursor: pointer;
}
.ct-footer__newsletter button:hover { background: var(--ct-primary-dark); }

.ct-footer__socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.ct-footer__social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.ct-footer__social:hover { background: var(--ct-primary); }
.ct-footer__social svg { width: 18px; height: 18px; fill: currentColor; color: #fff; }

.ct-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2.2rem 0; font-size: 1.2rem; flex-wrap: wrap;
}
.ct-footer__payments { display: flex; gap: 0.8rem; align-items: center; }
.ct-footer__payments img { height: 24px; }
.ct-footer__payments .ct-pay-chip {
  background: rgba(255,255,255,0.08); padding: 0.4rem 0.9rem; border-radius: 5px;
  font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: 0.04em;
}

/* (Our custom footer replaces Dawn's via footer-group.json, no hiding rule needed.) */

/* =============================================================
   MENU DRAWER / MOBILE  (header layout rules live higher up)
   ============================================================= */

/* =============================================================
   UTILITIES
   ============================================================= */
.ct-flex { display: flex; }
.ct-items-center { align-items: center; }
.ct-gap-1 { gap: 1rem; }
.ct-gap-2 { gap: 2rem; }
.ct-mt-1 { margin-top: 1rem; }
.ct-mt-2 { margin-top: 2rem; }
.ct-mt-3 { margin-top: 3rem; }
.ct-text-center { text-align: center; }
.ct-text-muted { color: var(--ct-muted); }

/* hide D