:root {
  --brand-red: #E11D2B;
  --brand-red-dark: #B8141F;
  --brand-red-soft: #FEF1F2;
  --brand-green: #16A34A;
  --brand-green-dark: #15803D;
  --brand-green-soft: #F0FDF4;
  --brand-accent: #0F172A;
  --brand-accent-2: #1E293B;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-soft: #F1F5F9;
  --bg: #FAFAF9;
  --bg-card: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-cream: #FBFAF7;
  --success: #16A34A;
  --warning: #EA580C;
  --star: #F59E0B;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;
  --radius-sm: 2px;
  --radius: 3px;
  --radius-lg: 4px;
  --radius-pill: 3px;
  --shadow-xs: 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,.05);
  --shadow: 0 4px 20px rgba(15,23,42,.07);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.12);
  --shadow-red: 0 10px 30px rgba(225,29,43,.25);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .4s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html, body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.005em;
}

a { color: var(--text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-red); }

img { max-width: 100%; height: auto; display: block; }

.container-xxl { max-width: 1400px; }

.bg-light-gray { background: var(--bg-soft); }

::selection { background: var(--brand-red); color: #fff; }

.top-bar {
  background: var(--brand-accent);
  color: rgba(255,255,255,.75);
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 0;
}
.top-bar .text-muted { color: rgba(255,255,255,.7) !important; }
.top-bar-promo {
  color: #fff;
  background: var(--brand-red);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 11px;
  transition: all var(--transition);
}
.top-bar-promo:hover { color: #fff; background: var(--brand-red-dark); transform: translateY(-1px); }

.sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 4px 18px rgba(15,23,42,.06);
}
.main-header {
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid var(--border-soft);
}
.logo { gap: 12px; color: var(--brand-accent); padding-left: 28px; }
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.search-form {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.search-form .form-control {
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0 60px 0 22px;
  font-size: 14px;
  background: var(--bg-soft);
  transition: all var(--transition);
}
.search-form .form-control:focus {
  border-color: var(--brand-red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(225,29,43,.1);
}
.search-btn {
  position: absolute;
  top: 4px; right: 4px;
  width: 50px; height: 40px;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--brand-accent); }

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-accent);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.header-link:hover { background: var(--bg-soft); color: var(--brand-accent); }
.header-icon {
  font-size: 24px;
  color: var(--brand-accent);
  transition: color var(--transition);
}
.header-link:hover .header-icon { color: var(--brand-red); }
.header-link-text { display: flex; flex-direction: column; line-height: 1.25; }
.header-link-text small { font-size: 11px; color: var(--text-muted); }
.header-link-text strong { font-size: 13px; font-weight: 700; }

.header-cart .cart-count {
  position: absolute;
  top: -4px; left: 16px;
  background: var(--brand-red);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: var(--shadow-red);
}

.main-nav {
  background: #fff;
  color: var(--brand-accent);
  padding: 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 90;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.nav-item { position: relative; }

.nav-link-main {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.1px;
  border: 0;
  border-right: 0;
  border-radius: var(--radius-sm);
  margin: 6px 2px;
  text-transform: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  transition: all var(--transition);
}
.nav-link-main:hover { background: var(--bg-soft); color: var(--brand-red); }
.nav-link-main:focus-visible { outline: 2px solid var(--brand-red); outline-offset: -2px; }
.nav-categories {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
}
.nav-categories:hover { background: var(--brand-red); color: #fff; }
.nav-categories[aria-expanded="true"] { background: var(--brand-red); color: #fff; }

.nav-chevron {
  font-size: 9px;
  margin-left: 6px;
  opacity: .65;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown.open .nav-chevron,
.nav-categories[aria-expanded="true"] .nav-chevron {
  transform: rotate(-180deg);
  opacity: 1;
}

.navbar-toggler { padding: 14px 0; border: 0; background: transparent; font-weight: 700; color: var(--brand-accent); }
.navbar-toggler:focus { box-shadow: none; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 6px;
  min-width: 270px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(15,23,42,.12), 0 2px 6px rgba(15,23,42,.05);
  padding: 8px 0;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transform-origin: top left;
  transition:
    opacity .22s cubic-bezier(.4,0,.2,1),
    transform .22s cubic-bezier(.4,0,.2,1),
    visibility 0s .22s;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity .22s cubic-bezier(.4,0,.2,1),
    transform .22s cubic-bezier(.4,0,.2,1),
    visibility 0s;
}

.nav-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    padding-left .18s ease;
  text-decoration: none;
  position: relative;
  border-radius: 0;
}
.nav-dropdown .dropdown-item i {
  color: var(--text-muted);
  font-size: 12px;
  width: 14px;
  transition: color .18s ease, transform .2s ease;
}
.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item.active {
  background: var(--bg-soft);
  color: var(--brand-red);
  border-left-color: var(--brand-red);
  padding-left: 22px;
}
.nav-dropdown .dropdown-item.active i,
.nav-dropdown .dropdown-item:hover i {
  color: var(--brand-red);
  transform: scale(1.1);
}

.nav-item-dropdown:hover .nav-dropdown .dropdown-item,
.nav-item-dropdown.open .nav-dropdown .dropdown-item {
  animation: dropdownItemIn .24s cubic-bezier(.4,0,.2,1) both;
}
.nav-item-dropdown:hover .nav-dropdown .dropdown-item:nth-child(1),
.nav-item-dropdown.open .nav-dropdown .dropdown-item:nth-child(1) { animation-delay: 0ms; }
.nav-item-dropdown:hover .nav-dropdown .dropdown-item:nth-child(2),
.nav-item-dropdown.open .nav-dropdown .dropdown-item:nth-child(2) { animation-delay: 25ms; }
.nav-item-dropdown:hover .nav-dropdown .dropdown-item:nth-child(3),
.nav-item-dropdown.open .nav-dropdown .dropdown-item:nth-child(3) { animation-delay: 50ms; }
.nav-item-dropdown:hover .nav-dropdown .dropdown-item:nth-child(4),
.nav-item-dropdown.open .nav-dropdown .dropdown-item:nth-child(4) { animation-delay: 75ms; }
.nav-item-dropdown:hover .nav-dropdown .dropdown-item:nth-child(5),
.nav-item-dropdown.open .nav-dropdown .dropdown-item:nth-child(5) { animation-delay: 100ms; }
.nav-item-dropdown:hover .nav-dropdown .dropdown-item:nth-child(n+6),
.nav-item-dropdown.open .nav-dropdown .dropdown-item:nth-child(n+6) { animation-delay: 120ms; }

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

.nav-dropdown-wide {
  min-width: 780px;
  left: auto;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  padding: 22px 26px;
  border-radius: var(--radius);
}
.nav-dropdown-wide::before {
  left: auto;
  right: 40px;
}
.brand-group { min-width: 0; }
.brand-group-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-red);
}
.brand-link {
  display: block;
  padding: 5px 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .15s ease, padding-left .2s cubic-bezier(.4,0,.2,1);
  position: relative;
  font-weight: 500;
}
.brand-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transform: translateY(-50%);
  transition: width .22s cubic-bezier(.4,0,.2,1);
}
.brand-link:hover {
  color: var(--brand-red);
  padding-left: 12px;
}
.brand-link:hover::before { width: 8px; }

.nav-item-dropdown:hover .nav-dropdown-wide .brand-link,
.nav-item-dropdown.open .nav-dropdown-wide .brand-link {
  animation: dropdownItemIn .26s cubic-bezier(.4,0,.2,1) both;
}
.nav-dropdown-wide .brand-group:nth-child(1) .brand-link { animation-delay: 0ms; }
.nav-dropdown-wide .brand-group:nth-child(2) .brand-link { animation-delay: 50ms; }
.nav-dropdown-wide .brand-group:nth-child(3) .brand-link { animation-delay: 100ms; }
.nav-dropdown-wide .brand-group:nth-child(4) .brand-link { animation-delay: 150ms; }

.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.4);
  backdrop-filter: blur(2px);
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s .3s;
}
.mega-backdrop.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility 0s;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--brand-red);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(15,23,42,.16), 0 4px 12px rgba(15,23,42,.06);
  z-index: 88;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity .3s cubic-bezier(.4,0,.2,1),
    transform .3s cubic-bezier(.4,0,.2,1),
    visibility 0s .3s;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity .3s cubic-bezier(.4,0,.2,1),
    transform .3s cubic-bezier(.4,0,.2,1),
    visibility 0s;
}

.mega-menu-inner {
  display: flex;
  min-height: 500px;
  padding: 0;
}

.mega-sidebar {
  flex: 0 0 300px;
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  max-height: 78vh;
  overflow-y: auto;
}
.mega-sidebar::-webkit-scrollbar { width: 6px; }
.mega-sidebar::-webkit-scrollbar-track { background: transparent; }
.mega-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.mega-sidebar::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

.mega-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 20px;
  background: transparent;
  border: 0;
  border-left: 3px solid transparent;
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.1px;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
  position: relative;
  flex-shrink: 0;
}

.mega-cat-btn .mega-cat-icon {
  width: 18px;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color .2s ease, transform .22s cubic-bezier(.4,0,.2,1);
}

.mega-cat-btn .mega-cat-label { flex: 1; line-height: 1.3; }

.mega-cat-btn .mega-cat-chevron {
  font-size: 9px;
  color: var(--text-light);
  transition: transform .22s cubic-bezier(.4,0,.2,1), color .2s ease;
}

.mega-cat-btn:hover,
.mega-cat-btn.active {
  background: var(--bg-soft);
  color: var(--brand-red);
  border-left-color: var(--brand-red);
}
.mega-cat-btn:hover .mega-cat-icon,
.mega-cat-btn.active .mega-cat-icon {
  color: var(--brand-red);
  transform: scale(1.1);
}
.mega-cat-btn:hover .mega-cat-chevron,
.mega-cat-btn.active .mega-cat-chevron {
  color: var(--brand-red);
  transform: translateX(5px);
}
.mega-cat-btn:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: -2px;
}

.mega-content {
  flex: 1;
  position: relative;
  padding: 30px 34px;
  background: linear-gradient(180deg, #FCFCFB 0%, #F9F9F7 100%);
  max-height: 78vh;
  overflow-y: auto;
  border-bottom-right-radius: var(--radius);
}
.mega-content::-webkit-scrollbar { width: 6px; }
.mega-content::-webkit-scrollbar-track { background: transparent; }
.mega-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.mega-content::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

.mega-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.mega-panel.active { display: grid; }
.mega-panel.activating { animation: megaPanelIn .32s cubic-bezier(.4,0,.2,1) both; }

@keyframes megaPanelIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.mega-panel.activating .mega-col {
  animation: megaColIn .38s cubic-bezier(.4,0,.2,1) both;
}
.mega-panel.activating .mega-col:nth-child(1) { animation-delay: 50ms; }
.mega-panel.activating .mega-col:nth-child(2) { animation-delay: 100ms; }
.mega-panel.activating .mega-col:nth-child(3) { animation-delay: 150ms; }
.mega-panel.activating .mega-col:nth-child(4) { animation-delay: 200ms; }

@keyframes megaColIn {
  from { opacity: 0; transform: translateX(18px); filter: blur(2px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.mega-col { min-width: 0; }

.mega-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-accent);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-red);
  text-transform: uppercase;
  letter-spacing: .6px;
  display: block;
  line-height: 1.3;
}
.mega-col-title + .mega-col-list + .mega-col-title { margin-top: 22px; }

.mega-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-col-list li { margin-top: 5px; }
.mega-col-list li:first-child { margin-top: 0; }
.mega-col-list a {
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  padding: 3px 0;
  display: inline-block;
  text-decoration: none;
  transition: color .15s ease, padding-left .2s cubic-bezier(.4,0,.2,1);
  position: relative;
  font-weight: 500;
}
.mega-col-list a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transform: translateY(-50%);
  transition: width .22s cubic-bezier(.4,0,.2,1);
}
.mega-col-list a:hover {
  color: var(--brand-red);
  padding-left: 14px;
}
.mega-col-list a:hover::before { width: 10px; }

.hero-section {
  padding: 0;
  margin: 0;
  width: 100%;
  background: #0F172A;
}
.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slider .carousel-inner { width: 100%; }
.hero-slider .carousel-item { transition: transform .7s cubic-bezier(.4,0,.2,1), opacity .5s ease; }
.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-slider a { display: block; overflow: hidden; }

.hero-arrow {
  width: 56px;
  height: 56px;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  transition:
    background var(--transition),
    color var(--transition),
    width var(--transition),
    box-shadow var(--transition);
  border-radius: var(--radius);
  z-index: 6;
}
.hero-arrow:hover {
  background: var(--brand-red);
  color: #fff;
  width: 66px;
  box-shadow: var(--shadow-red);
}
.hero-arrow.carousel-control-prev { left: 26px; }
.hero-arrow.carousel-control-next { right: 26px; }
.hero-arrow .carousel-control-prev-icon,
.hero-arrow .carousel-control-next-icon { display: none; }

.hero-dots {
  bottom: 22px;
  margin: 0;
  gap: 8px;
  justify-content: center;
  z-index: 6;
}
.hero-dots [data-bs-target] {
  width: 30px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.45);
  opacity: 1;
  border: 0;
  transition: background .25s ease, width .25s ease;
}
.hero-dots [data-bs-target]:hover { background: rgba(255,255,255,.8); }
.hero-dots .active {
  background: var(--brand-red);
  width: 50px;
}

.benefits-bar {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 0;
  margin: 40px 0;
  box-shadow: var(--shadow-sm);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
}
.benefit-icon {
  font-size: 26px;
  color: var(--brand-red);
  background: var(--brand-red-soft);
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 2px;
}
.benefit-item small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 0;
  border-bottom: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-accent);
  margin: 0;
  text-transform: none;
  letter-spacing: -1px;
  position: relative;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 28px;
  background: var(--brand-red);
  margin-right: 14px;
  vertical-align: middle;
  border-radius: var(--radius-pill);
}
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-accent);
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  transition: all var(--transition);
}
.section-link:hover { background: var(--brand-red); color: #fff; gap: 10px; }

.product-card {
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-discount {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  z-index: 2;
  letter-spacing: .2px;
  box-shadow: var(--shadow-red);
}
.product-discount.discount-green {
  background: var(--brand-green);
  box-shadow: 0 8px 20px rgba(22,163,74,.25);
}

.badge-free {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brand-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(22,163,74,.25);
}

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all var(--transition);
}
.product-wishlist:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  transform: scale(1.1);
}

.product-img-link {
  display: block;
  padding: 22px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border-soft);
}
.product-brand {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-brand.brand-festool { color: var(--brand-green); }
.product-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -.1px;
}
.product-title a { color: var(--brand-accent); }
.product-title a:hover { color: var(--brand-red); }

.product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
  color: var(--star);
  font-size: 11px;
}
.product-rating .fa-regular { color: var(--border); }
.product-rating small { color: var(--text-muted); margin-left: 4px; font-weight: 600; }

.product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 2px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
  letter-spacing: -.5px;
}
.price-old {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-net {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.product-stock {
  font-size: 11px;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-weight: 600;
}
.product-stock.in-stock { color: var(--success); background: var(--brand-green-soft); }
.product-stock.delay { color: var(--warning); background: #FFF7ED; }

.btn-add-cart {
  background: var(--brand-accent);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-top: auto;
  transition: all var(--transition);
}
.btn-add-cart:hover {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.category-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 18px;
  height: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.category-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.category-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 14px;
  transition: transform var(--transition-slow);
}
.category-card:hover img { transform: scale(1.05); }
.category-title {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-accent);
  padding: 0 12px;
  letter-spacing: -.2px;
}
.category-card:hover .category-title { color: var(--brand-red); }

.sidebar-promo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow);
}

.sidebar-inner { position: relative; z-index: 1; }
.sidebar-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .85;
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -.5px;
}
.btn-sidebar {
  background: #fff;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}
.btn-sidebar:hover {
  background: var(--brand-accent);
  color: #fff;
  gap: 10px;
  transform: translateY(-2px);
}
.btn-sidebar-light { background: var(--brand-red); color: #fff; }
.btn-sidebar-light:hover { background: #fff; color: var(--brand-red); }

.packout-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-accent);
  height: 100%;
  min-height: 440px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.packout-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.packout-main {
  display: block;
  position: relative;
  flex: 1;
  color: #fff;
  min-height: 280px;
  overflow: hidden;
}
.packout-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  transition: transform var(--transition-slow);
}
.packout-main:hover .packout-bg { transform: scale(1.05); }
.packout-content {
  position: relative;
  z-index: 1;
  padding: 44px 44px 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 100%);
  min-height: 280px;
}
.packout-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #fff;
  letter-spacing: -1.5px;
}
.packout-cta {
  width: 56px; height: 56px;
  background: var(--brand-red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}
.packout-main:hover .packout-cta {
  background: #fff;
  color: var(--brand-red);
  transform: scale(1.15) rotate(-10deg);
}
.packout-info {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--brand-accent);
  padding: 22px 44px;
  margin-top: auto;
}
.packout-info strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}
.packout-info small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.packout-info .btn {
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--brand-accent);
  background: transparent;
}
.packout-info .btn:hover { background: var(--brand-accent); color: #fff; border-color: var(--brand-accent); }

.brands-grid { justify-content: center; }
.brand-logo {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.brand-logo:hover {
  border-color: var(--brand-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.brand-logo img {
  max-height: 52px;
  width: auto;
  filter: grayscale(100%) opacity(.6);
  transition: filter var(--transition);
}
.brand-logo:hover img { filter: grayscale(0) opacity(1); }

.blog-card {
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.blog-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-img-link { display: block; overflow: hidden; }
.blog-img-link img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-img-link img { transform: scale(1.08); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--brand-accent);
  letter-spacing: -.5px;
}
.blog-title a { color: var(--brand-accent); }
.blog-title a:hover { color: var(--brand-red); }
.blog-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-red);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  transition: gap var(--transition);
}
.blog-readmore:hover { color: var(--brand-red-dark); gap: 10px; }

.newsletter-section {
  background:
    radial-gradient(circle at 10% 50%, rgba(225,29,43,.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(225,29,43,.2) 0%, transparent 40%),
    linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: #fff;
  padding: 60px 0;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -1px;
  position: relative;
}
.newsletter-sub {
  margin: 8px 0 0;
  opacity: .8;
  font-size: 15px;
  position: relative;
}
.newsletter-sub strong { color: var(--brand-red); }
.newsletter-form {
  position: relative;
  background: rgba(255,255,255,.1);
  padding: 6px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
}
.newsletter-form .form-control {
  border: 0;
  background: transparent;
  height: 48px;
  font-size: 14px;
  padding: 0 18px;
  color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form .form-control:focus {
  box-shadow: none;
  background: transparent;
  color: #fff;
}
.btn-newsletter {
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: 0 28px;
  font-size: 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}
.btn-newsletter:hover {
  background: #fff;
  color: var(--brand-red);
  transform: translateY(-1px);
}

.main-footer {
  background: var(--brand-accent);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
  font-size: 13px;
}
.footer-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-title::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--brand-red);
  border-radius: var(--radius-pill);
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; color: rgba(255,255,255,.7); }
.footer-list li strong { color: #fff; font-weight: 700; }
.footer-list small { color: rgba(255,255,255,.5); font-size: 12px; }
.footer-list a { color: rgba(255,255,255,.7); }
.footer-list a:hover { color: var(--brand-red); }
.footer-contact i { color: var(--brand-red); width: 16px; }

.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.social-links a:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.footer-copyright {
  background: rgba(0,0,0,.3);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.05);
}
.payment-methods { display: flex; gap: 6px; }
.payment-methods img { height: 26px; width: auto; border-radius: 4px; }

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-red);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--brand-red-dark);
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .hero-arrow { width: 46px; height: 46px; font-size: 16px; }
  .hero-arrow:hover { width: 52px; }
  .hero-arrow.carousel-control-prev { left: 14px; }
  .hero-arrow.carousel-control-next { right: 14px; }
  .packout-title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .newsletter-title { font-size: 24px; }
  .benefits-bar { padding: 18px 0; }
  .logo-img { height: 40px; }
}

@media (max-width: 767px) {
  .hero-arrow { width: 38px; height: 38px; font-size: 13px; }
  .hero-dots { bottom: 12px; }
  .hero-dots [data-bs-target] { width: 22px; }
  .hero-dots .active { width: 36px; }
  .product-title { font-size: 12px; min-height: 48px; }
  .price-current { font-size: 18px; }
  .packout-content { padding: 24px; }
  .packout-title { font-size: 24px; }
  .section-title { font-size: 20px; }
  .section-header { flex-wrap: wrap; gap: 10px; }
  .section-title::before { height: 22px; }
  .newsletter-form { border-radius: var(--radius); }
  .newsletter-form > * { width: 100%; }
  .newsletter-form .btn { margin-top: 6px; border-radius: var(--radius); }
}

.product-carousel { position: relative; }
.product-carousel .carousel-item { transition: transform .6s cubic-bezier(.4,0,.2,1); }
.product-carousel-btn {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-accent);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.product-carousel-prev { left: -20px; }
.product-carousel-next { right: -20px; }
.product-carousel-btn:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-red);
}
.product-carousel-dots {
  position: static;
  margin: 22px 0 0;
  justify-content: center;
  gap: 8px;
}
.product-carousel-dots [data-bs-target] {
  width: 28px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--border);
  opacity: 1;
  border: 0;
  margin: 0;
  transition: background .25s ease, width .25s ease;
}
.product-carousel-dots .active {
  background: var(--brand-red);
  width: 46px;
}
@media (max-width: 767px) {
  .product-carousel-prev { left: 0; }
  .product-carousel-next { right: 0; }
  .product-carousel-btn { width: 36px; height: 36px; font-size: 12px; }
}

.selector-banner {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 380px;
  padding: 48px 52px;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.selector-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.selector-banner-tires {
  background:
    radial-gradient(circle at 80% 50%, rgba(225,29,43,.55) 0%, transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(225,29,43,.25) 0%, transparent 40%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.025) 0 22px, transparent 22px 44px),
    linear-gradient(135deg, #0a0d14 0%, #151a24 55%, #080b11 100%);
}
.selector-banner-chains {
  background:
    radial-gradient(circle at 25% 55%, rgba(225,29,43,.4) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(148,163,184,.12) 0%, transparent 45%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 32px),
    linear-gradient(135deg, #15192b 0%, #202a3f 50%, #0d1220 100%);
}
.selector-banner-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(225,29,43,.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.selector-banner-content {
  position: relative;
  z-index: 3;
  max-width: 60%;
}
.selector-kicker {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-red);
  backdrop-filter: blur(10px);
}
.selector-title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: .95;
  color: #fff;
  margin: 0 0 18px;
  text-transform: none;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.82) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.selector-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-bottom: 26px;
}
.selector-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--brand-accent);
  padding: 13px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.selector-banner:hover .selector-btn {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-red);
  gap: 4px;
}
.selector-banner-visual {
  position: absolute;
  right: -50px;
  bottom: -80px;
  z-index: 1;
  opacity: .1;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition);
}
.selector-banner:hover .selector-banner-visual {
  transform: rotate(14deg) scale(1.08);
  opacity: .16;
}
.selector-banner-tires .selector-icon-bg {
  font-size: 360px;
  color: #fff;
  transform: rotate(-12deg);
  display: block;
  filter: drop-shadow(0 20px 40px rgba(225,29,43,.3));
}
.selector-banner-chains .selector-icon-bg {
  font-size: 300px;
  color: #fff;
  transform: rotate(-28deg);
  display: block;
  filter: drop-shadow(0 20px 40px rgba(225,29,43,.2));
}

@media (max-width: 767px) {
  .selector-banner { padding: 34px 30px; min-height: 300px; }
  .selector-title { font-size: 34px; }
  .selector-desc { font-size: 13px; }
  .selector-banner-content { max-width: 70%; }
  .selector-banner-tires .selector-icon-bg { font-size: 240px; }
  .selector-banner-chains .selector-icon-bg { font-size: 220px; }
}

.footer-brand-accent { color: var(--brand-red); }
.footer-identity li { font-size: 12px; line-height: 1.45; }
.footer-title-sm {
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.footer-badges {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}
.footer-payment-row, .footer-anpc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-pay-img {
  max-height: 48px;
  max-width: 100%;
  background: #fff;
  padding: 8px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.footer-pay-img-sm { max-height: 40px; }
.footer-anpc-img {
  max-height: 56px;
  max-width: 100%;
  background: #fff;
  padding: 5px 10px;
  border-radius: var(--radius);
  transition: transform var(--transition);
  box-shadow: var(--shadow-xs);
}
.footer-anpc-row a:hover .footer-anpc-img { transform: translateY(-3px); }
.footer-domain { color: rgba(255,255,255,.5); font-family: 'Space Grotesk', monospace; letter-spacing: .3px; }

.promo-banner {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}
.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.promo-banner:hover img {
  transform: scale(1.04);
}

.sidebar-red {
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.2) 0%, transparent 50%),
    radial-gradient(circle at 10% 95%, rgba(0,0,0,.3) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 1px, transparent 1px 44px),
    linear-gradient(165deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
}
.sidebar-dark {
  background:
    radial-gradient(circle at 30% 5%, rgba(225,29,43,.4) 0%, transparent 55%),
    radial-gradient(circle at 90% 95%, rgba(225,29,43,.18) 0%, transparent 40%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 28px, transparent 28px 56px),
    linear-gradient(165deg, var(--brand-accent-2) 0%, var(--brand-accent) 100%);
}
.sidebar-green {
  background:
    radial-gradient(circle at 82% 5%, rgba(255,255,255,.22) 0%, transparent 55%),
    radial-gradient(circle at 5% 85%, rgba(0,0,0,.2) 0%, transparent 50%),
    repeating-linear-gradient(30deg, rgba(255,255,255,.045) 0 1px, transparent 1px 54px),
    linear-gradient(165deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
}
.sidebar-decor {
  position: absolute;
  right: -45px;
  bottom: -55px;
  font-size: 260px;
  color: #fff;
  opacity: .08;
  transform: rotate(-18deg);
  z-index: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition);
  line-height: 1;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.2));
}
.sidebar-promo:hover .sidebar-decor {
  transform: rotate(-6deg) scale(1.1);
  opacity: .14;
}
.sidebar-decor i { display: block; }

.product-carousel .carousel-inner {
  padding: 8px 0 20px;
  margin-top: -8px;
  margin-bottom: -20px;
}
.product-carousel .carousel-item { padding: 0; }


.category-card-icon {
  padding: 22px 14px 18px;
  text-align: center;
  min-height: 130px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.category-card-icon .category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border-radius: var(--radius);
  font-size: 24px;
  transition: all var(--transition);
}
.category-card-icon:hover .category-icon {
  background: var(--brand-red);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}
.category-card-icon .category-title {
  font-size: 12.5px;
  line-height: 1.35;
  padding: 0 4px;
}


.category-card-visual .category-visual {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  transition: transform var(--transition-slow);
}
.category-card-visual .category-visual i {
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.category-card-visual:hover .category-visual i {
  transform: scale(1.14) rotate(-8deg);
}
.cat-green .category-visual { background: #F0F7EA; color: #16A34A; }
.cat-red .category-visual { background: var(--brand-red-soft); color: var(--brand-red); }
.cat-dark .category-visual { background: var(--bg-soft); color: var(--brand-accent); }
.cat-amber .category-visual { background: #FEF6E3; color: #D97706; }
.cat-blue .category-visual { background: #ECF6F9; color: #0891B2; }


.search-form { position: relative; }
.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(15,23,42,.14), 0 4px 10px rgba(15,23,42,.04);
  z-index: 120;
  max-height: 560px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(.99);
  transform-origin: top center;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1), visibility 0s .22s;
}
.search-suggest.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1), visibility 0s;
}
.search-suggest-group { padding: 8px 0; }
.search-suggest-group + .search-suggest-group { border-top: 1px solid var(--border-soft); }
.search-suggest-label {
  padding: 12px 20px 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.search-suggest-list { list-style: none; margin: 0; padding: 0; }
.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition), padding-left var(--transition);
}
.search-suggest-item:hover {
  background: var(--bg-soft);
  border-left-color: var(--brand-red);
  color: var(--text);
  padding-left: 22px;
}
.search-suggest-thumb {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--bg-soft);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.search-suggest-cat-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border-radius: var(--radius);
  font-size: 19px;
  flex-shrink: 0;
}
.search-suggest-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.search-suggest-text strong {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest-text mark {
  background: #FFF3B8;
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
  font-weight: 700;
}
.search-suggest-brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.search-suggest-arrow {
  color: var(--text-light);
  font-size: 11px;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.search-suggest-item:hover .search-suggest-arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--brand-red);
}
.search-suggest-empty {
  padding: 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  display: none;
}
.search-suggest-empty span { color: var(--brand-accent); font-weight: 700; }
.search-suggest-all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--bg-soft);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-top: 1px solid var(--border-soft);
  transition: background var(--transition), color var(--transition);
}
.search-suggest-all:hover { background: var(--brand-red); color: #fff; }


.cart-offcanvas {
  width: 460px;
  max-width: 100vw;
  border-left: 0;
}
.cart-header {
  background: var(--brand-accent);
  color: #fff;
  padding: 22px 26px;
  border-bottom: 3px solid var(--brand-red);
}
.cart-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-title i { color: var(--brand-red); }
.cart-header-count {
  font-weight: 500;
  font-size: 13px;
  opacity: .75;
  margin-left: 6px;
}
.cart-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cart-items { list-style: none; padding: 0; margin: 0; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.cart-item:hover { background: var(--bg-soft); }
.cart-item-thumb {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.cart-item-brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--brand-red);
  text-transform: uppercase;
}
.cart-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-accent);
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -.1px;
}
.cart-item-title:hover { color: var(--brand-red); }
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 10px;
}
.cart-qty {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.cart-qty-btn {
  background: var(--bg-soft);
  border: 0;
  width: 28px;
  height: 28px;
  font-size: 10px;
  color: var(--brand-accent);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cart-qty-btn:hover { background: var(--brand-red); color: #fff; }
.cart-qty-input {
  width: 34px;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--brand-accent);
  background: #fff;
}
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-red);
  white-space: nowrap;
  letter-spacing: -.3px;
}
.cart-item-remove {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  background: transparent;
  border: 0;
  color: var(--text-light);
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background var(--transition), color var(--transition);
}
.cart-item-remove:hover { background: var(--brand-red-soft); color: var(--brand-red); }

.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  color: var(--text-muted);
  gap: 18px;
}
.cart-empty-icon { font-size: 60px; color: var(--border); }
.cart-empty p { margin: 0; font-size: 15px; font-weight: 600; }

.cart-footer {
  padding: 22px 26px 24px;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-soft);
  display: block;
}
.cart-summary { margin-bottom: 18px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
}
.cart-row strong { font-weight: 700; }
.cart-shipping-free { color: var(--success); font-weight: 700; font-size: 12px; }
.cart-row-total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 16px;
}
.cart-row-total strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: -.5px;
}
.btn-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 10px;
  box-shadow: var(--shadow-red);
}
.btn-cart-checkout:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15,23,42,.2);
}
.cart-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  transition: color var(--transition);
}
.cart-continue:hover { color: var(--brand-red); }


.account-link-wrap { position: relative; }
.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(15,23,42,.16), 0 4px 12px rgba(15,23,42,.05);
  padding: 24px 26px 22px;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1), visibility 0s .22s;
}
.account-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 34px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}
.account-dropdown::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.account-link-wrap:hover .account-dropdown,
.account-link-wrap:focus-within .account-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1), visibility 0s;
}
.account-dropdown-icon {
  font-size: 44px;
  color: var(--brand-red);
  margin-bottom: 10px;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(225,29,43,.2));
}
.account-dropdown-msg {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--brand-accent);
  margin: 0 0 18px;
}
.account-dropdown-msg strong { color: var(--brand-red); font-weight: 700; }
.account-dropdown-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-account-login {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}
.btn-account-login:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15,23,42,.2);
}
.btn-account-new {
  color: #0080D6;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.btn-account-new:hover { color: var(--brand-red); border-bottom-color: var(--brand-red); }


.floating-tabs {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 5px;

  align-items: flex-end;
}
.floating-tab {
  position: relative;
  width: 42px;
  height: 44px;
  padding: 0;
  background: rgba(255,255,255,.92);
  color: var(--brand-red);
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: -3px 3px 12px rgba(15,23,42,.06);
  transition: all var(--transition);
}
.floating-tab:hover {
  width: 48px;
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: -5px 5px 18px rgba(225,29,43,.25);
}
.floating-tab:focus-visible { outline: 2px solid #0A66C2; outline-offset: 2px; }
.floating-tab i { font-size: 18px; }
.floating-tab-label {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--brand-accent);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
}
.floating-tab-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left-color: var(--brand-accent);
}
.floating-tab:hover .floating-tab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.floating-tab-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: var(--brand-red);
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
  box-shadow: var(--shadow-sm);
}
.floating-tab:hover .floating-tab-badge { background: #fff; color: var(--brand-red); border-color: var(--brand-red); }
.floating-tab-a11y { color: #0A66C2; }
.floating-tab-a11y:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; box-shadow: -5px 5px 18px rgba(10,102,194,.3); }
@media (max-width: 767px) {
  .floating-tabs { top: auto; bottom: 80px; transform: none; gap: 4px; }
  .floating-tab { width: 38px; height: 40px; }
}

.wishlist-offcanvas { width: 460px; max-width: 100vw; border-left: 0; }
.wishlist-header { background: var(--brand-accent); color: #fff; padding: 22px 26px; border-bottom: 3px solid var(--brand-red); }
.wishlist-title { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; letter-spacing: -.3px; }
.wishlist-title i { color: var(--brand-red); }
.wishlist-header-count { font-weight: 500; font-size: 13px; opacity: .75; margin-left: 6px; }
.wishlist-body { padding: 0; }
.wishlist-items { list-style: none; padding: 0; margin: 0; }
.wishlist-item {
  display: flex; gap: 14px; padding: 18px 24px;
  border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden;
  transition: background var(--transition);
}
.wishlist-item:hover { background: var(--bg-soft); }
.wishlist-thumb {
  width: 78px; height: 78px; object-fit: contain;
  background: var(--bg-soft); border: 1px solid var(--border-soft);
  border-radius: var(--radius); flex-shrink: 0;
}
.wishlist-info { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.wishlist-brand { font-size: 10px; font-weight: 800; letter-spacing: 1.2px; color: var(--brand-red); text-transform: uppercase; }
.wishlist-name {
  font-size: 13.5px; font-weight: 600; color: var(--brand-accent); line-height: 1.35;
  text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wishlist-name:hover { color: var(--brand-red); }
.wishlist-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; gap: 10px; }
.wishlist-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--brand-red); white-space: nowrap; letter-spacing: -.3px; }
.wishlist-add-cart {
  background: var(--brand-accent); color: #fff; border: 0;
  padding: 7px 14px; font-size: 11px; font-weight: 700; letter-spacing: .3px;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.wishlist-add-cart:hover { background: var(--brand-red); box-shadow: var(--shadow-red); }
.wishlist-remove {
  position: absolute; top: 14px; right: 14px;
  width: 26px; height: 26px; background: transparent; border: 0;
  color: var(--text-light); cursor: pointer; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  transition: background var(--transition), color var(--transition);
}
.wishlist-remove:hover { background: var(--brand-red-soft); color: var(--brand-red); }
.wishlist-empty {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 64px 24px; text-align: center; color: var(--text-muted); gap: 18px;
}
.wishlist-empty-icon { font-size: 64px; color: var(--border); }
.wishlist-empty p { margin: 0; font-size: 15px; font-weight: 600; }
.btn-wishlist-browse {
  background: var(--brand-red); color: #fff; border: 0;
  padding: 13px 22px; font-weight: 700; font-size: 13px; letter-spacing: .3px;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); box-shadow: var(--shadow-red);
}
.btn-wishlist-browse:hover { background: var(--brand-accent); transform: translateY(-2px); }

.a11y-offcanvas { width: 420px; max-width: 100vw; border-left: 0; }
.a11y-header { background: #0A66C2; color: #fff; padding: 22px 26px; border-bottom: 3px solid #084E96; }
.a11y-title { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; letter-spacing: -.3px; }
.a11y-body { padding: 22px 26px; }
.a11y-section { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.a11y-section:last-of-type { border-bottom: 0; }
.a11y-section-title {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 12px;
}
.a11y-font-controls { display: flex; gap: 10px; }
.a11y-font-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 14px; background: #fff; border: 2px solid var(--border);
  font-weight: 700; font-size: 16px; color: var(--brand-accent);
  cursor: pointer; border-radius: var(--radius);
  transition: all var(--transition);
}
.a11y-font-btn small { font-size: 11px; vertical-align: super; }
.a11y-font-btn:nth-child(2) { font-size: 20px; }
.a11y-font-btn:nth-child(3) { font-size: 22px; }
.a11y-font-btn:hover { border-color: var(--brand-red); color: var(--brand-red); }
.a11y-font-btn.a11y-font-active { background: var(--brand-red); color: #fff; border-color: var(--brand-red); box-shadow: var(--shadow-red); }
.a11y-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px; border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 6px;
  font-size: 14px;
}
.a11y-option:hover { background: var(--bg-soft); }
.a11y-option span { display: inline-flex; align-items: center; gap: 2px; }
.a11y-option i { color: var(--brand-red); width: 18px; }
.a11y-toggle { width: 44px; height: 24px; -webkit-appearance: none; appearance: none; background: var(--border); border-radius: 12px; position: relative; cursor: pointer; transition: background var(--transition); flex-shrink: 0; }
.a11y-toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.a11y-toggle:checked { background: var(--brand-red); }
.a11y-toggle:checked::after { transform: translateX(20px); }
.a11y-reset {
  width: 100%; padding: 13px; background: var(--brand-accent); color: #fff;
  border: 0; font-weight: 700; font-size: 13px; letter-spacing: .3px;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition);
  margin-top: 12px;
}
.a11y-reset:hover { background: var(--brand-red); box-shadow: var(--shadow-red); }
.a11y-info { font-size: 11px; color: var(--text-muted); margin: 14px 0 0; text-align: center; }

/* Accessibility mode styles */
.a11y-high-contrast { filter: contrast(1.4) saturate(1.2); }
.a11y-high-contrast img { filter: contrast(1.1); }
.a11y-grayscale { filter: grayscale(1); }
.a11y-underline-links a:not(.btn):not(.product-card):not(.category-card):not(.brand-logo):not(.packout-main):not(.selector-banner):not(.floating-tab):not(.promo-banner):not(.blog-img-link):not(.product-img-link) { text-decoration: underline !important; }
.a11y-pause-animations *,
.a11y-pause-animations *::before,
.a11y-pause-animations *::after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
}
.a11y-large-cursor, .a11y-large-cursor * { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'><path d='M8 4L8 36L16 28L20 44L28 42L24 28L36 28Z' fill='black' stroke='white' stroke-width='2'/></svg>") 0 0, auto !important; }

@media (max-width: 767px) {
  .floating-tabs { top: auto; bottom: 80px; transform: none; gap: 5px; }
  .floating-tab { padding: 12px 9px; min-width: 40px; }
  .floating-tab i { font-size: 16px; }
  .floating-tab-label { font-size: 10px; }
  .wishlist-offcanvas, .a11y-offcanvas { width: 100vw; }
}


.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 1240px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15,23,42,.2);
  padding: 22px 28px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(32px);
  transition: opacity .4s ease, transform .45s cubic-bezier(.4,0,.2,1), visibility 0s .45s;
}
.cookie-banner.visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity .4s ease, transform .45s cubic-bezier(.4,0,.2,1); }
.cookie-banner-inner {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding: 0 !important;
}
.cookie-banner-content { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 280px; }
.cookie-banner-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-red);
}
.cookie-banner-text h4 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: -.3px;
}
.cookie-banner-text p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-muted); }
.cookie-banner-text a { color: var(--brand-red); font-weight: 700; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 11px 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .4px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept { background: var(--brand-red); color: #fff; border-color: var(--brand-red); box-shadow: var(--shadow-red); }
.cookie-btn-accept:hover { background: var(--brand-accent); border-color: var(--brand-accent); transform: translateY(-2px); }
.cookie-btn-reject { background: transparent; color: var(--text-muted); border-color: var(--border); }
.cookie-btn-reject:hover { background: var(--bg-soft); color: var(--brand-accent); border-color: var(--text-muted); }
.cookie-btn-customize { background: transparent; color: var(--brand-red); border-color: var(--brand-red); }
.cookie-btn-customize:hover { background: var(--brand-red); color: #fff; }
.cookie-btn-save { background: var(--brand-accent); color: #fff; border-color: var(--brand-accent); }
.cookie-btn-save:hover { background: var(--brand-red); border-color: var(--brand-red); box-shadow: var(--shadow-red); }

.cookie-modal {
  position: fixed; inset: 0; z-index: 210;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility 0s .3s;
}
.cookie-modal.visible { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .3s ease; }
.cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.cookie-modal-dialog {
  position: relative; width: 100%; max-width: 680px; max-height: 85vh;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(15,23,42,.35);
  display: flex; flex-direction: column;
  margin: 20px;
  transform: scale(.94); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.visible .cookie-modal-dialog { transform: scale(1); }
.cookie-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  background: var(--brand-accent); color: #fff;
  border-bottom: 3px solid var(--brand-red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cookie-modal-header h4 {
  margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; gap: 6px; letter-spacing: -.3px;
}
.cookie-modal-header i { color: var(--brand-red); }
.cookie-modal-close {
  background: transparent; border: 0; color: #fff;
  width: 34px; height: 34px;
  border-radius: var(--radius); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background var(--transition);
}
.cookie-modal-close:hover { background: rgba(255,255,255,.12); }
.cookie-modal-body { padding: 22px 28px; overflow-y: auto; flex: 1; }
.cookie-modal-intro { margin: 0 0 20px; font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

.cookie-category {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
  background: #fff;
}
.cookie-category:hover { border-color: var(--brand-red); background: var(--brand-red-soft); }
.cookie-cat-head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.cookie-cat-title strong { display: block; font-size: 14px; font-weight: 700; color: var(--brand-accent); }
.cookie-cat-title small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; letter-spacing: .3px; }
.cookie-cat-desc {
  margin: 12px 0 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.55;
}
.cookie-cat-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; position: relative;
}
.cookie-cat-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-cat-switch {
  width: 46px; height: 26px;
  background: var(--border);
  border-radius: 13px;
  position: relative;
  transition: background var(--transition);
}
.cookie-cat-switch::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.cookie-cat-toggle input:checked ~ .cookie-cat-switch { background: var(--brand-red); }
.cookie-cat-toggle input:checked ~ .cookie-cat-switch::after { transform: translateX(20px); }
.cookie-cat-status { font-size: 11px; font-weight: 700; color: var(--success); letter-spacing: .5px; }
.cookie-cat-locked .cookie-cat-switch { background: var(--success); opacity: .65; cursor: not-allowed; }
.cookie-cat-locked .cookie-cat-switch::after { transform: translateX(20px); }

.cookie-modal-footer {
  display: flex; justify-content: flex-end; gap: 10px;
  padding: 18px 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  flex-wrap: wrap;
}

.cookie-settings-btn {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-red);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all var(--transition);
}
.cookie-settings-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-settings-btn:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); transform: translateY(-3px); box-shadow: var(--shadow-red); }

@media (max-width: 767px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-banner-inner { gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .cookie-btn { flex: 1; text-align: center; }
  .cookie-modal-footer { flex-direction: column; }
  .cookie-modal-footer .cookie-btn { width: 100%; }
  .cookie-settings-btn { width: 42px; height: 42px; font-size: 17px; }
}


.mobile-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  color: var(--brand-accent);
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-icon-btn:hover { background: var(--bg-soft); color: var(--brand-red); }
.mobile-icon-btn:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; }

.mobile-search-bar {
  display: none;
  padding: 14px 0 10px;
  border-top: 1px solid var(--border-soft);
  margin-top: 10px;
}
.mobile-search-bar.open { display: block; animation: mobileSearchIn .28s cubic-bezier(.4,0,.2,1); }
@keyframes mobileSearchIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-search-form .form-control {
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding-right: 108px;
  padding-left: 18px;
  font-size: 14px;
  background: var(--bg-soft);
  flex: 1;
}
.mobile-search-form .form-control:focus { border-color: var(--brand-red); background: #fff; box-shadow: 0 0 0 4px rgba(225,29,43,.1); }
.mobile-search-form .search-btn {
  position: absolute;
  top: 4px;
  right: 46px;
  width: 50px;
  height: 38px;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}
.mobile-search-close {
  position: absolute;
  top: 4px;
  right: 0;
  width: 40px;
  height: 38px;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-search-close:hover { background: var(--bg-soft); color: var(--brand-red); }

@media (max-width: 991px) {
  .main-header { padding: 12px 0; }
  .logo { padding-left: 6px !important; }
  .logo-img { height: 34px !important; }
  .header-link .header-icon { font-size: 20px; }
  .header-cart .cart-count { top: -4px; left: 12px; width: 18px; height: 18px; font-size: 10px; }
  .account-trigger { padding: 8px; }
}


.mnav-offcanvas {
  width: 380px !important;
  max-width: 92vw;
  border-right: 0 !important;
  background: #fff;
  box-shadow: 10px 0 40px rgba(15,23,42,.1);
}
.mnav {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.mnav-head {
  position: relative;
  z-index: 3;
  background: #fff;
  color: var(--brand-accent);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border-bottom: 1px solid var(--border-soft);
}
.mnav-head::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red) 0%, transparent 80%);
}
.mnav-head-logo { flex: 1; display: flex; align-items: center; }
.mnav-head-logo-img { height: 36px; width: auto; }
.mnav-head-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.3px;
  text-align: center;
  color: var(--brand-accent);
}
.mnav-head-sub { display: none; justify-content: space-between; }
.mnav[data-level="1"] .mnav-head[data-head="primary"] { display: none; }
.mnav[data-level="1"] .mnav-head[data-head="secondary"] { display: flex; }

.mnav-back, .mnav-close {
  width: 42px; height: 42px;
  background: var(--bg-soft);
  border: 0;
  color: var(--brand-accent);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.mnav-back:hover, .mnav-close:hover {
  background: var(--brand-red);
  color: #fff;
}
.mnav-back:focus-visible, .mnav-close:focus-visible {
  outline: 2px solid #FFF3B8;
  outline-offset: 2px;
}

.mnav-track {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.mnav-primary, .mnav-secondary {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  background: #fff;
}
.mnav-primary { transform: translateX(0); }
.mnav-secondary { transform: translateX(100%); }
.mnav[data-level="1"] .mnav-primary { transform: translateX(-25%); opacity: .7; }
.mnav[data-level="1"] .mnav-secondary { transform: translateX(0); box-shadow: -15px 0 32px rgba(15,23,42,.1); }

.mnav-section { padding: 16px 0 6px; border-bottom: 1px solid var(--border-soft); }
.mnav-section:last-child { border-bottom: 0; }
.mnav-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 20px 10px;
}
.mnav-kicker {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.mnav-section-count {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: .3px;
}
.mnav-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  background: transparent;
  border: 0;
  color: var(--brand-accent);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  text-decoration: none;
  min-height: 48px;
  border-left: 3px solid transparent;
  font-family: inherit;
  letter-spacing: -.1px;
}
.mnav-link:hover, .mnav-link:focus-visible {
  background: var(--bg-soft);
  color: var(--brand-red);
  padding-left: 24px;
  border-left-color: var(--brand-red);
  outline: none;
}
.mnav-link .mnav-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 14px;
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mnav-link:hover .mnav-icon {
  background: var(--brand-red);
  color: #fff;
  transform: scale(1.06);
}
.mnav-link .mnav-label { flex: 1; line-height: 1.3; }
.mnav-link .mnav-tail {
  color: var(--text-light);
  font-size: 11px;
  transition: transform var(--transition), color var(--transition);
}
.mnav-link:hover .mnav-tail { color: var(--brand-red); transform: translateX(4px); }

.mnav-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 18px;
}
.mnav-brand {
  padding: 10px 6px;
  background: var(--bg-soft);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  line-height: 1.25;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.1px;
}
.mnav-brand:hover {
  background: #fff;
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.mnav-foot {
  padding: 18px 20px;
  background: var(--brand-accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.mnav-foot-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  transition: color var(--transition);
}
.mnav-foot-link:hover { color: var(--brand-red); }
.mnav-foot-link i { color: var(--brand-red); width: 18px; }

.mnav-sub {
  display: none;
  padding: 24px 0 40px;
}
.mnav-sub.active { display: block; animation: mnavSubIn .4s cubic-bezier(.4,0,.2,1) both; }
@keyframes mnavSubIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mnav-sub-icon {
  width: 64px; height: 64px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: var(--radius);
  font-size: 28px;
  box-shadow: var(--shadow-sm);
}
.mnav-sub-intro {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0 0 20px;
  padding: 0 24px;
  line-height: 1.5;
}
.mnav-sub-intro strong { color: var(--brand-accent); font-weight: 700; }

.mnav-sublist { border-top: 1px solid var(--border-soft); }
.mnav-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--brand-accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  min-height: 50px;
  border-left: 3px solid transparent;
  letter-spacing: -.1px;
}
.mnav-sublink:hover, .mnav-sublink:focus-visible {
  background: var(--bg-soft);
  color: var(--brand-red);
  padding-left: 26px;
  border-left-color: var(--brand-red);
  outline: none;
}
.mnav-sublink i { color: var(--text-light); font-size: 11px; transition: transform var(--transition), color var(--transition); }
.mnav-sublink:hover i { color: var(--brand-red); transform: translateX(4px); }
.mnav-see-all {
  background: var(--brand-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -.2px;
  border-bottom-color: var(--brand-red);
}
.mnav-see-all:hover {
  background: var(--brand-red) !important;
  color: #fff !important;
  padding-left: 26px;
  border-left-color: #fff;
}
.mnav-see-all i { color: rgba(255,255,255,.75); }
.mnav-see-all:hover i { color: #fff; }

@media (max-width: 991px) {
  .main-nav { display: none; }
}


@media (max-width: 767px) {
  .benefits-bar { padding: 14px 0; margin: 24px 0; }
  .benefits-bar .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    margin: 0 !important;
  }
  .benefits-bar .col {
    flex: 1 1 0 !important;
    max-width: 20% !important;
    width: 20% !important;
    padding: 0 2px !important;
    min-width: 0 !important;
  }
  .benefit-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 7px !important;
    padding: 10px 4px !important;
    width: 100%;
  }
  .benefit-icon {
    font-size: 20px !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
  }
  .benefit-item > div { width: 100%; }
  .benefit-item strong {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
    display: block;
    letter-spacing: -.1px;
  }
  .benefit-item small { display: none !important; }
}


@media (max-width: 767px) {
  .main-footer { padding: 44px 0 0; font-size: 12px; }
  .main-footer .footer-title { font-size: 13px; margin-bottom: 16px; }
  .main-footer .footer-list li { margin-bottom: 10px; font-size: 12px; line-height: 1.45; }
  .main-footer .footer-list small { font-size: 11px; }
  .footer-contact a { word-break: break-word; }
  .footer-identity li { font-size: 11px; }
  .footer-badges { padding-top: 22px; }
  .footer-pay-img { max-height: 40px; }
  .footer-anpc-img { max-height: 44px; }
  .footer-copyright { padding: 16px 0; text-align: center; }
  .footer-copyright .container-xxl { justify-content: center !important; }
}


.tagged-section { padding: 60px 0 !important; }
.tagged-image {
  position: relative;
  width: 100%;
  line-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0D1117;
  box-shadow: var(--shadow-lg);
}
.tagged-image-bg { width: 100%; height: auto; display: block; }

.tag-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.tag-dot::before, .tag-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  animation: tagPulse 2.4s cubic-bezier(.4,0,.2,1) infinite;
  pointer-events: none;
}
.tag-dot::after { animation-delay: 1.2s; }
@keyframes tagPulse {
  0% { transform: scale(1); opacity: .85; }
  100% { transform: scale(2.6); opacity: 0; }
}
.tag-dot-inner {
  position: relative;
  z-index: 1;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--brand-red);
  font-size: 13px;
  transition: background var(--transition), color var(--transition), transform .3s ease;
}
.tag-dot:hover .tag-dot-inner { background: var(--brand-red); color: #fff; }
.tag-dot.active .tag-dot-inner {
  background: var(--brand-red);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: var(--shadow-red);
}
.tag-dot.active::before, .tag-dot.active::after { display: none; }
.tag-dot:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 4px; }

.tag-card {
  position: absolute;
  z-index: 5;
  width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px 16px;
  box-shadow: 0 24px 50px rgba(15,23,42,.28), 0 6px 14px rgba(15,23,42,.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.9) translateY(-10px);
  transform-origin: top left;
  transition: opacity .25s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1), visibility 0s .3s;
}
.tag-card.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition: opacity .25s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
}
.tag-card-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px;
  background: transparent;
  border: 0;
  color: var(--text-light);
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.tag-card-close:hover { background: var(--brand-red-soft); color: var(--brand-red); }
.tag-card-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 5px;
}
.tag-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--brand-accent);
  padding-right: 28px;
  letter-spacing: -.2px;
}
.tag-card-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.tag-card-price s { color: var(--text-light); font-size: 11px; }
.tag-card-price strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: -.3px;
}
.tag-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}
.tag-card-btn:hover { background: var(--brand-accent); color: #fff; transform: translateY(-2px); }

@media (max-width: 767px) {
  .tag-dot { width: 28px; height: 28px; }
  .tag-dot-inner { width: 28px; height: 28px; font-size: 11px; }
  .tag-card {
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    top: auto !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    box-shadow: 0 -14px 40px rgba(15,23,42,.28);
    transform: translateY(24px);
    transform-origin: bottom center;
  }
  .tag-card.open { transform: translateY(0); }
}


.tag-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.62);
  backdrop-filter: blur(3px);
  z-index: 240;
  animation: tagBdIn .28s ease both;
}
.tag-backdrop.visible { display: block; }
@keyframes tagBdIn { from { opacity: 0; } to { opacity: 1; } }
body.tag-modal-open { overflow: hidden; }

@media (max-width: 767px) {
  .tag-card {
    position: fixed !important;
    left: 5vw !important;
    right: 5vw !important;
    top: 50% !important;
    bottom: auto !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    z-index: 250 !important;
    padding: 26px 24px 24px !important;
    box-shadow: 0 24px 60px rgba(15,23,42,.4) !important;
    transform: translateY(-50%) scale(.92);
    transform-origin: center center;
    border-radius: var(--radius-lg);
  }
  .tag-card.open { transform: translateY(-50%) scale(1); }
  .tag-card-title { font-size: 18px !important; }
  .tag-card-price strong { font-size: 28px !important; }
  .tag-card-btn { padding: 13px 20px; font-size: 13px; }
}

@media (min-width: 768px) {
  .tag-backdrop, .tag-backdrop.visible { display: none !important; }
}


.mobile-search-bar .search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 130;
}
.account-mobile-offcanvas {
  height: auto !important;
  max-height: 70vh;
  border-top: 3px solid var(--brand-red) !important;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.account-mobile-offcanvas .offcanvas-body {
  padding: 32px 26px 28px;
  position: relative;
  text-align: left;
}
.account-mobile-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
}
.account-mobile-offcanvas .account-dropdown-icon {
  font-size: 50px;
  color: var(--brand-red);
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 10px rgba(225,29,43,.2));
}
.account-mobile-offcanvas .account-dropdown-msg {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--brand-accent);
  margin: 0 0 22px;
}
.account-mobile-offcanvas .account-dropdown-msg strong { color: var(--brand-red); font-weight: 700; }
.account-mobile-offcanvas .account-dropdown-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.account-mobile-offcanvas .btn-account-login {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-red);
}
.account-mobile-offcanvas .btn-account-login:hover { background: var(--brand-accent); color: #fff; }
.account-mobile-offcanvas .btn-account-new {
  color: #0080D6;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
}
@media (min-width: 992px) {
  .account-mobile-offcanvas { display: none !important; }
}


.cart-shipping-paid {
  color: var(--brand-accent);
  font-weight: 700;
}
.cart-shipping-hint {
  padding: 12px 14px;
  background: #FFF7E6;
  border: 1px solid #FFE4B3;
  border-radius: var(--radius);
  font-size: 12.5px;
  color: #8B5A00;
  margin: -4px 0 16px;
  line-height: 1.45;
}
.cart-shipping-hint strong { color: var(--brand-red); font-weight: 800; }
.cart-shipping-progress {
  height: 6px;
  background: #FFE4B3;
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}
.cart-shipping-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red) 0%, #F59E0B 100%);
  width: 0;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  border-radius: 3px;
}

.cat-purple .category-visual { background: #EFE5FF; color: #6D28D9; }
