﻿/* ============================================================
   IsoTech — Modern electronics store theme
   Author CSS. SmartWeb owns HTML structure of server modules;
   this file styles every class those modules render.
   ============================================================ */

:root {
  --ink: #0f1220;
  --body: #454b60;
  --soft: #828aa0;
  --faint: #aeb4c6;
  --line: #edeef4;
  --line-2: #e2e4ee;
  --bg: #ffffff;
  --surface: #f4f5fb;
  --surface-2: #eef0f8;

  --primary: #3a41e6;
  --primary-2: #5b60f2;
  --primary-ink: #2a2fc4;
  --primary-soft: #eef0ff;

  --hero-1: #0b1130;
  --hero-2: #182468;
  --hero-3: #241a63;

  --plum-1: #7c3aed;
  --plum-2: #a855f7;

  --sale: #ff5a63;
  --stock: #12a150;
  --star: #f6a723;

  --rad: 16px;
  --rad-sm: 11px;
  --rad-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20, 24, 60, .05);
  --shadow: 0 10px 34px rgba(20, 24, 60, .08);
  --shadow-lg: 0 22px 60px rgba(20, 24, 60, .14);

  --ff-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

p {
  margin: 0
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px
}

/* ---------- utility ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
}

.text-soft {
  color: var(--soft)
}

.section {
  padding: 58px 0
}

.section-tight {
  padding: 40px 0
}

.section-surface {
  background: var(--surface)
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.sec-head h2 {
  font-size: 30px;
  line-height: 1.1
}

.sec-head .sub {
  color: var(--soft);
  font-size: 14px;
  margin-top: 6px
}

.link-all {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .01em;
}

.link-all i {
  transition: transform .25s
}

.link-all:hover {
  color: var(--primary)
}

.link-all:hover i {
  transform: translateX(4px)
}

/* ---------- buttons ---------- */
.btn {
  --bs-btn-focus-shadow-rgb: 58, 65, 230;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: .72rem 1.55rem;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(58, 65, 230, .32);
}

.btn-primary:hover {
  background: var(--primary-ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(58, 65, 230, .4)
}

.btn-light {
  background: #fff;
  color: var(--ink)
}

.btn-light:hover {
  background: #f0f1f8;
  color: var(--ink)
}

.btn-outline-plum {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
}

.btn-outline-plum:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-dark:hover {
  background: #000;
  color: #fff
}

.btn-sm {
  padding: .5rem 1.1rem;
  font-size: 13px
}

/* ---------- placeholders ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad-sm);
  background:
    repeating-linear-gradient(135deg, #eef0f8 0 12px, #e7e9f4 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat !important;
}

.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  letter-spacing: .05em;
  color: #9aa1b8;
  text-align: center;
  padding: 6px 10px;
}

.ph-square {
  aspect-ratio: 1/1
}

.ph-tall {
  aspect-ratio: 3/4
}

.ph-wide {
  aspect-ratio: 16/9
}

.ph-dark {
  background: repeating-linear-gradient(135deg, #20264d 0 12px, #1a2044 12px 24px);
}

.ph-dark::after {
  color: #7d86b8
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--hero-1), var(--hero-3) 55%, var(--primary-ink));
  color: #fff;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 44px;
  flex-wrap: wrap;
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar p {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em
}

.topbar strong {
  color: #ffd166
}

/* countdown */
.countdown {
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.cd-box {
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
  min-width: 40px;
  padding: 3px 6px;
  text-align: center;
  line-height: 1.05;
}

.cd-box .n {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff
}

.cd-box .l {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.topbar .btn {
  padding: .4rem 1.05rem;
  font-size: 12.5px
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff
}

.header-main {
  border-bottom: 1px solid var(--line);
  min-height: 79px;
}

.header-main .container {
  display: flex;
  align-items: center;
  gap: 26px;
  /* padding-top: 16px; */
  /* padding-bottom: 16px; */
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(58, 65, 230, .35);
}

.brand-mark i {
  font-size: 18px
}

.brand-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -.02em
}

/* inline search */
.search-wrap {
  flex: 1 1 auto;
  min-width: 0
}

.search-inline {
  display: flex;
  align-items: stretch;
  position: relative;
  border: 1.6px solid var(--line-2);
  border-radius: 999px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.search-inline:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft)
}

.search-inline .tag-sel {
  border: none;
  background: var(--surface);
  color: var(--body);
  font-weight: 600;
  font-size: 13.5px;
  padding: 0 18px;
  border-right: 1px solid var(--line-2);
  border-radius: 999px 0 0 999px;
  outline: none;
  cursor: pointer;
  max-width: 150px;
}

.search-inline input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}

.search-inline input::placeholder {
  color: var(--faint)
}

.search-inline .search-btn {
  border: none;
  background: var(--primary);
  color: #fff;
  width: 52px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s;
  font-size: 17px;
  border-radius: 0 999px 999px 0;
}

.search-inline .search-btn:hover {
  background: var(--primary-ink)
}

/* header actions */
.head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto
}

.icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 20px;
  background: var(--surface);
  transition: background .2s, color .2s, transform .2s;
}

.icon-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  transform: translateY(-2px)
}

.icon-btn .badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.icon-btn.cart .badge-count {
  background: var(--sale)
}

/* header bottom / nav bar */
.header-nav {
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.header-nav .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 52px;
}

.all-cats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 11px 20px;
  border-radius: 11px;
  flex: 0 0 auto;
  cursor: pointer;
  letter-spacing: .01em;
  box-shadow: 0 8px 20px rgba(58, 65, 230, .28);
}

[data-sw-module="ecom-nav"] .nav-badge {
  top: 10px !important;
  right: 10px !important;
}

.main-nav {
  flex: 1 1 auto
}

.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--surface);
  color: var(--primary)
}

.main-nav a i {
  font-size: 12px;
  opacity: .6
}

.nav-promo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px
}

.nav-promo i {
  font-size: 16px
}

/* .main-nav — horizontal content-page menu (dynamic-menu module, data-extra-class="main-nav").
   Style its generated list. Real markup (DynamicMenuProcessor.cs / renderEcomNav'la aynı yapı):
     .sw-nav-desktop > ul.navbar-nav > li.nav-item.dropdown > a.nav-link + ul.dropdown-menu
       > li.dropdown-submenu > a.dropdown-item + ul.dropdown-menu > li > a.dropdown-item
   A single "nav ul{display:flex}" rule flex-ifies EVERY nested <ul> too (including
   .dropdown-menu), so submenus rendered permanently open instead of hover-reveal
   overlays — hence the always-expanded look. Scope the flex row to the TOP-LEVEL list only. */
.main-nav .sw-nav-desktop>.navbar-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.main-nav .nav-link,
.main-nav .dropdown-item {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 9px;
  transition: background .2s, color .2s;
  display: block;
}

.main-nav .nav-link:hover,
.main-nav .dropdown-item:hover {
  background: var(--surface);
  color: var(--primary)
}

.main-nav .nav-item {
  position: relative
}

.main-nav .ecn-dd-arrow {
  font-size: 11px;
  margin-left: 4px;
  vertical-align: 1px
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  margin: 8px 0 0;
}

.main-nav .nav-item.dropdown:hover>.dropdown-menu {
  display: block
}

.main-nav .dropdown-submenu {
  position: relative
}

.main-nav .dropdown-submenu>.dropdown-menu {
  top: -8px;
  left: 100%;
  margin: 0 0 0 4px
}

/* Invisible hover bridges for the margin gaps above (top-level margin-top:8px, submenu
   margin-left:4px) — without them the mouse crosses a dead zone between the nav-link/
   dropdown-item and the dropdown box, :hover breaks mid-transit, dropdown closes before the
   cursor arrives. Render nothing (content:"", no background) — the floating gap look (and
   the submenu's existing 4px offset) is untouched. */
.main-nav .nav-item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px
}

.main-nav .dropdown-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 4px
}

.main-nav .dropdown-submenu:hover>.dropdown-menu {
  display: block
}

.main-nav .dropdown-item .ecn-sub-arrow {
  float: right;
  font-size: 11px;
  margin-top: 3px
}

/* Mobile drawer + accordion — SHARED by every module that reuses this markup
   (dynamic-menu's .main-nav AND the vertical "All Categories" ecom-nav below).
   Real markup: .sw-nav-toggler (d-lg-none hamburger) -> click -> .sw-nav-drawer.sw-open
   (fixed slide-in panel) containing .sw-nav-accordion > li > .sw-acc-row (+ .sw-acc-sub
   nested <ul>, toggled open via .sw-acc-toggle). Was previously undocumented/unstyled here. */
.sw-nav-toggler {
  border: none;
  background: var(--surface);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.sw-nav-toggler .navbar-toggler-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.sw-nav-toggler .navbar-toggler-icon::before,
.sw-nav-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.sw-nav-toggler .navbar-toggler-icon::before {
  top: -6px
}

.sw-nav-toggler .navbar-toggler-icon::after {
  top: 6px
}

.sw-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, .15);
  z-index: 99990;
  transition: left .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sw-nav-drawer.sw-open {
  left: 0
}

.sw-nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}

.sw-nav-drawer-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink)
}

.sw-nav-drawer-close {
  border: none;
  background: var(--surface);
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.sw-nav-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 6px
}

.sw-nav-accordion {
  list-style: none;
  margin: 0;
  padding: 0
}

.sw-acc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 9px;
  transition: background .15s
}

.sw-acc-row:hover {
  background: var(--surface)
}

.sw-acc-d1 {
  padding-left: 28px
}

.sw-acc-d2 {
  padding-left: 44px
}

.sw-acc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto
}

.sw-acc-link {
  flex: 1;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.sw-acc-toggle {
  border: none;
  background: none;
  color: var(--ink);
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s;
}

.sw-acc-toggle.sw-acc-open {
  transform: rotate(180deg)
}

.sw-acc-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none
}

.sw-acc-sub.sw-acc-open {
  display: block
}

/* Vertical "All Categories" flyout — data-nav-layout="vertical" on the
   ecom-nav marker. Wrap the trigger (.all-cats span) + the ecom-nav <nav> in a
   shared .cat-menu-wrap so :hover on desktop can reveal the flyout panel below it.
   Mobile keeps the SAME generic .sw-nav-toggler/.sw-nav-drawer click behavior above —
   no separate mobile CSS needed here. */
.cat-menu-wrap {
  position: relative;
  display: flex;
  align-items: center
}

/* .all-cats (the trigger, previousElementSibling of the marker) now proxies clicks to this
   button (see renderEcomNav in sw-modules.js) — the auto-rendered hamburger icon next to it
   is redundant, hide it. Kept in the DOM (still clickable via .click() from JS) — just
   visually hidden. */
.cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .sw-nav-toggler {
  display: none;
}

@media (min-width:992px) {

  /* Position the OUTER marker itself (not the inner .sw-nav-desktop) — Bootstrap's own
     .navbar class sets position:relative on the JS-rendered inner <nav class="navbar
     navbar-expand-lg ..."> wrapper; if .sw-nav-desktop were the positioned element, THAT
     would become its containing block instead of .cat-menu-wrap (a near-zero-width box
     sitting right after the trigger), placing the flyout in the wrong spot. Positioning
     the outer marker (a direct child of .cat-menu-wrap) sidesteps that entirely.
     !important on position: addModuleEditButton() (sw-modules.js) writes an INLINE
     "position:relative" onto every module's root element (admin edit mode, so the ⚙
     button anchors correctly) — a plain stylesheet rule can never beat an inline style,
     only !important can. */
  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] {
    display: none;
    position: absolute !important;
    top: 100%;
    left: 0;
    z-index: 1060;
  }

  .cat-menu-wrap:hover [data-sw-module="ecom-nav"][data-nav-layout="vertical"] {
    display: block;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .sw-nav-desktop {
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--rad-sm);
    box-shadow: var(--shadow);
    padding: 8px 0;
    margin-top: 10px;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .sw-nav-desktop>.navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .nav-item {
    width: 100%;
    position: unset;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .nav-link,
  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    position: relative;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .nav-link:hover,
  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .dropdown-item:hover {
    background: var(--surface);
    color: var(--primary)
  }

  /* Level-0 submenu flies out to the RIGHT of the vertical list, not below it — FLUSH
     against it (margin:0, no gap). A gap here (even a few px) breaks the hover chain the
     instant the mouse crosses it diagonally; padding-bridge hacks are fragile. Flush/
     adjacent panels (no gap at all) is the same pattern real mega-menus use — nothing to
     "leak" through, so no hover-loss possible. */
  /* Independent per-level classes (ecn-lvl-2, ecn-lvl-3, ...) instead of deep descendant
     chains (".nav-item.dropdown > .dropdown-menu .dropdown-submenu > .dropdown-menu") —
     renderEcomNav (sw-modules.js) / DynamicMenuProcessor.cs / EcommerceNav/Default.cshtml
     all emit "dropdown-menu ecn-lvl-N" on every panel (N = its own nesting depth + 2, so
     the root flyout is ecn-lvl-2, its nested panel is ecn-lvl-3, etc). Lets each level be
     customized on its own without broad selectors leaking into unrelated markup (that's
     exactly how ".main-nav ul" once leaked into the mobile accordion's <ul>s). */
  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .ecn-lvl-2 {
    display: none;
    position: absolute;
    top: 10px;
    left: 100%;
    margin: 0;
    min-width: 560px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--rad-sm);
    box-shadow: var(--shadow);
    padding: 14px 20px;
    column-count: 2;
    column-gap: 32px;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .ecn-lvl-2>li {
    break-inside: avoid-column;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .nav-item.dropdown:hover>.ecn-lvl-2 {
    display: block
  }

  /* Arrows point right (flyout direction) instead of down */
  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .ecn-dd-arrow {
    transform: rotate(-90deg);
    font-size: 11px
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .ecn-sub-arrow {
    float: right;
    margin-top: 2px
  }

  /* Cap the flyout at 2 side-by-side panels — ecn-lvl-3 (e.g. "Televizyon & Ses
     Sistemleri" > "Televizyon") renders as an INDENTED INLINE sublist under its own
     parent row inside ecn-lvl-2, instead of yet another flyout column to the right.
     ALWAYS EXPANDED (display:block unconditionally, no :hover) — NOT hover-triggered:
     hovering one level-2 item to reveal its level-3 children, then moving the mouse DOWN
     toward the next level-2 sibling, would cross out of the hovered <li>'s box the moment
     the mouse passes the now-taller expanded sublist, closing it mid-motion — the same
     diagonal-hover-gap fragility as the flyout case, just vertical instead of horizontal.
     Showing every level-3 list unconditionally removes the fragility entirely. */
  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .ecn-lvl-3 {
    display: block;
    position: static;
    margin: 2px 0 4px;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
  }

  .ecn-lvl-3 li a {
    font-weight: 400 !important;
  }

  .cat-menu-wrap [data-sw-module="ecom-nav"][data-nav-layout="vertical"] .dropdown-submenu>.dropdown-item .ecn-sub-arrow {
    transform: rotate(90deg);
  }
}

/* ============================================================
   HERO SLIDER (module renders; we style)
   ============================================================ */
.hero {
  overflow: hidden;
  border-radius: var(--rad-lg);
}

.hero-owl,
.hero-owl .owl-stage-outer {
  overflow: hidden;
  width: 100%
}

.hero-slide {
  position: relative;
  background: radial-gradient(120% 140% at 80% 10%, var(--hero-3) 0%, var(--hero-2) 40%, var(--hero-1) 100%);
  color: #fff;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 52px 56px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 80% at 78% 50%, rgba(91, 96, 242, .4), transparent 70%);
}

.hero-slide.hero-fullscreen {
  grid-template-columns: 1fr
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 460px
}

.hero-copy .eyebrow {
  color: #9aa4ff;
  display: block;
  margin-bottom: 14px
}

.hero-copy h2 {
  font-size: 46px;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 16px
}

.hero-copy h2 em {
  font-style: normal;
  color: #8f97ff
}

.hero-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 15.5px;
  margin-bottom: 26px;
  max-width: 400px
}

.hero-copy .btn {
  margin-right: 10px
}

.hero-media {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden
}

.hero-media .hero-img {
  max-height: 340px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  /* filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45)) */
}

.hero-media .ph {
  width: 100%;
  height: 300px;
  border-radius: var(--rad)
}

.hero-badge {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

/* owl nav for hero */
.hero-owl .owl-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  display: flex;
  gap: 8px;
  right: 0;
  justify-content: center;
}

.hero-owl .owl-dot span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  display: block;
  transition: .2s
}

.hero-owl .owl-dot.active span {
  background: #fff;
  width: 26px
}

.hero-owl .owl-nav {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px
}

.hero-owl .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  font-size: 18px !important;
}

/* hero side promo column */
.hero-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: stretch
}

.promo-mini {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.promo-mini>* {
  flex: 1 1 0;
  display: flex;
  border-radius: var(--rad);
}

.promo-mini>* .promo-card {
  width: 100%
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  color: #fff;
  padding: 22px 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.promo-card .pc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px
}

.promo-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px
}

.promo-card .pc-off {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 14px
}

.promo-card .pc-link {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  padding-bottom: 2px;
  width: max-content
}

.promo-card .pc-media {
  position: absolute;
  right: 14px;
  bottom: 0;
  width: 120px;
  opacity: .95
}

.promo-card .pc-media .ph {
  width: 110px;
  height: 160px;
  border-radius: 12px
}

.promo-a {
  background: linear-gradient(135deg, #4b2ad9, #8b4bf0)
}

.promo-b {
  background: linear-gradient(135deg, #0e2a52, #1f5fd0)
}

/* ============================================================
   FEATURE BANNER CARDS (card module x3)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  min-height: 150px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 26px 28px;
  transition: transform .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.fc-green {
  background: linear-gradient(120deg, #0c3b2e, #0f6b4f)
}

.fc-slate {
  background: linear-gradient(120deg, #2a2f45, #4b5573)
}

.fc-dark {
  background: linear-gradient(120deg, #111528, #26305c)
}

.feature-card .fc-body {
  position: relative;
  z-index: 2
}

.feature-card .name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px
}

.feature-card .cat-btn {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.feature-card .fc-media {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  z-index: 1
}

.feature-card .fc-media .ph {
  width: 128px;
  height: 124px;
  border-radius: 12px;
  background-repeat: no-repeat;
}

/* ============================================================
   TAB NAV (trending / recommended)
   ============================================================ */
.tab-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 26px
}

.sw-prod-tab-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  grid-column: 1/-1
}

.tab-nav .tab-btn,
.sw-prod-tab-nav .sw-tab-btn {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--soft);
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.tab-nav .tab-btn:hover,
.sw-prod-tab-nav .sw-tab-btn:hover {
  color: var(--ink)
}

.tab-nav .tab-btn.active,
.sw-prod-tab-nav .sw-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(58, 65, 230, .28)
}

.sw-prod-tab-panel {
  display: none;
  min-width: 0;
  grid-column: 1/-1
}

.sw-prod-tab-panel.active {
  display: block
}

/* ============================================================
   PRODUCT SLIDER / GRID (server module classes)
   ============================================================ */
.sw-server-slider {
  position: relative;
  min-width: 0;
  overflow: hidden
}

.sw-prod-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px
}

.sw-prod-slider-header h2,
.sw-prod-slider-header .sw-title {
  font-size: 26px
}

.sw-prod-nav,
.sw-blog-nav {
  display: flex;
  gap: 8px
}

.sw-prod-nav-btn,
.sw-blog-nav-btn,
.slider-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 17px;
  transition: .2s;
}

.sw-prod-nav-btn:hover,
.sw-blog-nav-btn:hover,
.slider-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

/* product grid layout */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px
}

.prod-grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.sw-prod-slide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sw-prod-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.sw-prod-img-wrap {
  position: relative;
  border-radius: var(--rad-sm);
  background: var(--surface);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}

.sw-prod-img {
  /* max-width:82%; */
  /* max-height:82%; */
  /* object-fit:contain; */
  mix-blend-mode: multiply;
  transition: transform .35s;
}

.sw-prod-slide:hover .sw-prod-img {
  transform: scale(1.06)
}

.sw-prod-img-ph {
  width: 82%;
  height: 82%
}

.sw-prod-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 7px;
  letter-spacing: .02em;
  z-index: 2;
}

.sw-prod-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2
}

.sw-prod-tag {
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: max-content;
}

.sw-prod-tag.sale,
.sw-prod-tag.hot {
  background: var(--ink)
}

.sw-prod-img-overlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transform: translateX(12px);
  transition: .28s;
}

.sw-prod-slide:hover .sw-prod-img-overlay {
  opacity: 1;
  transform: none
}

.sw-prod-cart-btn,
.sw-prod-fav-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: .2s;
}

.sw-prod-cart-btn:hover {
  background: var(--primary);
  color: #fff
}

.sw-prod-fav-btn:hover {
  background: var(--sale);
  color: #fff
}

.sw-prod-body {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.sw-prod-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint)
}

.sw-prod-name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: var(--sw-name-lines, 2);
  line-clamp: var(--sw-name-lines, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sw-prod-name:hover {
  color: var(--primary)
}

.sw-prod-prices {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 2px
}

.sw-prod-price {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink)
}

.sw-prod-old {
  font-size: 13px;
  color: var(--faint);
  text-decoration: line-through
}

.sw-prod-stars {
  color: var(--star);
  font-size: 12.5px;
  letter-spacing: 1px
}

.sw-prod-stars .rev {
  color: var(--soft);
  font-size: 11.5px;
  margin-left: 5px;
  letter-spacing: 0
}

.prod-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px
}

.prod-swatches .sw {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px var(--line-2)
}

.prod-swatches .more {
  font-size: 11px;
  color: var(--soft);
  font-weight: 700
}

.prod-stock {
  font-size: 12px;
  color: var(--stock);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px
}

.prod-stock.out {
  color: var(--sale)
}

.prod-stock i {
  font-size: 8px
}

/* ---- data-cols-lg="1" single-column list mode (SmartWeb's built-in convention) ----
   Kept fully independent from .prod-list below — these must not be comma-coupled,
   they mean different things (real column count vs. an opt-in card style). */
.sw-server-slider[data-cols-lg="1"] .prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 26px
}

.prod-list .sw-prod-slide {
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.prod-list .sw-prod-img-wrap {
  width: 78px;
  height: 78px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  margin-bottom: 0;
  border-radius: 12px
}

.prod-list .sw-prod-body {
  flex: 1 1 auto
}

/* ---- .prod-list — independent opt-in variant (data-extra-class="prod-list"), used for
   "Recommended for You": a real 3-column grid (data-cols-lg="3") of compact row-style cards.
   Column count and card style are orthogonal — this class carries its OWN complete rules,
   not tied to data-cols-lg at all. ---- */
.prod-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 26px
}

.prod-list .sw-prod-slide {
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 12px 14px;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.prod-list .sw-prod-slide:hover {
  transform: none;
  box-shadow: none
}

.prod-list .sw-prod-img-wrap {
  width: 78px;
  height: 78px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  margin-bottom: 0;
  border-radius: 12px
}

.prod-list .sw-prod-img-overlay,
.prod-list .sw-prod-discount {
  display: none;
}

.prod-list .sw-prod-body {
  flex: 1 1 auto
}

.prod-list .sw-prod-cart-mini {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex: 0 0 auto;
  background: var(--surface);
  border: none;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: .2s;
}

.prod-list .sw-prod-cart-mini:hover {
  background: var(--primary);
  color: #fff
}

/* ============================================================
   WIDE PROMO BANNERS
   ============================================================ */
.banner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.wide-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
  transition: transform .3s, box-shadow .3s;
}

.wide-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.wb-1 {
  background: radial-gradient(120% 130% at 85% 30%, #3a1d7a, #150c33)
}

.wb-2 {
  background: radial-gradient(120% 130% at 85% 30%, #6d28d9, #2a1359)
}

.wide-banner h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
  max-width: 60%
}

.wide-banner p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  max-width: 52%;
  margin-bottom: 16px
}

.wide-banner .pc-link {
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  padding-bottom: 2px;
  width: max-content
}

.wide-banner .wb-media {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px
}

.wide-banner .wb-media .ph {
  width: 190px;
  height: 150px;
  border-radius: 14px
}

/* ============================================================
   BEST DEALS
   ============================================================ */
.deals-wrap {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 20px;
  align-items: stretch
}

.deals-wrap>* {
  min-width: 0
}

.hot-deals {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  color: #fff;
  height: 100%;
  background: radial-gradient(120% 120% at 30% 20%, var(--plum-2), var(--plum-1) 45%, #3b1a86);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.hot-deals .eyebrow {
  color: rgba(255, 255, 255, .8);
  display: block;
  margin-bottom: 12px
}

.hot-deals h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px
}

.hot-deals p {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  margin-bottom: 20px
}

.hot-deals .hd-media {
  margin-top: auto;
  position: relative
}

.hot-deals .hd-media .ph {
  width: 100%;
  height: 210px;
  border-radius: 16px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .14) 0 12px, rgba(255, 255, 255, .08) 12px 24px)
}

.hot-deals .hd-media .ph::after {
  color: rgba(255, 255, 255, .7)
}

.deals-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px
}

.deals-head .hurry {
  font-size: 13px;
  color: var(--soft);
  font-weight: 600
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

/* ============================================================
   COLLECTION LIST (circular categories)
   ============================================================ */
.collection-row {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.collection-item {
  flex: 1;
  text-align: center;
  cursor: pointer
}

.collection-ph {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  margin: 0 auto 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: .3s;
}

.collection-item:hover .collection-ph {
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(58, 65, 230, .18);
  transform: translateY(-4px)
}

.collection-ph .ph {
  width: 74%;
  height: 74%;
  border-radius: 999px
}

.collection-item .name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink)
}

.collection-item .count {
  font-size: 12.5px;
  color: var(--soft);
  margin-top: 2px
}

/* ============================================================
   BRAND STRIP (brand-slider)
   ============================================================ */
.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.brand-slide,
.brand-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.brand-logo {
  max-height: 34px;
  filter: grayscale(1);
  opacity: .55;
  transition: .3s
}

.brand-slide:hover .brand-logo,
.brand-item:hover .brand-logo {
  filter: none;
  opacity: 1
}

.brand-ph {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  color: #c3c8d8;
  transition: .3s;
  text-transform: uppercase;
}

.brand-slide:hover .brand-ph,
.brand-item:hover .brand-ph {
  color: var(--ink)
}

/* ============================================================
   BLOG SLIDER
   ============================================================ */
.sw-blog-slider {
  position: relative
}

.sw-blog-slider-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-direction: column
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.sw-blog-slide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.sw-blog-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.sw-blog-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface)
}

.sw-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sw-blog-img-ph {
  width: 100%;
  height: 100%;
  border-radius: 0
}

.sw-blog-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.sw-blog-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.sw-blog-meta i {
  font-size: 12px
}

.sw-blog-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: var(--sw-blog-name-lines, 2);
  line-clamp: var(--sw-blog-name-lines, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sw-blog-slide:hover .sw-blog-title {
  color: var(--primary)
}

.sw-blog-excerpt {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: var(--sw-blog-excerpt-lines, 2);
  line-clamp: var(--sw-blog-excerpt-lines, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sw-blog-readmore {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px
}

.sw-blog-readmore:hover {
  color: var(--primary)
}

.sw-blog-slider .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px
}

.sw-blog-slider .owl-dot span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line-2);
  display: block;
  transition: .2s
}

.sw-blog-slider .owl-dot.active span {
  background: var(--primary);
  width: 26px
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0e1120;
  color: #aeb4c6;
}

.footer-top {
  padding: 64px 0 44px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px
}

.footer-brand .brand-name {
  color: #fff
}

.footer-about {
  font-size: 14px;
  color: #8b92a8;
  margin: 18px 0 20px;
  line-height: 1.7;
  max-width: 320px
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .01em
}

.footer-list li {
  margin-bottom: 11px
}

.footer-list a {
  font-size: 14px;
  color: #8b92a8;
  transition: .2s
}

.footer-list a:hover {
  color: #fff
}

.footer-news p {
  font-size: 14px;
  color: #8b92a8;
  margin-bottom: 16px;
  line-height: 1.6
}

.news-form {
  display: flex;
  gap: 8px
}

.news-form input {
  flex: 1 1 auto;
  border: 1px solid #262b40;
  background: #161a2c;
  color: #fff;
  border-radius: 11px;
  padding: 12px 15px;
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.news-form input::placeholder {
  color: #616a86
}

.news-form input:focus {
  border-color: var(--primary)
}

.news-form .btn {
  padding: .72rem 1.2rem;
  white-space: nowrap
}

.soc-row {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #161a2c;
  color: #c3c8d8;
  display: grid;
  place-items: center;
  transition: .2s;
}

.soc-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px)
}

.soc-btn svg {
  width: 18px;
  height: 18px
}

.footer-bottom {
  border-top: 1px solid #1c2136;
  padding: 20px 0
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom p {
  font-size: 13px;
  color: #7a819a
}

.footer-tools {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-tools select {
  background: #161a2c;
  border: 1px solid #262b40;
  color: #c3c8d8;
  border-radius: 9px;
  padding: 7px 12px;
  font-size: 13px;
  font-family: var(--ff-body);
  outline: none
}

.pay-row {
  display: flex;
  gap: 8px;
  align-items: center
}

.pay-chip {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
  color: #1a1f33;
  letter-spacing: .02em
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .hero-row {
    grid-template-columns: 1fr
  }

  .promo-mini {
    flex-direction: row
  }

  .prod-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .deals-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .prod-list,
  .sw-server-slider[data-cols-lg="1"] .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:920px) {
  .feature-row {
    grid-template-columns: 1fr
  }

  .banner-row {
    grid-template-columns: 1fr
  }

  .deals-wrap {
    grid-template-columns: 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px
  }

  .hero-copy {
    max-width: none;
    margin: 0 auto
  }
  .hero-copy .d-flex.flex-wrap {
      justify-content: center !important;
  }
  .hero-media {
    display: none
  }

  .collection-row {
    overflow-x: auto;
    padding-bottom: 8px
  }

  .promo-card .pc-media {
    width: 69px;
    height: 126px;
    right: 0;
    bottom: 0;
  }
    .promo-card h3 {
        max-width: 90px;
    }
  .promo-card .pc-media .ph {
    background-size: contain !important;
    width: 100%;
    height: 100%;
    background-position: top right !important;
  }
}

@media (max-width:680px) {
  .header-main .container {
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .search-wrap {
    order: 3;
    flex-basis: 100%
  }

  .prod-grid,
  .deals-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .prod-list,
  .sw-server-slider[data-cols-lg="1"] .prod-grid {
    grid-template-columns: 1fr
  }

  .header-nav .container {
    flex-wrap: wrap;
    gap: 12px
  }

  .main-nav {
    order: 3;
    flex-basis: 100%
  }

  /* dynamic-menu's own <nav class="dynamic-menu main-nav"> shares ".main-nav" with the
     old rule above (meant for the pre-dynamic-menu single horizontal nav placeholder) —
     override it here: on mobile, only its small .sw-nav-toggler icon is visible (its
     horizontal content is desktop-only), so it should sit INLINE next to .cat-menu-wrap,
     not wrap to its own full-width row. */
  [data-sw-server="dynamic-menu"].main-nav {
    order: 0;
    flex: 0 0 auto;
  }

  /* .all-cats + the dynamic-menu toggler sit side by side — category trigger gets most
     of the row, the content-menu toggler stays compact next to it. */
  .cat-menu-wrap {
    flex: 1 1 auto;
    max-width: 90%;
  }

  .cat-menu-wrap .all-cats {
    width: 100%;
    justify-content: center;
  }

  /* Style the dynamic-menu's mobile toggler to match .all-cats (same gradient/radius)
     instead of the plain grey default — reads as its visual "twin" action button. */
  [data-sw-server="dynamic-menu"] .sw-nav-toggler {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(58, 65, 230, .28);
    justify-content: center !important;
  }

  [data-sw-server="dynamic-menu"] .sw-nav-toggler .navbar-toggler-icon,
  [data-sw-server="dynamic-menu"] .sw-nav-toggler .navbar-toggler-icon::before,
  [data-sw-server="dynamic-menu"] .sw-nav-toggler .navbar-toggler-icon::after {
    background: #fff;
  }

  .nav-promo {
    display: none
  }

  .sec-head h2 {
    font-size: 24px
  }

  .hero-copy h2 {
    font-size: 34px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center
  }
}

@media (max-width:420px) {
  .head-actions {
    gap: 6px;
  }
}

/* ============================================================
   PAGE HEADER / BREADCRUMB
   ============================================================ */
.page-hero{background:var(--surface);padding:44px 0 40px;border-bottom:1px solid var(--line)}
.page-hero h1{font-size:36px;margin-bottom:10px}
.breadcrumb-row{display:flex;align-items:center;gap:8px;font-size:13.5px;color:var(--soft);font-weight:600}
.breadcrumb-row a{color:var(--soft)}
.breadcrumb-row a:hover{color:var(--primary)}
.breadcrumb-row i{font-size:10px;color:var(--faint)}
.breadcrumb-row .current{color:var(--ink)}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:40px;align-items:start}
.contact-info-list{display:flex;flex-direction:column;gap:16px;margin-bottom:28px}
.contact-info-card{
  display:flex;gap:16px;align-items:flex-start;background:var(--surface);
  border-radius:var(--rad);padding:20px 22px;
}
.contact-info-card .ci-icon{
  width:44px;height:44px;border-radius:12px;background:var(--primary-soft);color:var(--primary);
  display:grid;place-items:center;font-size:19px;flex:0 0 auto;
}
.contact-info-card h4{font-size:15px;margin-bottom:4px}
.contact-info-card p{font-size:13.5px;color:var(--soft);line-height:1.6}
.contact-map{border-radius:var(--rad);overflow:hidden;min-height:220px}
.contact-map .ph{width:100%;height:220px;border-radius:var(--rad)}

.contact-form-card{background:#fff;border:1px solid var(--line);border-radius:var(--rad-lg);padding:36px 38px;box-shadow:var(--shadow-sm)}
.contact-form-card h3{font-size:24px;margin-bottom:8px}
.contact-form-card .sub{color:var(--soft);font-size:14px;margin-bottom:26px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-field{display:flex;flex-direction:column;gap:7px}
.form-field label{font-size:13px;font-weight:700;color:var(--ink)}
.form-field input,.form-field textarea{
  border:1.6px solid var(--line-2);border-radius:11px;padding:12px 15px;font-family:var(--ff-body);
  font-size:14px;color:var(--ink);outline:none;transition:border-color .2s, box-shadow .2s;resize:vertical;
}
.form-field input::placeholder,.form-field textarea::placeholder{color:var(--faint)}
.form-field input:focus,.form-field textarea:focus{border-color:var(--primary);box-shadow:0 0 0 4px var(--primary-soft)}
.contact-form-card .btn{margin-top:6px}
[data-sw-status]{display:block;margin-top:14px;font-size:13.5px;font-weight:600}

/* FAQ accordion */
.faq-list{display:flex;flex-direction:column;gap:12px;max-width:760px;margin:0 auto}
.faq-item{border:1px solid var(--line);border-radius:14px;overflow:hidden;transition:border-color .2s}
.faq-item.open{border-color:var(--primary)}
.faq-q{
  width:100%;text-align:left;background:#fff;border:none;padding:18px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;cursor:pointer;
  font-family:var(--ff-display);font-weight:600;font-size:15.5px;color:var(--ink);
}
.faq-item.open .faq-q{color:var(--primary)}
.faq-icon{
  width:28px;height:28px;border-radius:999px;background:var(--surface);color:var(--ink);
  display:grid;place-items:center;flex:0 0 auto;font-size:13px;transition:transform .25s, background .2s, color .2s;
}
.faq-item.open .faq-icon{background:var(--primary);color:#fff;transform:rotate(45deg)}
.faq-a{padding:0 22px 18px;font-size:14px;color:var(--soft);line-height:1.7}

@media (max-width:920px){
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .contact-form-card{padding:28px}
}

