:root {
  --brand-red: #E30613;
  --brand-red-dark: #C00510;
  --brand-red-darker: #9E040D;
  --brand-green: #4A9A2A;
  --brand-green-dark: #3E811F;
  --dark: #1A1A1A;
  --dark-2: #2A2A2A;
  --text: #222;
  --text-muted: #777;
  --border: #E5E5E5;
  --bg-light: #F5F5F5;
  --bg-lighter: #FAFAFA;
  --success: #2E7D32;
  --warning: #F57C00;
  --star: #F5A623;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --radius: 2px;
  --radius-badge: 2px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --transition: .2s ease;
}

* { box-sizing: border-box; }

html, body {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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-light); }

.top-bar {
  background: #F0F0F0;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 12px;
}
.top-bar-promo {
  color: #fff;
  background: var(--brand-red);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 11px;
}
.top-bar-promo:hover { color: #fff; background: var(--brand-red-dark); }

.sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.main-header {
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.logo { gap: 10px; color: var(--dark); padding-left: 28px; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.search-form {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.search-form .form-control {
  height: 48px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding-right: 64px;
  font-size: 14px;
  transition: border-color var(--transition);
}
.search-form .form-control:focus {
  border-color: var(--brand-red);
  box-shadow: none;
}
.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-red-dark); }

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}
.header-link:hover { color: var(--brand-red); }
.header-icon {
  font-size: 28px;
  color: var(--dark);
  transition: color var(--transition);
}
.header-link:hover .header-icon { color: var(--brand-red); }
.header-link-text { display: flex; flex-direction: column; line-height: 1.2; }
.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: -6px; left: 18px;
  background: var(--brand-red);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav {
  background: var(--dark);
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 90;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.nav-item { position: relative; }

.nav-link-main {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.08);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
}
.nav-link-main:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-link-main:focus-visible { outline: 2px solid var(--brand-red); outline-offset: -2px; }
.nav-categories {
  background: var(--brand-red);
  font-weight: 800;
}
.nav-categories:hover { background: var(--brand-red-dark); color: #fff; }
.nav-categories[aria-expanded="true"] { background: var(--brand-red-dark); }

.nav-chevron {
  font-size: 9px;
  margin-left: 6px;
  opacity: .75;
  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: 12px 0; border: 0; background: transparent; font-weight: 600; }
.navbar-toggler:focus { box-shadow: none; }

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
  padding: 6px 0;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1), visibility 0s .22s;
}
.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);
  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(--text);
  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;
}
.nav-dropdown .dropdown-item i {
  color: var(--text-muted);
  font-size: 13px;
  width: 14px;
  transition: color .18s ease, transform .2s ease;
}
.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item.active {
  background: #F7F7F7;
  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(-6px); }
  to { opacity: 1; transform: translateX(0); }
}

.nav-dropdown-wide {
  min-width: 760px;
  left: auto;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 22px;
  padding: 20px 24px;
}
.brand-group { min-width: 0; }
.brand-group-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand-red);
}
.brand-link {
  display: block;
  padding: 5px 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .15s ease, padding-left .18s ease;
  position: relative;
  font-weight: 500;
}
.brand-link::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--brand-red);
  transform: translateY(-50%);
  transition: width .18s ease;
}
.brand-link:hover {
  color: var(--brand-red);
  padding-left: 10px;
}
.brand-link:hover::before { width: 7px; }

.nav-item-dropdown:hover .nav-dropdown-wide .brand-link,
.nav-item-dropdown.open .nav-dropdown-wide .brand-link {
  animation: dropdownItemIn .24s 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: 40ms; }
.nav-dropdown-wide .brand-group:nth-child(3) .brand-link { animation-delay: 80ms; }
.nav-dropdown-wide .brand-group:nth-child(4) .brand-link { animation-delay: 120ms; }

.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  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);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  z-index: 88;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  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: 480px;
  padding: 0;
}

.mega-sidebar {
  flex: 0 0 290px;
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 8px 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: #D0D0D0; border-radius: 3px; }
.mega-sidebar::-webkit-scrollbar-thumb:hover { background: #A0A0A0; }

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

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

.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, #B0B0B0);
  transition: transform .22s cubic-bezier(.4,0,.2,1), color .18s ease;
}

.mega-cat-btn:hover,
.mega-cat-btn.active {
  background: #F7F7F7;
  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.08);
}
.mega-cat-btn:hover .mega-cat-chevron,
.mega-cat-btn.active .mega-cat-chevron {
  color: var(--brand-red);
  transform: translateX(4px);
}
.mega-cat-btn:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: -2px;
}

.mega-content {
  flex: 1;
  position: relative;
  padding: 28px 32px;
  background: #FAFAFA;
  max-height: 78vh;
  overflow-y: auto;
}
.mega-content::-webkit-scrollbar { width: 6px; }
.mega-content::-webkit-scrollbar-track { background: transparent; }
.mega-content::-webkit-scrollbar-thumb { background: #D0D0D0; border-radius: 3px; }
.mega-content::-webkit-scrollbar-thumb:hover { background: #A0A0A0; }

.mega-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.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(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.mega-panel.activating .mega-col { animation: megaColIn .35s cubic-bezier(.4,0,.2,1) both; }
.mega-panel.activating .mega-col:nth-child(1) { animation-delay: 40ms; }
.mega-panel.activating .mega-col:nth-child(2) { animation-delay: 80ms; }
.mega-panel.activating .mega-col:nth-child(3) { animation-delay: 120ms; }
.mega-panel.activating .mega-col:nth-child(4) { animation-delay: 160ms; }

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

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

.mega-col-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-red);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
  line-height: 1.3;
}
.mega-col-title + .mega-col-list + .mega-col-title { margin-top: 20px; }

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

.mega-menu.open * { user-select: text; }

.hero-section {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #111;
}
.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slider .carousel-inner { width: 100%; }
.hero-slider .carousel-item { transition: transform .6s ease, opacity .5s ease; }
.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-slider a { display: block; }

.hero-arrow {
  width: 54px;
  height: 54px;
  background: rgba(0,0,0,.45);
  border: 0;
  color: #fff;
  font-size: 20px;
  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);
  border-radius: var(--radius);
  z-index: 6;
}
.hero-arrow:hover {
  background: var(--brand-red);
  color: #fff;
  width: 62px;
}
.hero-arrow.carousel-control-prev { left: 24px; }
.hero-arrow.carousel-control-next { right: 24px; }
.hero-arrow .carousel-control-prev-icon,
.hero-arrow .carousel-control-next-icon { display: none; }

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

.benefits-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 0;
  margin: 30px 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}
.benefit-icon {
  font-size: 34px;
  color: var(--brand-red);
  flex-shrink: 0;
}
.benefit-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.benefit-item small { display: block; font-size: 12px; color: var(--text-muted); line-height: 1.3; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-red);
}
.section-link:hover { color: var(--brand-red-dark); }

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: var(--brand-red);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.product-discount {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
  letter-spacing: .3px;
}
.product-discount.discount-green { background: var(--brand-green); }

.badge-free {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--brand-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
}

.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: #fff;
  border: 1px solid var(--border);
  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); }

.product-img-link {
  display: block;
  position: relative;
  padding: 20px;
  background: #fff;
  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 .4s ease;
}
.product-card:hover .product-img { transform: scale(1.03); }

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

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

.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: 20px;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1;
}
.price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-net {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.product-stock {
  font-size: 11px;
  padding: 4px 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-stock.in-stock { color: var(--success); }
.product-stock.delay { color: var(--warning); }

.btn-add-cart {
  background: var(--brand-red);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-top: auto;
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--dark); color: #fff; }

.category-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 14px;
  height: 100%;
  transition: all var(--transition);
}
.category-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.category-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 10px;
}
.category-title {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  padding: 0 10px;
}
.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: 24px;
  color: #fff;
}

.sidebar-inner { position: relative; z-index: 1; }
.sidebar-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
  display: inline-block;
  margin-bottom: 10px;
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.btn-sidebar {
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}
.btn-sidebar:hover { background: var(--dark); color: #fff; }
.btn-sidebar-light { background: var(--brand-red); color: #fff; }
.btn-sidebar-light:hover { background: #fff; color: var(--dark); }

.packout-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.packout-banner:hover { transform: translateY(-3px); }
.packout-main {
  display: block;
  position: relative;
  flex: 1;
  min-height: 260px;
  color: #fff;
}
.packout-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.packout-content {
  position: relative;
  z-index: 1;
  padding: 40px 40px 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 260px;
}
.packout-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,.4);
}
.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);
}
.packout-main:hover .packout-cta { background: #fff; color: var(--brand-red); transform: scale(1.1); }
.packout-info {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.95);
  color: var(--dark);
  padding: 20px 40px;
  margin-top: auto;
}
.packout-info strong { display: block; margin-bottom: 6px; font-size: 14px; }
.packout-info small { display: block; font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.brands-grid { justify-content: center; }
.brand-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all var(--transition);
}
.brand-logo:hover { border-color: var(--brand-red); transform: translateY(-2px); }
.brand-logo img { max-height: 50px; width: auto; filter: grayscale(30%); transition: filter var(--transition); }
.brand-logo:hover img { filter: grayscale(0); }

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--brand-red); box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img-link { display: block; overflow: hidden; }
.blog-img-link img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img-link img { transform: scale(1.05); }
.blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--dark);
}
.blog-title a { color: var(--dark); }
.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;
}
.blog-readmore:hover { color: var(--brand-red-dark); gap: 8px; }

.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 40px 0;
  margin-top: 30px;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}
.newsletter-sub { margin: 6px 0 0; opacity: .85; font-size: 14px; }
.newsletter-sub strong { color: var(--brand-red); }
.newsletter-form .form-control {
  border: 0;
  height: 50px;
  font-size: 14px;
  padding: 0 18px;
}
.newsletter-form .form-control:focus { box-shadow: 0 0 0 3px rgba(227,6,19,.35); }
.btn-newsletter {
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: 0 26px;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-newsletter:hover { background: var(--brand-red-dark); color: #fff; }

.main-footer {
  background: #1D1D1D;
  color: #BBB;
  padding: 50px 0 0;
  font-size: 13px;
}
.footer-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-red);
  display: inline-block;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; color: #BBB; }
.footer-list li strong { color: #fff; font-weight: 600; }
.footer-list small { color: #999; font-size: 12px; }
.footer-list a { color: #BBB; }
.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: 36px; height: 36px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--brand-red); transform: translateY(-2px); }

.footer-copyright {
  background: #131313;
  padding: 16px 0;
  margin-top: 40px;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #2a2a2a;
}
.payment-methods { display: flex; gap: 6px; }
.payment-methods img { height: 26px; width: auto; border-radius: 3px; }

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow);
  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(-3px); }

@media (max-width: 991px) {
  .hero-arrow { width: 44px; height: 44px; font-size: 16px; }
  .hero-arrow:hover { width: 48px; }
  .hero-arrow.carousel-control-prev { left: 12px; }
  .hero-arrow.carousel-control-next { right: 12px; }
  .packout-title { font-size: 28px; }
  .section-title { font-size: 22px; }
  .benefits-bar { padding: 14px 0; }
  .benefit-icon { font-size: 28px; }
  .main-header { padding: 12px 0; }
  .logo-img { height: 38px; }
}

@media (max-width: 767px) {
  .hero-arrow { width: 36px; height: 36px; font-size: 14px; }
  .hero-dots [data-bs-target] { width: 20px; }
  .hero-dots .active { width: 32px; }
  .product-title { font-size: 12px; min-height: 48px; }
  .price-current { font-size: 17px; }
  .packout-content { padding: 20px; }
  .packout-title { font-size: 22px; }
  .section-title { font-size: 18px; }
  .section-header { flex-wrap: wrap; gap: 8px; }
}

.product-carousel { position: relative; }
.product-carousel .carousel-item { transition: transform .5s ease-in-out; }
.product-carousel-btn {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.product-carousel-prev { left: -18px; }
.product-carousel-next { right: -18px; }
.product-carousel-btn:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  transform: translateY(-50%) scale(1.08);
}
.product-carousel-dots {
  position: static;
  margin: 18px 0 0;
  justify-content: center;
  gap: 6px;
}
.product-carousel-dots button {
  width: 24px;
  height: 3px;
  border-radius: 0;
  background-color: var(--border);
  background-clip: padding-box;
  opacity: 1;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  transition: background-color .2s ease, width .2s ease;
}
.product-carousel-dots button:hover { background-color: var(--text-muted); }
.product-carousel-dots button.active {
  background-color: var(--brand-red);
  width: 40px;
}
@media (max-width: 767px) {
  .product-carousel-prev { left: 0; }
  .product-carousel-next { right: 0; }
  .product-carousel-btn { width: 34px; height: 34px; font-size: 12px; }
}

.selector-banner {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 360px;
  padding: 44px 48px;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.selector-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  color: #fff;
}
.selector-banner-tires {
  background:
    radial-gradient(circle at 78% 55%, rgba(227,6,19,.55) 0%, transparent 58%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.025) 0 18px, transparent 18px 36px),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 55%, #080808 100%);
}
.selector-banner-chains {
  background:
    radial-gradient(circle at 22% 55%, rgba(227,6,19,.38) 0%, transparent 58%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 30px),
    linear-gradient(135deg, #161a23 0%, #232a35 50%, #0e1218 100%);
}
.selector-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.selector-banner-content {
  position: relative;
  z-index: 3;
  max-width: 58%;
}
.selector-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(227,6,19,.4);
}
.selector-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  line-height: .95;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -.5px;
  text-shadow: 2px 3px 0 rgba(0,0,0,.25);
}
.selector-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  margin-bottom: 24px;
}
.selector-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--dark);
  padding: 12px 22px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.selector-banner:hover .selector-btn {
  background: var(--brand-red);
  color: #fff;
  gap: 4px;
}
.selector-banner-visual {
  position: absolute;
  right: -40px;
  bottom: -70px;
  z-index: 1;
  opacity: .12;
  pointer-events: none;
  transition: transform .5s ease, opacity .4s ease;
}
.selector-banner:hover .selector-banner-visual {
  transform: rotate(12deg) scale(1.06);
  opacity: .18;
}
.selector-banner-tires .selector-icon-bg {
  font-size: 340px;
  color: #fff;
  transform: rotate(-12deg);
  display: block;
}
.selector-banner-chains .selector-icon-bg {
  font-size: 280px;
  color: #fff;
  transform: rotate(-25deg);
  display: block;
}

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

.footer-brand-accent { color: var(--brand-red); }
.footer-identity li { font-size: 12px; line-height: 1.4; }
.footer-title-sm {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-badges {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.footer-payment-row, .footer-anpc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-pay-img {
  max-height: 46px;
  max-width: 100%;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius);
}
.footer-pay-img-sm { max-height: 38px; }
.footer-anpc-img {
  max-height: 54px;
  max-width: 100%;
  background: #fff;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.footer-anpc-row a:hover .footer-anpc-img { transform: translateY(-2px); }
.footer-domain { color: #777; font-family: monospace; }

.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 .5s ease;
}
.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.promo-banner:hover img {
  transform: scale(1.03);
}

.sidebar-red {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,.25) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 40px),
    linear-gradient(165deg, var(--brand-red) 0%, var(--brand-red-dark) 60%, var(--brand-red-darker) 100%);
}
.sidebar-dark {
  background:
    radial-gradient(circle at 30% 5%, rgba(227,6,19,.35) 0%, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(227,6,19,.15) 0%, transparent 40%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.035) 0 24px, transparent 24px 48px),
    linear-gradient(165deg, var(--dark-2) 0%, var(--dark) 100%);
}
.sidebar-green {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.2) 0%, transparent 55%),
    radial-gradient(circle at 5% 90%, rgba(0,0,0,.2) 0%, transparent 45%),
    repeating-linear-gradient(30deg, rgba(255,255,255,.04) 0 1px, transparent 1px 50px),
    linear-gradient(165deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
}
.sidebar-decor {
  position: absolute;
  right: -40px;
  bottom: -50px;
  font-size: 240px;
  color: #fff;
  opacity: .09;
  transform: rotate(-18deg);
  z-index: 0;
  pointer-events: none;
  transition: transform .5s ease, opacity .35s ease;
  line-height: 1;
}
.sidebar-promo:hover .sidebar-decor {
  transform: rotate(-8deg) scale(1.08);
  opacity: .13;
}
.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: 18px 12px 14px;
  text-align: center;
  min-height: 120px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.category-card-icon .category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  color: var(--brand-red);
  border-radius: var(--radius);
  font-size: 22px;
  transition: all var(--transition);
}
.category-card-icon:hover .category-icon {
  background: var(--brand-red);
  color: #fff;
  transform: scale(1.08);
}
.category-card-icon .category-title {
  font-size: 12px;
  line-height: 1.3;
  padding: 0 6px;
}


.category-card-visual .category-visual {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  transition: transform .4s ease;
}
.category-card-visual .category-visual i {
  position: relative;
  z-index: 1;
  transition: transform .3s ease;
}
.category-card-visual:hover .category-visual i {
  transform: scale(1.12) rotate(-6deg);
}
.cat-green .category-visual { background: #F0F7EA; color: #4A9A2A; }
.cat-red .category-visual { background: #FEF1F2; color: var(--brand-red); }
.cat-dark .category-visual { background: #F3F4F6; color: #374151; }
.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% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  z-index: 120;
  max-height: 540px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .2s ease, visibility 0s .2s;
}
.search-suggest.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .2s ease, transform .22s ease, visibility 0s;
}
.search-suggest-group { padding: 6px 0; }
.search-suggest-group + .search-suggest-group { border-top: 1px solid var(--border); }
.search-suggest-label {
  padding: 10px 18px 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  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: 12px;
  padding: 8px 18px;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .15s ease, border-color .15s ease, padding-left .15s ease;
}
.search-suggest-item:hover {
  background: #F7F7F7;
  border-left-color: var(--brand-red);
  color: var(--text);
  padding-left: 20px;
}
.search-suggest-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--bg-light);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.search-suggest-cat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FEF1F2;
  color: var(--brand-red);
  border-radius: var(--radius);
  font-size: 18px;
  flex-shrink: 0;
}
.search-suggest-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.search-suggest-text strong {
  font-weight: 500;
  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;
  font-weight: 700;
}
.search-suggest-brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.search-suggest-arrow {
  color: var(--text-muted);
  font-size: 11px;
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
}
.search-suggest-item:hover .search-suggest-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--brand-red);
}
.search-suggest-empty {
  padding: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  display: none;
}
.search-suggest-empty span { color: var(--text); font-weight: 700; }
.search-suggest-all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--bg-light);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-top: 1px solid var(--border);
  transition: background .15s ease, color .15s ease;
}
.search-suggest-all:hover { background: var(--brand-red); color: #fff; }


.cart-offcanvas {
  width: 440px;
  max-width: 100vw;
  border-left: 0;
}
.cart-header {
  background: var(--dark);
  color: #fff;
  padding: 18px 24px;
  border-bottom: 3px solid var(--brand-red);
}
.cart-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-title i { color: var(--brand-red); }
.cart-header-count {
  font-weight: 500;
  font-size: 13px;
  opacity: .8;
  text-transform: none;
  letter-spacing: 0;
  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: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cart-item-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  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: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-title:hover { color: var(--brand-red); }
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  gap: 10px;
}
.cart-qty {
  display: inline-flex;
  height: 28px;
  line-height: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  align-items: stretch;
}
.cart-qty-btn {
  background: var(--bg-light);
  border: 0;
  width: 26px;
  height: 26px;
  font-size: 10px;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cart-qty-btn:hover { background: var(--brand-red); color: #fff; }
.cart-qty-input {
  width: 32px;
  height: 26px;
  padding: 0;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--dark);
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}
.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: 15px;
  font-weight: 800;
  color: var(--brand-red);
  white-space: nowrap;
}
.cart-item-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  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: #FEF1F2; color: var(--brand-red); }

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

.cart-footer {
  padding: 12px 22px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
  display: block;
}
.cart-summary {
  margin-bottom: 10px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 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: 5px;
  padding-top: 8px;
  font-size: 15px;
}
.cart-row-total strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  color: var(--brand-red);
}
/* Sertar: span-ul .cart-item-total NU e flex-ul din pagina cart — inline,
   ca „X,XX lei" să stea pe un singur rând. */
.cart-offcanvas .cart-item-price .cart-item-total { display: inline; gap: 0; }
/* Sertar: qty compact (regula .cart-qty{height:36px} e pt pagina cart). */
.cart-offcanvas .cart-qty { height: 28px; }
.btn-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 4px;
}
.btn-cart-checkout:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}
.cart-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  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% + 10px);
  right: 0;
  width: 340px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.04);
  padding: 22px 22px 20px;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .22s cubic-bezier(.4,0,.2,1), visibility 0s .22s;
}
.account-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 30px;
  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);
  transition: opacity .22s ease, transform .22s cubic-bezier(.4,0,.2,1), visibility 0s;
}
.account-dropdown-icon {
  font-size: 42px;
  color: var(--brand-red);
  text-align: left;
  margin-bottom: 8px;
  line-height: 1;
}
.account-dropdown-msg {
  font-size: 13px;
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 16px;
}
.account-dropdown-msg strong { color: var(--brand-red); font-weight: 800; }
.account-dropdown-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-account-login {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-account-login:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}
.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: 4px;

  align-items: flex-end;
}
.floating-tab {
  position: relative;
  width: 40px;
  height: 42px;
  padding: 0;
  background: rgba(255,255,255,.95);
  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: 17px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: -2px 2px 8px rgba(0,0,0,.05);
  transition: background var(--transition), color var(--transition), border-color var(--transition), width var(--transition);
}
.floating-tab:hover {
  width: 46px;
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.floating-tab:focus-visible { outline: 2px solid #0A66C2; outline-offset: 2px; }
.floating-tab i { font-size: 17px; }
.floating-tab-label {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.floating-tab-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left-color: var(--dark);
}
.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: 0 2px 4px rgba(0,0,0,.15);
}
.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; }
@media (max-width: 767px) {
  .floating-tabs { top: auto; bottom: 70px; transform: none; gap: 4px; }
  .floating-tab { width: 36px; height: 38px; }
}

.wishlist-offcanvas { width: 440px; max-width: 100vw; border-left: 0; }
.wishlist-header { background: var(--dark); color: #fff; padding: 18px 24px; border-bottom: 3px solid var(--brand-red); }
.wishlist-title { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 8px; letter-spacing: .5px; }
.wishlist-title i { color: var(--brand-red); }
.wishlist-header-count { font-weight: 500; font-size: 13px; opacity: .8; text-transform: none; letter-spacing: 0; margin-left: 6px; }
.wishlist-body { padding: 0; }
.wishlist-items { list-style: none; padding: 0; margin: 0; }
.wishlist-item {
  display: flex; gap: 12px; padding: 16px 22px;
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.wishlist-thumb {
  width: 72px; height: 72px; object-fit: contain;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); flex-shrink: 0;
}
.wishlist-info { flex: 1; display: flex; flex-direction: column; gap: 4px; 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: 13px; font-weight: 600; color: var(--dark); 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: 4px; gap: 10px; }
.wishlist-price { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--brand-red); white-space: nowrap; }
.wishlist-add-cart {
  background: var(--dark); color: #fff; border: 0;
  padding: 6px 12px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition);
}
.wishlist-add-cart:hover { background: var(--brand-red); }
.wishlist-remove {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px; background: transparent; border: 0;
  color: var(--text-muted); 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: #FEF1F2; color: var(--brand-red); }
.wishlist-empty {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px; text-align: center; color: var(--text-muted); gap: 16px;
}
.wishlist-empty-icon { font-size: 60px; 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: 12px 20px; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .3px;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition);
}
.btn-wishlist-browse:hover { background: var(--dark); }

.a11y-offcanvas { width: 400px; max-width: 100vw; border-left: 0; }
.a11y-header { background: #0A66C2; color: #fff; padding: 18px 24px; border-bottom: 3px solid #084E96; }
.a11y-title { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.a11y-body { padding: 20px 24px; }
.a11y-section { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.a11y-section:last-of-type { border-bottom: 0; }
.a11y-section-title {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 10px;
}
.a11y-font-controls { display: flex; gap: 8px; }
.a11y-font-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 12px; background: #fff; border: 2px solid var(--border);
  font-weight: 700; font-size: 16px; color: var(--dark);
  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); }
.a11y-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 6px;
  font-size: 14px;
}
.a11y-option:hover { background: var(--bg-light); }
.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); }
.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: 12px; background: var(--dark); color: #fff;
  border: 0; font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: .3px; border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition);
  margin-top: 10px;
}
.a11y-reset:hover { background: var(--brand-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: 70px; transform: none; gap: 4px; }
  .floating-tab { padding: 10px 8px; min-width: 38px; }
  .floating-tab i { font-size: 16px; }
  .floating-tab-label { font-size: 10px; }
  .wishlist-offcanvas, .a11y-offcanvas { width: 100vw; }
}


.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  padding: 20px 24px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity .35s ease, transform .4s cubic-bezier(.4,0,.2,1), visibility 0s .4s;
}
.cookie-banner.visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity .35s ease, transform .4s cubic-bezier(.4,0,.2,1); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 !important;
}
.cookie-banner-content { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 280px; }
.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.cookie-banner-text h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.cookie-banner-text p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-muted); }
.cookie-banner-text a { color: var(--brand-red); font-weight: 700; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  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); }
.cookie-btn-accept:hover { background: var(--dark); border-color: var(--dark); }
.cookie-btn-reject { background: transparent; color: var(--text-muted); border-color: var(--border); }
.cookie-btn-reject:hover { background: var(--bg-light); color: var(--dark); 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(--dark); color: #fff; border-color: var(--dark); }
.cookie-btn-save:hover { background: var(--brand-red); border-color: var(--brand-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 .25s ease, visibility 0s .25s;
}
.cookie-modal.visible { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .25s ease; }
.cookie-modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  cursor: pointer;
}
.cookie-modal-dialog {
  position: relative; width: 100%; max-width: 640px; max-height: 85vh;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  display: flex; flex-direction: column;
  margin: 20px;
  transform: scale(.96); transition: transform .3s 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: 20px 26px;
  background: var(--dark); color: #fff;
  border-bottom: 3px solid var(--brand-red);
  border-radius: var(--radius) var(--radius) 0 0;
}
.cookie-modal-header h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  display: flex; align-items: center; gap: 6px;
}
.cookie-modal-header i { color: var(--brand-red); }
.cookie-modal-close {
  background: transparent; border: 0; color: #fff;
  width: 32px; height: 32px;
  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,.1); }
.cookie-modal-body { padding: 20px 26px; overflow-y: auto; flex: 1; }
.cookie-modal-intro { margin: 0 0 18px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.cookie-category {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: border-color var(--transition), background var(--transition);
}
.cookie-category:hover { border-color: var(--brand-red); background: #FEFCFC; }
.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: 800; color: var(--dark);
}
.cookie-cat-title small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; letter-spacing: .2px; }
.cookie-cat-desc {
  margin: 10px 0 0; font-size: 12px; color: var(--text-muted); line-height: 1.5;
}
.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: 44px; height: 24px;
  background: var(--border);
  border-radius: 12px;
  position: relative;
  transition: background var(--transition);
}
.cookie-cat-switch::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);
}
.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); text-transform: uppercase; letter-spacing: .5px; }
.cookie-cat-locked .cookie-cat-switch { background: var(--success); opacity: .7; cursor: not-allowed; }
.cookie-cat-locked .cookie-cat-switch::after { transform: translateX(20px); }

.cookie-modal-footer {
  display: flex; justify-content: flex-end; gap: 8px;
  padding: 16px 26px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  flex-wrap: wrap;
}

.cookie-settings-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-red);
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  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); }

@media (max-width: 767px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .cookie-banner-inner { gap: 14px; }
  .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: 40px; height: 40px; font-size: 16px; }
}


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

.mobile-search-bar {
  display: none;
  padding: 12px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.mobile-search-bar.open { display: block; animation: mobileSearchIn .25s cubic-bezier(.4,0,.2,1); }
@keyframes mobileSearchIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.mobile-search-form .form-control {
  height: 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding-right: 100px;
  font-size: 14px;
  flex: 1;
}
.mobile-search-form .form-control:focus { border-color: var(--brand-red); box-shadow: none; }
.mobile-search-form .search-btn {
  position: absolute;
  top: 4px;
  right: 42px;
  width: 48px;
  height: 36px;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}
.mobile-search-close {
  position: absolute;
  top: 4px;
  right: 0;
  width: 36px;
  height: 36px;
  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-light); color: var(--brand-red); }

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


.mnav-offcanvas {
  width: 360px !important;
  max-width: 92vw;
  border-right: 3px solid var(--brand-red) !important;
  background: #fff;
}
.mnav {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.mnav-head {
  position: relative;
  z-index: 3;
  background: #fff;
  color: var(--dark);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid var(--brand-red);
  min-height: 64px;
}
.mnav-head-logo { flex: 1; display: flex; align-items: center; }
.mnav-head-logo-img { height: 34px; width: auto; }
.mnav-head-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: var(--dark);
}
.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: 40px; height: 40px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--dark);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  flex-shrink: 0;
}
.mnav-back:hover, .mnav-close:hover {
  background: var(--brand-red);
  border-color: 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 .38s 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(-20%); }
.mnav[data-level="1"] .mnav-secondary { transform: translateX(0); box-shadow: -10px 0 24px rgba(0,0,0,.08); }

.mnav-section { padding: 14px 0 4px; border-bottom: 1px solid var(--border); }
.mnav-section:last-child { border-bottom: 0; }
.mnav-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px 8px;
}
.mnav-kicker {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.mnav-section-count {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .5px;
}
.mnav-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, padding-left .18s ease;
  text-decoration: none;
  min-height: 48px;
  border-left: 3px solid transparent;
  font-family: inherit;
}
.mnav-link:hover, .mnav-link:focus-visible {
  background: #F7F7F7;
  color: var(--brand-red);
  padding-left: 22px;
  border-left-color: var(--brand-red);
  outline: none;
}
.mnav-link .mnav-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 15px;
  flex-shrink: 0;
}
.mnav-link .mnav-label { flex: 1; line-height: 1.25; }
.mnav-link .mnav-tail {
  color: var(--text-light);
  font-size: 11px;
  transition: transform .2s ease, color .2s ease;
}
.mnav-link:hover .mnav-tail { color: var(--brand-red); transform: translateX(3px); }

.mnav-section-quick .mnav-link .mnav-tail { color: var(--text-light); font-size: 10px; }

.mnav-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 14px 14px;
}
.mnav-brand {
  padding: 10px 6px;
  background: #F5F5F5;
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all .18s ease;
  line-height: 1.2;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mnav-brand:hover {
  background: #fff;
  border-color: var(--brand-red);
  color: var(--brand-red);
}

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

/* Secondary sub-panels */
.mnav-sub {
  display: none;
  padding: 20px 0 40px;
}
.mnav-sub.active { display: block; animation: mnavSubIn .35s cubic-bezier(.4,0,.2,1) both; }
@keyframes mnavSubIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mnav-sub-icon {
  width: 56px; height: 56px;
  background: #FEF1F2;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border-radius: 2px;
  font-size: 26px;
}
.mnav-sub-intro {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 18px;
  padding: 0 20px;
}
.mnav-sub-intro strong { color: var(--dark); font-weight: 800; }

.mnav-sublist { border-top: 1px solid var(--border); }
.mnav-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
  min-height: 48px;
  border-left: 3px solid transparent;
}
.mnav-sublink:hover, .mnav-sublink:focus-visible {
  background: #F7F7F7;
  color: var(--brand-red);
  padding-left: 24px;
  border-left-color: var(--brand-red);
  outline: none;
}
.mnav-sublink i { color: var(--text-light); font-size: 11px; transition: transform .2s ease, color .2s ease; }
.mnav-sublink:hover i { color: var(--brand-red); transform: translateX(3px); }
.mnav-see-all {
  background: #1A1A1A;
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom-color: var(--brand-red);
}
.mnav-see-all:hover {
  background: var(--brand-red) !important;
  color: #fff !important;
  padding-left: 24px;
  border-left-color: #fff;
}
.mnav-see-all i { color: rgba(255,255,255,.8); }
.mnav-see-all:hover i { color: #fff; }

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


@media (max-width: 767px) {
  .benefits-bar { padding: 12px 0; margin: 20px 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: 6px !important;
    padding: 8px 4px !important;
    width: 100%;
  }
  .benefit-icon {
    font-size: 20px !important;
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0;
  }
  .benefit-item > div { width: 100%; }
  .benefit-item strong {
    font-size: 10px !important;
    line-height: 1.2 !important;
    display: block;
    letter-spacing: 0;
  }
  .benefit-item small { display: none !important; }
}


@media (max-width: 767px) {
  .main-footer { padding: 40px 0 0; font-size: 12px; }
  .main-footer .footer-title { font-size: 13px; margin-bottom: 14px; }
  .main-footer .footer-list li { margin-bottom: 8px; font-size: 12px; line-height: 1.4; }
  .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: 20px; }
  .footer-pay-img { max-height: 38px; }
  .footer-anpc-img { max-height: 42px; }
  .footer-copyright { padding: 14px 0; text-align: center; }
  .footer-copyright .container-xxl { justify-content: center !important; }
}


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

.tag-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  transition: transform .25s 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,.7);
  animation: tagPulse 2.2s cubic-bezier(.4,0,.2,1) infinite;
  pointer-events: none;
}
.tag-dot::after { animation-delay: 1.1s; }
@keyframes tagPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.tag-dot-inner {
  position: relative;
  z-index: 1;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--brand-red);
  font-size: 12px;
  transition: background .2s ease, color .2s ease, 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);
}
.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: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25), 0 4px 10px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.92) translateY(-8px);
  transform-origin: top left;
  transition: opacity .22s ease, transform .28s cubic-bezier(.4,0,.2,1), visibility 0s .28s;
}
.tag-card.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition: opacity .22s ease, transform .28s cubic-bezier(.4,0,.2,1);
}
.tag-card-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, color .18s ease;
}
.tag-card-close:hover { background: var(--brand-red); color: #fff; }
.tag-card-brand {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 4px;
}
.tag-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--dark);
  padding-right: 24px;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.tag-card-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tag-card-price s { color: var(--text-light, #aaa); font-size: 11px; }
.tag-card-price strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-red);
}
.tag-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.tag-card-btn:hover { background: var(--dark); color: #fff; transform: translateY(-1px); }

@media (max-width: 767px) {
  .tag-dot { width: 26px; height: 26px; }
  .tag-dot-inner { width: 26px; height: 26px; font-size: 10px; }
  .tag-card {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    top: auto !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    box-shadow: 0 -12px 30px rgba(0,0,0,.3);
    transform: translateY(20px);
    transform-origin: bottom center;
  }
  .tag-card.open { transform: translateY(0); }
}


.tag-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 240;
  animation: tagBdIn .25s 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: 24px 22px 22px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,.35) !important;
    transform: translateY(-50%) scale(.92);
    transform-origin: center center;
    border-radius: var(--radius);
  }
  .tag-card.open { transform: translateY(-50%) scale(1); }
  .tag-card-title { font-size: 18px !important; }
  .tag-card-price strong { font-size: 26px !important; }
  .tag-card-btn { padding: 12px 18px; font-size: 13px; }
}
@media (max-width: 767px) {
  .tag-backdrop.visible { display: none; }
}
@media (max-width: 767px) {
  .tag-card.open ~ body,
  body:has(.tag-card.open) .tag-backdrop { display: block; }
  .tag-backdrop.visible { display: block !important; }
}

@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;
}
.account-mobile-offcanvas .offcanvas-body {
  padding: 30px 24px 26px;
  position: relative;
  text-align: left;
}
.account-mobile-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
}
.account-mobile-offcanvas .account-dropdown-icon {
  font-size: 48px;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.account-mobile-offcanvas .account-dropdown-msg {
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark);
  margin: 0 0 20px;
}
.account-mobile-offcanvas .account-dropdown-msg strong { color: var(--brand-red); font-weight: 800; }
.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: 12px 20px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: var(--radius);
  text-decoration: none;
}
.account-mobile-offcanvas .btn-account-login:hover { background: var(--dark); 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(--dark);
  font-weight: 700;
}
.cart-shipping-hint {
  padding: 7px 10px;
  background: #FFF7E6;
  border: 1px solid #FFE4B3;
  border-radius: var(--radius);
  font-size: 11px;
  color: #8B5A00;
  margin: -2px 0 8px;
}
.cart-shipping-hint strong { color: var(--brand-red); font-weight: 800; }
.cart-shipping-progress {
  height: 5px;
  background: #FFE4B3;
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}
.cart-shipping-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red) 0%, #FFB347 100%);
  width: 0;
  transition: width .4s cubic-bezier(.4,0,.2,1);
  border-radius: 3px;
}

.cat-purple .category-visual { background: #F3EAFF; color: #7C3AED; }

/* ============================================================
   CATEGORII PAGE — listing/filters/grid-list
   ============================================================ */

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12px;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 6px;
}
.breadcrumb-item a {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .2px;
  transition: color var(--transition);
}
.breadcrumb-item a:hover { color: var(--brand-red); }
.breadcrumb-item.active {
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .6px;
}
.breadcrumb-sep {
  color: #C5C5C5;
  font-size: 9px;
  display: flex;
  align-items: center;
}

/* Category head */
.cat-head {
  background: #fff;
  border-bottom: 2px solid #dcdfe3;
  padding: 24px 0 20px;
}
.cat-head-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
}
@media (min-width: 992px) {
  .cat-head-grid {
    grid-template-columns: 1fr auto;
    gap: 32px;
  }
}
.cat-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  background: #FFE5E7;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.cat-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 10px;
}
.cat-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}

.cat-head-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .cat-head-controls { justify-content: flex-end; }
}
.cat-filter-mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background var(--transition);
}
.cat-filter-mobile-btn:hover { background: var(--brand-red); border-color: var(--brand-red); }
.cat-filter-count-badge {
  background: var(--brand-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  margin-left: 4px;
}
@media (min-width: 992px) {
  .cat-filter-mobile-btn { display: none; }
}
.cat-count-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.cat-count-pill strong {
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
  margin-right: 3px;
}
.cat-sort {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 992px) { .cat-sort { flex: 0 0 auto; } }
.cat-sort-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  padding: 0 10px 0 12px;
  margin: 0;
  background: var(--bg-light);
  height: 38px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.cat-sort-select {
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 0 32px 0 12px;
  height: 38px;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231A1A1A' d='M5 6 0 0h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.cat-view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cat-view-btn {
  background: #fff;
  border: 0;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border-right: 1px solid var(--border);
}
.cat-view-btn:last-child { border-right: 0; }
.cat-view-btn:hover { color: var(--dark); background: var(--bg-light); }
.cat-view-btn.active,
.cat-view-btn[aria-pressed="true"] {
  background: var(--dark);
  color: #fff;
}

/* Category body layout */
.cat-body {
  background: var(--bg-lighter);
  padding: 24px 0 40px;
  min-height: 400px;
}

/* Sidebar */
.cat-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
}
.filters-offcanvas .cat-sidebar {
  position: static;
  max-height: none;
  border: 0;
  overflow: visible;
}
.cat-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--dark);
  color: #fff;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  z-index: 5;
}
.cat-sidebar-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.cat-clear-all {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  cursor: pointer;
  padding: 4px 6px;
  opacity: .75;
  transition: opacity var(--transition);
}
.cat-clear-all:hover { opacity: 1; text-decoration: underline; }

/* Filter groups (details/summary) */
.filter-group {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.filter-group[open] { background: #fff; }
.filter-group-head {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.filter-group-head::-webkit-details-marker { display: none; }
.filter-group-head::marker { display: none; content: ''; }
.filter-group-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--dark);
  flex: 1;
}
.filter-group-count {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 2px 6px;
  background: var(--bg-light);
  border-radius: var(--radius);
}
.filter-group-arrow {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.filter-group[open] .filter-group-arrow { transform: rotate(180deg); color: var(--brand-red); }
.filter-group-body {
  padding: 4px 16px 16px;
  animation: filterFadeIn .18s ease;
}
@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Filter list - checkboxes */
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-list.filter-list-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
}
.filter-list li { margin: 0; }
.filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  transition: background var(--transition);
  margin: 0;
}
.filter-list label:hover { background: var(--bg-light); }
.filter-list label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.filter-list .check-box,
.filter-flyout-body .check-box {
  width: 16px; height: 16px;
  border: 1.5px solid #C5C5C5;
  border-radius: var(--radius);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}
.filter-list .check-box::after,
.filter-flyout-body .check-box::after {
  content: '';
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  margin-top: -1.5px;
  transition: transform .15s cubic-bezier(.4,0,.2,1);
}
.filter-list label:hover .check-box,
.filter-flyout-body label:hover .check-box { border-color: var(--brand-red); }
.filter-list input[type="checkbox"]:checked + .check-box,
.filter-flyout-body input[type="checkbox"]:checked + .check-box {
  background: var(--brand-red);
  border-color: var(--brand-red);
}
.filter-list input[type="checkbox"]:checked + .check-box::after,
.filter-flyout-body input[type="checkbox"]:checked + .check-box::after {
  transform: rotate(-45deg) scale(1);
}
.filter-list input[type="checkbox"]:focus-visible + .check-box {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
.filter-list .check-label {
  flex: 1;
  color: var(--text);
  font-weight: 500;
}
.filter-list input[type="checkbox"]:checked ~ .check-label { font-weight: 700; color: var(--dark); }
.filter-list small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}

/* Price range */
.price-range { padding-top: 4px; }
.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.price-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-field label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin: 0;
}
.price-field input {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.price-field input:focus { border-color: var(--brand-red); }
.price-field input::-webkit-outer-spin-button,
.price-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.range-slider {
  position: relative;
  height: 28px;
  margin: 0 8px 8px;
}
.range-track {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 3px;
  background: #E0E0E0;
  transform: translateY(-50%);
  border-radius: 2px;
}
.range-fill {
  position: absolute;
  top: 50%;
  height: 3px;
  background: var(--brand-red);
  transform: translateY(-50%);
  border-radius: 2px;
  pointer-events: none;
}
.range-input {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 28px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  outline: none;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: #fff;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
  transition: transform var(--transition);
  margin-top: 0;
}
.range-input::-webkit-slider-thumb:hover { transform: scale(1.1); }
.range-input::-webkit-slider-thumb:active { background: var(--brand-red); }
.range-input::-moz-range-thumb {
  width: 18px; height: 18px;
  background: #fff;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.range-input::-webkit-slider-runnable-track { background: transparent; }
.range-input::-moz-range-track { background: transparent; border: 0; }

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 0 4px;
}

/* Sidebar footer (mobile apply button) */
.cat-sidebar-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
  display: none;
}
.filters-offcanvas .cat-sidebar-footer { display: block; }
.cat-apply-btn {
  width: 100%;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.cat-apply-btn:hover { background: var(--brand-red-dark); }

/* Mobile filters offcanvas */
.filters-offcanvas {
  width: 340px !important;
  max-width: 90vw;
}
.filters-offcanvas .filters-header {
  background: var(--dark);
  color: #fff;
  border-bottom: 2px solid var(--brand-red);
  padding: 14px 16px;
}
.filters-offcanvas .offcanvas-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}
.filters-offcanvas .offcanvas-body { padding: 0; }
.filters-offcanvas .cat-sidebar-head { display: none; }

/* Active filters chip bar */
.cat-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-red);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 16px;
}
.cat-active-filters:empty,
.cat-active-filters.is-empty { display: none; }
.cat-active-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
}
.cat-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFE5E7;
  color: var(--brand-red-darker);
  border: 1px solid #FFB8BE;
  padding: 4px 4px 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  transition: all var(--transition);
}
.cat-chip:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.cat-chip button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background var(--transition);
}
.cat-chip:hover button { background: rgba(255,255,255,.2); }
.cat-chip button:hover { background: rgba(0,0,0,.1); }
.cat-active-clear {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  white-space: nowrap;
}
.cat-active-clear:hover { color: var(--brand-red); }

/* Products container — grid view (default, uses existing .product-card) */
.products-container { transition: opacity .2s ease; }
.products-container.is-switching { opacity: .4; }

.products-grid .product-list-desc,
.products-grid .product-chips { display: none; }

/* List view */
.products-list .row > [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
.products-list .cat-col { margin-bottom: 12px; }
.products-list .product-card {
  flex-direction: row;
  align-items: stretch;
}
.products-list .product-img-link {
  flex: 0 0 180px;
  width: 180px;
  max-width: 180px;
  aspect-ratio: 1;
  padding: 18px;
  border-right: 1px solid var(--border);
  border-top-right-radius: 0;
  border-bottom-left-radius: var(--radius);
}
.products-list .product-body {
  flex: 1;
  border-top: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto 1fr auto;
  grid-template-areas:
    "brand  stock"
    "title  title"
    "desc   desc"
    "chips  chips"
    "rating bottom";
  gap: 8px 16px;
  align-items: start;
  min-width: 0;
}
.products-list .product-brand { grid-area: brand; margin: 0; }
.products-list .product-title {
  grid-area: title;
  font-size: 16px;
  min-height: 0;
  -webkit-line-clamp: 2;
  margin: 0;
}
.products-list .product-list-desc {
  grid-area: desc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.products-list .product-chips {
  grid-area: chips;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 2px 0 0;
}
.products-list .product-rating {
  grid-area: rating;
  align-self: end;
  margin: 0;
}
.products-list .product-stock {
  grid-area: stock;
  margin: 0;
  justify-self: end;
}
.products-list .product-body-bottom {
  grid-area: bottom;
  align-self: end;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 200px;
}
.products-list .product-price {
  flex-direction: row !important;
  align-items: baseline;
  gap: 8px;
}
.products-list .price-current { font-size: 20px; }
.products-list .btn-add-cart { white-space: nowrap; }

/* ----- LIST VIEW: mobile (<768) ----- */
@media (max-width: 767px) {
  .products-list .cat-col { margin-bottom: 10px; }
  .products-list .product-card {
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
  }
  .products-list .product-img-link {
    flex: 0 0 118px;
    width: 118px;
    max-width: 118px;
    padding: 10px;
    background: var(--bg-lighter);
    border-right: 1px solid var(--border);
    border-bottom-left-radius: var(--radius);
    border-top-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .products-list .product-img {
    max-height: 100%;
    width: auto;
  }
  /* compact badges on mobile list */
  .products-list .product-discount {
    top: 6px; left: 6px;
    font-size: 9px;
    padding: 2px 6px;
    letter-spacing: .2px;
  }
  .products-list .product-wishlist {
    width: 26px; height: 26px;
    top: 6px; right: 6px;
    font-size: 11px;
    z-index: 3;
  }
  .products-list .product-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 12px;
    min-width: 0;
  }
  .products-list .product-brand {
    font-size: 10px;
    letter-spacing: .8px;
    margin: 0;
  }
  .products-list .product-title {
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    font-weight: 600;
    margin: 0;
    min-height: 0;
    word-break: break-word;
  }
  .products-list .product-list-desc,
  .products-list .product-chips { display: none; }
  .products-list .product-rating {
    font-size: 10px;
    margin: 0;
  }
  .products-list .product-stock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    margin: 0;
    justify-self: flex-start;
    align-self: flex-start;
  }
  .products-list .product-stock i { font-size: 9px; }
  .products-list .price-net { font-size: 10px; }
  .products-list .product-price {
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin: 2px 0 2px;
  }
  .products-list .price-current { font-size: 16px; font-weight: 800; }
  .products-list .price-old { font-size: 11px; }
  .products-list .product-body-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    min-width: 0;
    width: 100%;
    margin-top: auto;
  }
  .products-list .btn-add-cart {
    padding: 7px 10px;
    font-size: 11px;
    letter-spacing: .3px;
    width: 100%;
  }
  .products-list .btn-add-cart i { margin-right: 4px !important; }
}
@media (max-width: 380px) {
  .products-list .product-img-link {
    flex: 0 0 100px;
    width: 100px;
    padding: 8px;
  }
  .products-list .product-body { padding: 8px 10px 10px; }
  .products-list .product-title { font-size: 12px; }
  .products-list .price-current { font-size: 15px; }
}

/* Product chips (spec tags) */
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-chip {
  font-size: 10px;
  font-weight: 700;
  color: var(--dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* product-body-bottom wrapper (used in both views) */
.product-body-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Pagination */
.cat-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 28px 0 8px;
  flex-wrap: wrap;
}
.cat-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
}
.cat-page-btn:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.cat-page-btn.active,
.cat-page-btn[aria-current="page"] {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.cat-page-btn.active:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }
.cat-page-ctrl { font-size: 12px; }
.cat-page-dots {
  color: var(--text-muted);
  padding: 0 4px;
  font-weight: 700;
}

/* Help banner */
.cat-help-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  border-left: 4px solid var(--brand-red);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 24px;
  flex-wrap: wrap;
}
.cat-help-icon {
  width: 48px; height: 48px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cat-help-text { flex: 1; min-width: 200px; }
.cat-help-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
}
.cat-help-text p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.cat-help-btn {
  background: var(--brand-red);
  color: #fff;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
}
.cat-help-btn:hover { background: var(--brand-red-dark); color: #fff; }

@media (max-width: 575px) {
  .cat-help-banner { padding: 16px; gap: 12px; }
  .cat-help-icon { width: 40px; height: 40px; font-size: 20px; }
  .cat-help-text strong { font-size: 15px; }
  .cat-help-btn { width: 100%; text-align: center; }
}

/* Category body extra polish on mobile */
@media (max-width: 991px) {
  .cat-body { padding: 18px 0 32px; }
  .cat-active-filters { padding: 10px; font-size: 11px; }
}

/* ============================================================
   PRODUS PAGE — gallery, info, price, tabs, related
   ============================================================ */
.product-page {
  background: var(--bg-lighter);
  padding: 24px 0 48px;
}
.product-page-top {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0 0 28px;
}
@media (max-width: 575px) {
  .product-page-top { padding: 14px; }
}

/* Gallery */
.product-gallery-col { position: relative; }
.product-gallery { position: sticky; top: 16px; }
@media (min-width: 992px) {
  .row.product-page-top > .product-gallery-col { flex: 0 0 40%; max-width: 40%; }
  .row.product-page-top > .product-info-col { flex: 0 0 60%; max-width: 60%; }
}
.product-gallery-main {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}
@media (min-width: 992px) {
  .product-gallery-main { min-height: 500px; padding: 18px; }
}
.product-gallery-main:hover { border-color: var(--brand-red); }
.product-main-img {
  max-width: 100%;
  max-height: 460px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
@media (max-width: 575px) {
  .product-main-img { max-height: 360px; }
}
.product-gallery-main:hover .product-main-img { transform: scale(1.04); }
.product-main-img.is-swapping { opacity: 0; transform: scale(.98); }

.product-code-chip {
  position: absolute;
  top: 12px; left: 12px;
  background: #fff;
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 2;
}
.product-discount-lg {
  top: 12px !important;
  left: auto !important;
  right: 60px !important;
  font-size: 12px !important;
  padding: 5px 10px !important;
  font-family: var(--font-display);
  letter-spacing: 1px !important;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 575px) {
  .product-discount-lg { font-size: 10px !important; padding: 4px 8px !important; right: 50px !important; }
  .product-code-chip { font-size: 10px; padding: 4px 8px; }
}
.product-wishlist-lg {
  width: 38px !important;
  height: 38px !important;
  font-size: 14px !important;
  top: 12px !important;
  right: 12px !important;
}
.gallery-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  transition: all var(--transition);
}
.gallery-zoom-btn:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

/* Removed warranty seal styles */
@media (max-width: 575px) {
  .noop-warranty-seal { width: 80px; height: 80px; top: 14px; right: 62px; }
  .noop-warranty-badge { width: 44px; height: 44px; }
  .warranty-num { font-size: 18px; }
  .warranty-unit { font-size: 7px; letter-spacing: 1px; }
}

/* Thumbnails carousel wrapper */
.product-gallery-thumbs-wrap {
  position: relative;
  margin-top: 10px;
}
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px;
  margin: -2px;
}
.product-gallery-thumbs::-webkit-scrollbar { display: none; }
.thumbs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all var(--transition);
}
.thumbs-nav:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.thumbs-nav[hidden] { display: none; }
.thumbs-nav-prev { left: -6px; }
.thumbs-nav-next { right: -6px; }
.gallery-thumb {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  aspect-ratio: 1;
  width: calc((100% - 16px) / 3);
  flex: 0 0 calc((100% - 16px) / 3);
  min-width: 72px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gallery-thumb:hover { border-color: var(--dark); }
.gallery-thumb.active {
  border-color: var(--brand-red);
  border-width: 2px;
  padding: 7px;
}
.gallery-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-red);
}

/* Product info column */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-brand-tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--brand-red);
  padding: 3px 10px;
  border: 1.5px solid var(--brand-red);
  border-radius: var(--radius);
  text-transform: uppercase;
}
.product-page-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.3px;
  margin: 0;
}

/* 3-cell info grid */
.product-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.info-cell {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.info-cell:last-child { border-right: 0; }
.info-dash {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 10px;
  height: 2px;
  background: var(--brand-red);
}
.info-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 18px;
}
.info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .5px;
  padding-left: 18px;
}
.info-value-stock {
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}
.stock-dot {
  width: 10px; height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46,125,50,.2);
  animation: stockPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes stockPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,125,50,.2); }
  50% { box-shadow: 0 0 0 6px rgba(46,125,50,.08); }
}
@media (max-width: 767px) {
  .product-info-grid { grid-template-columns: 1fr; }
  .info-cell { border-right: 0; border-bottom: 1px solid var(--border); padding: 10px 14px; }
  .info-cell:last-child { border-bottom: 0; }
  .info-value { font-size: 15px; }
}

/* Price block */
.product-price-block {
  background: linear-gradient(135deg, #FFF5F6 0%, #fff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius);
  padding: 14px 18px;
  position: relative;
}
.product-rating-lg {
  font-size: 13px;
  margin-bottom: 6px;
}
.product-rating-lg small { color: var(--text-muted); margin-left: 4px; }
.product-reviews-link { color: var(--brand-red); font-weight: 600; text-decoration: underline; }
.product-price-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 4px;
}
.product-price-big {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1;
  letter-spacing: -1px;
}
.product-price-big sup {
  font-size: 16px;
  font-weight: 700;
  top: -.8em;
  margin-left: 2px;
  letter-spacing: 1px;
}
.product-price-secondary {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}
.product-price-save {
  font-size: 11px;
  font-weight: 800;
  background: var(--brand-red);
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--radius);
  letter-spacing: .5px;
  width: fit-content;
}
.product-price-net {
  font-size: 11px;
  color: var(--text-muted);
}
.product-price-net strong { color: var(--brand-red); font-weight: 800; }

/* TBI rate block — banner + calculator line */
.tbi-rate-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 0 0;
}
.tbi-banner {
  display: block;
  max-width: 320px;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.tbi-banner:hover { opacity: .88; transform: translateY(-1px); }
.tbi-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.rate-calc {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding-left: 14px;
  border-left: 2px solid var(--brand-red);
}
.rate-amount {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: -.3px;
  line-height: 1;
}
.rate-multi {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}
.rate-note {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: .2px;
}
@media (max-width: 575px) {
  .tbi-banner { max-width: 260px; }
  .rate-calc { padding-left: 12px; }
  .rate-amount { font-size: 17px; }
}

/* Actions row — qty + add to cart */
.product-actions-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.qty-selector {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  height: 44px;
  transition: border-color var(--transition);
}
.qty-selector:focus-within,
.qty-selector:hover { border-color: var(--dark); }
.qty-btn {
  background: #fff;
  color: var(--dark);
  border: 0;
  width: 38px;
  font-size: 12px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { color: var(--brand-red); background: var(--bg-light); }
.qty-btn:active { background: var(--bg-light); }
.qty-input {
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  width: 56px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  background: #fff;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Buy button — matches .btn-add-cart (red → dark on hover), compact */
.btn-buy {
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 0 18px;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  flex: 1 1 0%;
  min-width: 140px;
}
.btn-buy:hover { background: var(--dark); color: #fff; }
.btn-buy.added { background: var(--success); }
.btn-buy.added:hover { background: var(--success); }
.product-actions-row { flex-wrap: wrap; }
.qty-selector { height: 40px; flex-shrink: 0; }
@media (max-width: 575px) {
  .btn-buy { flex: 1; max-width: none; font-size: 11px; padding: 0 12px; min-width: 0; }
  .qty-btn { width: 34px; }
  .qty-input { width: 44px; font-size: 14px; }
}

/* Trust row — stacked (display: block) */
.product-trust-row {
  display: block;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-trust-row li {
  display: block;
  border-bottom: 1px dashed var(--border);
}
.product-trust-row li:last-child { border-bottom: 0; }
.product-trust-row a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition), padding var(--transition);
}
.product-trust-row a:hover {
  color: var(--brand-red);
  padding-left: 8px;
}
.product-trust-row i {
  color: var(--brand-red);
  font-size: 18px;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}

/* Share */
.product-share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.product-share-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-share-buttons { display: flex; gap: 6px; }
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: transform var(--transition), filter var(--transition);
}
.share-btn:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff; }
.share-fb { background: #1877F2; }
.share-wa { background: #25D366; }
.share-msg { background: #006AFF; }
.share-mail { background: var(--dark); }

/* Tabs */
.product-tabs-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--bg-light);
}
.product-tabs::-webkit-scrollbar { display: none; }
.product-tab {
  background: transparent;
  border: 0;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.product-tab:hover { color: var(--dark); }
.product-tab.active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
  background: #fff;
}
.product-tab .tab-count { color: var(--text-muted); font-weight: 500; margin-left: 4px; }
.product-tab.active .tab-count { color: var(--brand-red); }

.product-tab-panels { padding: 28px 32px 32px; }
.product-tab-panel {
  display: none;
  animation: tabFadeIn .3s ease;
}
.product-tab-panel.active { display: block; }
.product-tab-panel[hidden] { display: none; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: -.2px;
  margin: 0 0 14px;
  position: relative;
  padding-left: 16px;
}
.panel-heading::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--brand-red);
}
.panel-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 760px;
}

/* Description grid (tire image + bullets) */
.desc-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .desc-grid { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
}
.desc-visual {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.desc-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.desc-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  padding: 3px 10px;
  background: #fff;
  border-radius: var(--radius);
}
.desc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
@media (max-width: 575px) { .desc-bullets { grid-template-columns: 1fr; } }
.desc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.desc-bullets i {
  color: var(--brand-red);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.desc-bullets strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.desc-bullets span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Utilaje compatibile */
.utilaje-compatibile {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.utilaje-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 14px;
}
.utilaje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.utilaj-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all var(--transition);
}
.utilaj-card:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-2px);
}
.utilaj-icon {
  width: 46px;
  height: 46px;
  background: var(--brand-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--transition);
}
.utilaj-card:hover .utilaj-icon { background: var(--dark); }
.utilaj-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.utilaj-body small {
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.panel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.panel-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFF5D6;
  color: var(--brand-red-darker);
  border: 1px solid #FFE29E;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.panel-cta-link:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.specs-table tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.specs-table tr:hover { background: var(--bg-light); }
.specs-table tr:last-child { border-bottom: 0; }
.specs-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: 40%;
  background: var(--bg-lighter);
  border-right: 2px solid var(--brand-red);
}
.specs-table td {
  padding: 12px 16px;
  font-weight: 700;
  color: var(--dark);
}
.specs-table td small { font-weight: 500; color: var(--brand-red); margin-left: 6px; cursor: pointer; }
@media (max-width: 575px) {
  .specs-table th, .specs-table td { padding: 10px 12px; font-size: 12px; }
}

/* About pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.about-pillar {
  padding: 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--brand-red);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-pillar i {
  font-size: 26px;
  color: var(--brand-red);
  margin-bottom: 4px;
}
.about-pillar strong {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
}
.about-pillar span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Reviews empty */
.reviews-empty {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.reviews-empty > i {
  font-size: 48px;
  color: var(--border);
  margin-bottom: 8px;
}
.reviews-empty strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reviews-empty p { color: var(--text-muted); font-size: 13px; margin: 0 0 14px; }
.btn-red {
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 12px 24px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  text-transform: uppercase;
  font-size: 12px;
}
.btn-red:hover { background: var(--brand-red-dark); color: #fff; }

/* Va recomandam + Istoric */
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.va-recomandam, .istoric-navigare { margin-bottom: 28px; }
.section-link-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.section-link-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Panel padding mobile */
@media (max-width: 575px) {
  .product-tab-panels { padding: 18px 16px 22px; }
  .product-tab { padding: 12px 16px; font-size: 12px; }
}

/* ============================================================
   ZOOM MODAL — full-screen image viewer with arrows & dots
   ============================================================ */
.product-main-img { cursor: zoom-in; }
.product-gallery-main.is-zoomable:hover { cursor: zoom-in; }

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.zoom-modal.open {
  display: flex;
  animation: zoomFadeIn .25s ease;
}
@keyframes zoomFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,.92);
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}
.zoom-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: #fff;
  z-index: 2;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 100%);
  pointer-events: none;
}
.zoom-topbar > * { pointer-events: auto; }
.zoom-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}
.zoom-counter {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: 1px;
  background: rgba(255,255,255,.08);
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}
.zoom-counter strong { color: #fff; font-weight: 800; }
.zoom-close {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
}
.zoom-close:hover { background: var(--brand-red); border-color: var(--brand-red); }

.zoom-stage {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 140px);
  max-height: calc(100% - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: zoomImgIn .3s cubic-bezier(.2,.8,.2,1);
  transition: opacity .2s ease;
}
.zoom-img.is-swapping { opacity: 0; }
@keyframes zoomImgIn {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  transition: all var(--transition);
}
.zoom-nav:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}
.zoom-nav-prev { left: 24px; }
.zoom-nav-next { right: 24px; }

.zoom-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
  background: rgba(0,0,0,.5);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.zoom-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.3);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.zoom-dot:hover { background: rgba(255,255,255,.6); }
.zoom-dot.active {
  background: var(--brand-red);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .zoom-nav {
    width: 40px; height: 40px;
    font-size: 14px;
  }
  .zoom-nav-prev { left: 8px; }
  .zoom-nav-next { right: 8px; }
  .zoom-stage { max-width: calc(100% - 90px); }
  .zoom-img { padding: 16px; max-height: calc(100vh - 110px); }
  .zoom-topbar { padding: 12px; }
  .zoom-title { font-size: 11px; }
}

/* Prevent scroll when modal open */
body.zoom-open { overflow: hidden; }

/* Descriere tab — embedded specs block */
.desc-specs {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.desc-specs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.desc-specs-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin: 0;
}
.desc-specs-link {
  background: transparent;
  border: 0;
  color: var(--brand-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.desc-specs-link:hover { color: var(--brand-red-dark); text-decoration: underline; }
.desc-specs .specs-table { font-size: 12.5px; }
.desc-specs .specs-table th { font-size: 11px; padding: 10px 14px; }
.desc-specs .specs-table td { padding: 10px 14px; }

/* ============================================================
   CART PAGE — items list + sticky summary
   ============================================================ */
.cart-page {
  background: var(--bg-lighter);
  padding: 28px 0 40px;
  min-height: 500px;
}
.cart-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid #dcdfe3;
}
.cart-page-title-block { flex: 1 1 auto; min-width: 0; }
.cart-page-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: .3px;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .cart-page-title { font-size: 20px; white-space: normal; }
}
.cart-page-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.cart-page-sub strong { color: var(--dark); font-weight: 800; }
.cart-page-head .cart-continue,
.cart-layout .cart-continue,
a.cart-continue[href] {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  width: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--dark);
  padding: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  transition: color var(--transition);
}
.cart-continue i { font-size: 11px; }
.cart-page-head .cart-continue:hover,
a.cart-continue[href]:hover {
  color: var(--brand-red);
  text-decoration: none;
  background: transparent;
}

/* Items column */
.cart-items-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.cart-items-header {
  display: grid;
  grid-template-columns: 1fr 180px 140px;
  gap: 20px;
  padding: 14px 20px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.cart-col-qty, .cart-col-total { text-align: center; }
.cart-col-total { text-align: right; }

.cart-items-list > .cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 180px 140px;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: opacity .25s ease, transform .25s ease;
}
.cart-items-list > .cart-item:last-child { border-bottom: 0; }
.cart-items-list > .cart-item.is-removing {
  opacity: 0;
  transform: translateX(-20px);
}

.cart-item-img {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  background: #fff;
  aspect-ratio: 1;
  width: 100px;
  height: 100px;
  transition: border-color var(--transition);
}
.cart-item-img:hover { border-color: var(--brand-red); }
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cart-item-brand {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.cart-item-title a { color: var(--dark); }
.cart-item-title a:hover { color: var(--brand-red); }
.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 11px;
  color: var(--text-muted);
}
.cart-item-attr {
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--dark);
}
.cart-item-stock {
  color: var(--success);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cart-item-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.cart-item-save,
.cart-item-remove {
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 0;
  letter-spacing: .3px;
  transition: color var(--transition);
}
.cart-item-save:hover { color: var(--brand-red); }
.cart-item-remove:hover { color: var(--brand-red); }

.cart-item-qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cart-qty { height: 36px; }
.cart-qty .qty-btn { width: 32px; }
.cart-qty .qty-input { width: 46px; font-size: 14px; }
.cart-item-unit-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .3px;
  text-align: center;
}
.cart-item-unit-label strong { color: var(--dark); font-weight: 700; }

.cart-item-total {
  font-family: var(--font-display);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.cart-item-total-amount {
  order: 1;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
  white-space: nowrap;
}
.cart-item-trash {
  order: 2;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0;
  transition: color var(--transition), background var(--transition);
  border-radius: 50%;
  flex-shrink: 0;
}
.cart-item-trash:hover,
.cart-item-trash:focus-visible {
  color: var(--brand-red);
  background: #FEF1F2;
  outline: none;
}

@media (max-width: 767px) {
  .cart-items-header { display: none; }
  .cart-items-list > .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img body"
      "img body"
      "qty total";
    gap: 12px;
    padding: 14px;
  }
  .cart-item-img {
    grid-area: img;
    width: 80px; height: 80px;
    padding: 6px;
  }
  .cart-item-body { grid-area: body; }
  .cart-item-qty { grid-area: qty; align-items: flex-start; flex-direction: row; gap: 10px; align-items: center; }
  .cart-item-unit-label { display: none; }
  .cart-item-total {
    grid-area: total;
    text-align: right;
    font-size: 16px;
    align-self: center;
  }
  .cart-item-total-amount { font-size: 18px; }
}

/* Empty cart */
.cart-empty {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cart-empty-icon {
  width: 80px; height: 80px;
  background: var(--bg-light);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 6px;
}
.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dark);
  margin: 0;
}
.cart-empty p { color: var(--text-muted); font-size: 13px; margin: 0 0 14px; }

/* Shipping estimator */
.cart-shipping-estimator {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-red);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.cart-shipping-head h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin: 0 0 4px;
}
.cart-shipping-head small { color: var(--text-muted); font-size: 12px; }
.cart-shipping-form {
  display: grid;
  grid-template-columns: 1fr 1fr 140px auto;
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .cart-shipping-form { grid-template-columns: 1fr 1fr; }
  .cart-shipping-form .shipping-estimate-btn { grid-column: 1 / -1; }
}
.shipping-field { display: flex; flex-direction: column; gap: 4px; }
.shipping-field label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.shipping-select,
.shipping-input {
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
}
.shipping-select:focus,
.shipping-input:focus { border-color: var(--brand-red); }
.shipping-estimate-btn {
  align-self: end;
  height: 38px;
  background: var(--dark);
  color: #fff;
  border: 0;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  transition: background var(--transition);
}
.shipping-estimate-btn:hover { background: var(--brand-red); }
.cart-shipping-result {
  margin-top: 12px;
  padding: 10px 12px;
  background: #E8F5E9;
  color: var(--success);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  animation: shipRes .25s ease;
}
@keyframes shipRes {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cart note */
.cart-note {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-note summary {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.cart-note summary::-webkit-details-marker { display: none; }
.cart-note summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
  font-weight: 900;
  float: right;
  font-size: 10px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.cart-note[open] summary::after { transform: rotate(180deg); }
.cart-note-textarea {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  min-height: 80px;
  resize: vertical;
  outline: none;
}
.cart-note-textarea:focus { background: var(--bg-lighter); }

/* Summary sticky */
.cart-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Free shipping progress */
.free-ship-banner {
  padding: 12px 14px;
  background: linear-gradient(135deg, #FFF5D6 0%, #FFEBAA 100%);
  border: 1px solid #FFD966;
  border-radius: var(--radius);
  font-size: 13px;
}
.free-ship-banner.free-ship-done {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-color: #A5D6A7;
  color: var(--success);
}
.free-ship-text strong { font-weight: 800; }
.free-ship-banner.free-ship-done .free-ship-text { color: var(--success); }
.free-ship-progress {
  height: 5px;
  background: rgba(0,0,0,.08);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}
.free-ship-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red) 0%, #FFB347 100%);
  transition: width .5s cubic-bezier(.4,0,.2,1);
  border-radius: 3px;
}
.free-ship-done .free-ship-bar {
  background: linear-gradient(90deg, var(--success) 0%, #66BB6A 100%);
}

.cart-summary-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-summary-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* Coupon */
.coupon-form {
  display: flex;
  gap: 6px;
}
.coupon-input {
  flex: 1;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--dark);
  outline: none;
  text-transform: uppercase;
  transition: border-color var(--transition);
}
.coupon-input:focus { border-color: var(--brand-red); }
.coupon-input::placeholder { letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--text-muted); }
.coupon-btn {
  height: 38px;
  background: var(--dark);
  color: #fff;
  border: 0;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  cursor: pointer;
  transition: background var(--transition);
}
.coupon-btn:hover { background: var(--brand-red); }
.coupon-hint { font-size: 11px; color: var(--text-muted); }
.coupon-hint strong { color: var(--brand-red); font-weight: 800; }
.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E8F5E9;
  color: var(--success);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  animation: shipRes .25s ease;
}
.coupon-applied strong { letter-spacing: 1px; }
.coupon-remove {
  background: transparent;
  border: 0;
  color: var(--success);
  cursor: pointer;
  font-size: 14px;
  padding: 2px 6px;
  transition: color var(--transition);
}
.coupon-remove:hover { color: var(--brand-red); }

/* Summary list */
.cart-summary-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}
.cart-summary-row dt { color: var(--text-muted); font-weight: 500; margin: 0; }
.cart-summary-row dd { color: var(--dark); font-weight: 700; margin: 0; }
.cart-summary-row-discount dd.discount { color: var(--brand-red); }
.cart-summary-total {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px dashed var(--border);
}
.cart-summary-total dt {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  font-weight: 700 !important;
}
.cart-summary-total dd {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: -.3px;
}
.cart-summary-tax {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .3px;
  text-align: right;
}

/* Checkout button */
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
}
.cart-checkout-btn:hover { background: var(--dark); color: #fff; }
.cart-checkout-label { display: inline-flex; align-items: center; }
.cart-checkout-total {
  background: rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 13px;
}

.cart-tbi {
  max-width: 220px;
  align-self: center;
  opacity: .9;
  transition: opacity var(--transition);
}
.cart-tbi:hover { opacity: 1; }
.cart-tbi .tbi-banner-img { border-radius: var(--radius); }

.cart-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.cart-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .3px;
}
.cart-trust-item i { font-size: 16px; color: var(--brand-red); }

/* Payments */
.cart-payments { display: flex; flex-direction: column; gap: 6px; }
.cart-payments-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.cart-payment-images {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cart-pay-img {
  max-height: 28px;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.cart-pay-img-sm { max-height: 22px; }
.cart-payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pay-chip {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
.pay-visa { color: #1A1F71; letter-spacing: 1.2px; }
.pay-mc { color: #EB001B; }
.pay-maestro { color: #0099DF; }
.pay-tbi { color: #fff; background: #F15A29; border-color: #F15A29; text-transform: lowercase; font-size: 13px; }
.pay-cash { color: var(--success); }

/* Cart page responsive layout */
@media (max-width: 991px) {
  .cart-summary { position: static; }
}

/* Cart benefits bar */
.cart-benefits {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px 0 10px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page {
  background: var(--bg-lighter);
  padding: 28px 0 50px;
  min-height: 500px;
}
.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 2px solid #dcdfe3;
}
.checkout-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--success);
  background: #E8F5E9;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: .3px;
  margin: 0;
  line-height: 1.1;
}

/* Step indicator */
.checkout-steps {
  display: flex;
  gap: 6px;
  align-items: center;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.checkout-step .step-num {
  width: 22px; height: 22px;
  background: var(--bg-light);
  color: var(--text-muted);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}
.checkout-step.done { color: var(--success); background: #E8F5E9; border-color: #A5D6A7; }
.checkout-step.done .step-num { background: var(--success); color: #fff; }
.checkout-step.active { color: var(--brand-red); background: #FFE5E7; border-color: #FFB8BE; }
.checkout-step.active .step-num { background: var(--brand-red); color: #fff; }

/* Customer type toggle */
.checkout-customer-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ct-btn {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
}
.ct-btn i { font-size: 14px; }
.ct-btn:hover { border-color: var(--dark); color: var(--dark); }
.ct-btn.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.ct-btn.active:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); color: #fff; }
.ct-btn-sm { padding: 11px 14px; font-size: 13px; letter-spacing: .8px; }
.ct-btn-sm i { font-size: 12px; }

/* Checkout cards */
.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.checkout-card-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-lighter);
}
.checkout-card-head h2 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
}
.checkout-card-head h2 i { color: var(--brand-red); }
.checkout-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Form fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-group > label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
}
.field-group .req { color: var(--brand-red); margin-left: 2px; }
.field-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 575px) { .field-grid-2 { grid-template-columns: 1fr; } }
.field-group-wide { grid-column: 1 / -1; }

.input-with-icon {
  position: relative;
  display: flex;
  align-items: stretch;
}
.field-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--transition);
}
.form-input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px 0 38px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder { color: #B0B0B0; font-weight: 400; }
.form-input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(227,6,19,.08);
}
.input-with-icon:focus-within .field-icon { color: var(--brand-red); }

.form-select-custom {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231A1A1A' d='M5 6 0 0h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
  cursor: pointer;
}

.form-textarea {
  height: auto;
  min-height: 78px;
  padding: 10px 14px 10px 38px;
  resize: vertical;
  line-height: 1.5;
}
.input-with-icon-textarea .field-icon { top: 14px; transform: none; }
.char-counter {
  font-size: 10px;
  color: var(--text-muted);
  text-align: right;
  letter-spacing: .3px;
}

/* Password toggle & strength */
.pass-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  transition: color var(--transition);
}
.pass-toggle:hover { color: var(--brand-red); }
.pass-strength {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pass-strength-bar {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.pass-strength-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand-red);
  transition: width .25s ease, background .25s ease;
  border-radius: 3px;
}
.pass-strength-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  min-width: 70px;
}
.pass-strength[data-level="1"] .pass-strength-fill { width: 25%; background: #E74C3C; }
.pass-strength[data-level="2"] .pass-strength-fill { width: 50%; background: var(--warning); }
.pass-strength[data-level="3"] .pass-strength-fill { width: 75%; background: #FFC107; }
.pass-strength[data-level="4"] .pass-strength-fill { width: 100%; background: var(--success); }

/* Checkboxes (local) */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--dark);
  user-select: none;
  line-height: 1.4;
}
.check-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.check-row .check-box {
  width: 18px; height: 18px;
  border: 1.5px solid #C5C5C5;
  border-radius: var(--radius);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
  position: relative;
}
.check-row .check-box::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  margin-top: -2px;
  transition: transform .15s cubic-bezier(.4,0,.2,1);
}
.check-row:hover .check-box { border-color: var(--brand-red); }
.check-row input:checked + .check-box {
  background: var(--brand-red);
  border-color: var(--brand-red);
}
.check-row input:checked + .check-box::after {
  transform: rotate(-45deg) scale(1);
}
.check-row input:focus-visible + .check-box {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
.check-row-main { font-weight: 600; }
.check-row-terms { font-size: 12px; color: var(--text); }
.check-row-terms a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Login card */
.login-card { border-color: var(--dark); }
.login-card .checkout-card-head { background: var(--dark); }
.login-card .checkout-card-head h2 { color: #fff; }
.login-card .checkout-card-head h2 i { color: #fff; }
.field-row-spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.btn-login {
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-login:hover { background: var(--dark); }
.forgot-pass {
  font-size: 12px;
  color: var(--brand-red);
  text-decoration: underline;
  font-weight: 600;
}

/* Payment methods */
.payment-methods { gap: 8px; }
.pay-option {
  display: block;
  cursor: pointer;
  position: relative;
}
.pay-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.pay-visual {
  display: grid;
  grid-template-columns: 48px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: all var(--transition);
}
.pay-option:hover .pay-visual {
  border-color: var(--dark);
  background: var(--bg-lighter);
}
.pay-option input:checked + .pay-visual {
  border-color: var(--brand-red);
  background: #FFF8F8;
}
.pay-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--bg-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
}
.pay-option input:checked + .pay-visual .pay-icon {
  background: var(--brand-red);
  color: #fff;
}
.pay-icon-award { color: #B8860B; }
.pay-option input:checked + .pay-visual .pay-icon-award { background: #DAA520; color: #fff; }
.pay-icon-tbi {
  background: #F15A29;
  color: #fff;
  font-family: var(--font-sans);
  letter-spacing: .5px;
  font-size: 14px;
}
.pay-option input:checked + .pay-visual .pay-icon-tbi { background: #D24A1F; }
.pay-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pay-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.pay-text small {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}
.pay-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid #C5C5C5;
  background: #fff;
  position: relative;
  transition: border-color var(--transition);
}
.pay-option input:checked + .pay-visual .pay-radio {
  border-color: var(--brand-red);
}
.pay-option input:checked + .pay-visual .pay-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--brand-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Total card */
.checkout-total-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.checkout-total-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
}
.checkout-total-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: -.5px;
  line-height: 1;
}
.checkout-total-breakdown {
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--text-muted);
}
.checkout-total-line strong { color: var(--dark); font-weight: 700; }
.checkout-total-line .shipping-free { color: var(--success); }
.checkout-total-line-tva { font-size: 11px; color: #999; }
.checkout-total-line-tva strong { color: #999; font-weight: 600; }

.btn-finalize {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-finalize:hover { background: var(--dark); }
.btn-finalize:disabled {
  background: #CCC;
  cursor: not-allowed;
}
.btn-finalize-arrow { transition: transform var(--transition); }
.btn-finalize:hover .btn-finalize-arrow { transform: translateX(4px); }
.btn-finalize.submitted { background: var(--success); }
.btn-finalize.submitted:hover { background: var(--success); }

.checkout-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.checkout-trust i { color: var(--success); font-size: 14px; flex-shrink: 0; }

.back-to-cart {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 2px;
  transition: color var(--transition);
}
.back-to-cart:hover { color: var(--brand-red); }

/* Sticky side on desktop */
@media (min-width: 992px) {
  .checkout-sticky { position: sticky; top: 16px; }
}

.checkout-card-hint {
  margin: 0 0 6px;
  padding: 10px 12px;
  background: #E3F2FD;
  border-left: 3px solid #1976D2;
  color: #0D47A1;
  font-size: 12px;
  line-height: 1.5;
  border-radius: var(--radius);
}
.checkout-card-hint i { color: #1976D2; }
.checkout-card-hint .req { color: var(--brand-red); font-weight: 800; }
.form-input.is-invalid {
  border-color: var(--brand-red) !important;
  background: #FFF5F5;
  animation: shakeX .35s ease;
}
@keyframes shakeX {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}

/* Product carousels — smooth follow-mouse drag (scroll-snap) */
.product-carousel .carousel-inner-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 8px 0 20px;
  margin: -8px 0 -20px;
  position: relative;
}
.product-carousel .carousel-inner-scroll::-webkit-scrollbar { display: none; }
.product-carousel .carousel-inner-scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.product-carousel .carousel-item-scroll {
  display: block !important;
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  transform: none !important;
  transition: none !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  backface-visibility: visible !important;
}
.product-carousel .carousel-inner-scroll img {
  -webkit-user-drag: none;
  user-drag: none;
}
.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next { cursor: pointer; }

/* ============================================================
   PROMO FILTER SECTION — pill tabs + image grid (irum offers)
   ============================================================ */
.promo-filter-section { background: var(--bg-lighter); }
.promo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.promo-pill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .2px;
}
.promo-pill:hover {
  border-color: var(--dark);
}
.promo-pill.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.promo-pill:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .promo-grid { grid-template-columns: 1fr; }
}

.promo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition:
    border-color var(--transition),
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow var(--transition),
    opacity .4s ease;
}
.promo-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .6s cubic-bezier(.2,.8,.2,1),
    opacity .4s ease;
}
.promo-card:hover img { transform: scale(1.04); }

/* Slot swap: fade-out → swap → zoom-in (staggered) */
.promo-slot {
  will-change: opacity, transform;
}
.promo-slot.is-leaving {
  opacity: 0;
  transform: scale(.94);
  pointer-events: none;
}
.promo-slot.is-leaving img {
  opacity: .4;
  transform: scale(1.08);
}
.promo-slot.is-entering {
  opacity: 0;
  transform: scale(1.04);
}
.promo-slot.is-entering img {
  transform: scale(1.12);
}
.promo-slot.is-entered {
  opacity: 1;
  transform: scale(1);
}
.promo-slot.is-entered img {
  transform: scale(1);
}
.promo-slot[data-slot="0"].is-entered,
.promo-slot[data-slot="0"].is-entered img { transition-delay: 0ms; }
.promo-slot[data-slot="1"].is-entered,
.promo-slot[data-slot="1"].is-entered img { transition-delay: 70ms; }
.promo-slot[data-slot="2"].is-entered,
.promo-slot[data-slot="2"].is-entered img { transition-delay: 140ms; }
.promo-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
}
.promo-card-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
  z-index: 2;
}
@media (max-width: 575px) {
  .promo-card-title { font-size: 13px; padding: 22px 12px 12px; }
  .promo-card { aspect-ratio: 16 / 10; }
}

/* ============================================================
   CERE OFERTĂ — modal (produs + formular)
   ============================================================ */
.cere-oferta-modal .modal-content { border: none; border-radius: 14px; overflow: hidden; }
.cere-oferta-modal .modal-header { background: #1a1a1a; color: #fff; border: none; }
.cere-oferta-modal .modal-header .btn-close { filter: invert(1); }
.cere-oferta-product { text-align: center; padding: 1rem .75rem; background: #f6f7f9; border-radius: 12px; height: 100%; }
.cere-oferta-img { max-width: 100%; max-height: 190px; object-fit: contain; margin-bottom: .85rem; }
.cere-oferta-brand { display: inline-block; font-size: .68rem; font-weight: 800; text-transform: uppercase; color: #8a8f98; letter-spacing: .05em; }
.cere-oferta-name { font-weight: 700; font-size: .96rem; margin: .2rem 0 .1rem; line-height: 1.3; }
.cere-oferta-code { display: block; }
.cere-oferta-price { margin-top: .6rem; font-weight: 800; color: var(--brand-red, #e30613); }
.cere-oferta-form .form-label { font-size: .82rem; font-weight: 600; margin-bottom: .18rem; }
.cere-oferta-form .form-check-label a { color: var(--brand-red, #e30613); }
.btn-cere-oferta-submit { width: 100%; margin-top: .3rem; }
@media (max-width: 767px) { .cere-oferta-img { max-height: 140px; } .cere-oferta-product { margin-bottom: .5rem; } }

/* Wishlist: X închidere = round roșu Mavi; remove = trash roșu la hover */
.wishlist-close {
  width: 34px; height: 34px; flex-shrink: 0;
  margin-left: auto;
  border: 0; border-radius: 50%;
  background: var(--brand-red, #e30613); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; cursor: pointer;
  transition: background .2s, transform .2s;
}
.wishlist-close:hover { background: var(--brand-red-dark, #b3050f); transform: rotate(90deg); }
.wishlist-remove:hover { background: rgba(227, 6, 19, .1); color: var(--brand-red, #e30613); }

/* Buton „În coș" (produs deja în coș) — verde, click deschide sertarul */
.btn-add-cart.in-cart { background: var(--brand-green, #2e7d32); border-color: var(--brand-green, #2e7d32); }
.btn-add-cart.in-cart:hover { background: var(--brand-green-dark, #1b5e20); border-color: var(--brand-green-dark, #1b5e20); }

/* Sidebar taxonomie: search în grup + „mai multe filtre" */
.filter-search-wrap { position: relative; margin-bottom: 8px; }
.filter-search-wrap i { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 11px; color: #a8a8a8; }
.filter-search {
  width: 100%; padding: 7px 10px 7px 28px;
  border: 1.5px solid #e4e4e4; border-radius: 7px;
  font-size: 12.5px; background: #fafafa;
  transition: border-color .18s;
}
.filter-search:focus { outline: none; border-color: var(--brand-red, #e30613); background: #fff; }
.filter-more {
  width: 100%; border: 0; background: transparent;
  color: var(--brand-red, #e30613); font-size: 12px; font-weight: 700;
  padding: 7px 0 2px; cursor: pointer; text-align: left;
}
.filter-more:hover { text-decoration: underline; }

/* ============ FLYOUT FILTRE (stil eMAG) ============ */
.cat-sidebar .filter-group { position: static; }
.cat-sidebar { position: relative; }
.filter-flyout {
  position: fixed; z-index: 1060;
  width: min(420px, calc(100vw - 48px));
  background: #fff; border-radius: 12px;
  box-shadow: 0 18px 60px -12px rgba(0,0,0,.3), 0 0 0 1px #ececec;
  display: flex; flex-direction: column;
}
.filter-flyout-head {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-bottom: 1px solid #eee;
}
.filter-flyout-head strong { font-size: 15px; }
.filter-flyout-head .filter-search-wrap { flex: 1; max-width: 300px; margin: 0; }
.filter-flyout-close {
  margin-left: auto; width: 30px; height: 30px; border: 0; border-radius: 50%;
  background: transparent; color: #8a8a8a; cursor: pointer; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s;
}
.filter-flyout-close:hover { background: rgba(227,6,19,.08); color: var(--brand-red, #e30613); }
.filter-flyout-body {
  padding: 8px 16px 12px; overflow-y: auto; max-height: 52vh;
}
.filter-flyout-item {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0; font-size: 13px; cursor: pointer;
  break-inside: avoid; width: 100%;
}
.filter-flyout-item small { color: #9a9a9a; }
.filter-flyout-item input { position: absolute; opacity: 0; }
.filter-flyout-foot {
  display: flex; gap: 10px; padding: 12px 16px;
  border-top: 1px solid #eee;
}
.filter-flyout-apply {
  border: 0; background: var(--brand-red, #e30613); color: #fff;
  font-weight: 700; font-size: 13px; padding: 9px 22px; border-radius: 8px; cursor: pointer;
  transition: background .18s;
}
.filter-flyout-apply:hover { background: #1a1a1a; }
.filter-flyout-clear {
  border: 1.5px solid #e0e0e0; background: #fff; color: var(--text-muted, #777);
  font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: 8px; cursor: pointer;
  transition: border-color .18s, color .18s;
}
.filter-flyout-clear:hover { border-color: var(--brand-red, #e30613); color: var(--brand-red, #e30613); }
@media (max-width: 991px) {
  .filter-flyout { inset: 8vh 12px auto 12px !important; width: auto; max-height: 84vh; }
}

/* Imagine indisponibilă: logo estompat în loc de icon spart */
.img-fallback { object-fit: contain !important; opacity: .12; filter: grayscale(1); padding: 14%; }

/* Floating tab: Retragere din contract (link) */
.floating-tab-rdr { text-decoration: none; color: var(--dark, #1a1a1a); }
.floating-tab-rdr:hover { color: var(--brand-red, #e30613); }

/* ============ INFO MODAL (Livrare / Plată / Retur) ============ */
.info-modal .modal-dialog { max-width: 760px; }
.info-modal .modal-content {
  border: 0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.45);
}
.info-modal .modal-header {
  position: relative; border: 0;
  background: #1a1a1a; color: #fff;
  padding: 18px 22px;
}
.info-modal .modal-header::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(255,255,255,.05) 0 10px, transparent 10px 30px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 30px);
  pointer-events: none;
}
.info-modal .modal-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: repeating-linear-gradient(-55deg, var(--brand-red, #e30613) 0 18px, #1a1a1a 18px 36px);
}
.info-modal-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-red, #e30613); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 8px 18px -6px rgba(227,6,19,.6);
}
.info-modal-title {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 24px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px;
  margin: 0; line-height: 1.1;
}
.info-modal-close {
  margin-left: auto; width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; z-index: 1;
  transition: background .2s, transform .25s;
}
.info-modal-close:hover { background: var(--brand-red, #e30613); transform: rotate(90deg); }
.info-modal .modal-body { padding: 22px 26px; max-height: 62vh; overflow-y: auto; }
.info-modal .modal-body .cms-content { font-size: 14px; line-height: 1.7; }
.info-modal .modal-footer { border: 0; padding: 12px 22px 18px; }
.info-modal-open-page {
  font-size: 13px; font-weight: 700; color: var(--text-muted, #777); text-decoration: none;
}
.info-modal-open-page:hover { color: var(--brand-red, #e30613); }
.info-modal.fade .modal-dialog { transform: translateY(26px) scale(.98); transition: transform .28s cubic-bezier(.2,.9,.3,1.2); }
.info-modal.show .modal-dialog { transform: none; }

/* Checkout: buton 3D — bevel + press + puls + shimmer + săgeată animată */
.cart-checkout-btn {
  position: relative; overflow: hidden;
  box-shadow: 0 6px 0 var(--brand-red-darker, #9d040e), 0 14px 24px -10px rgba(227,6,19,.5);
  transition: transform .15s, box-shadow .15s, background .25s;
  animation: checkoutPulse 2.6s ease-in-out infinite;
}
.cart-checkout-btn:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 var(--brand-red-darker, #9d040e), 0 6px 12px -8px rgba(227,6,19,.5);
}
@keyframes checkoutPulse { 0%,100% { scale: 1; } 50% { scale: 1.015; } }
.cart-checkout-btn .cart-checkout-label::after {
  content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  display: inline-block; margin-left: 10px;
  animation: arrowNudge 1.4s ease-in-out infinite;
}
@keyframes arrowNudge { 0%,100% { transform: translateX(0); } 55% { transform: translateX(6px); } }
/* distanță față de ce urmează sub buton */
.cart-checkout-btn + .tbi-banner, .cart-tbi { margin-top: 18px; display: block; }
/* qty pe pagina coșului: input number la înălțimea containerului (fără gol jos) */
.cart-items-list .cart-qty-input { height: 34px; }
@media (prefers-reduced-motion: reduce) {
  .cart-checkout-btn, .cart-checkout-btn .cart-checkout-label::after { animation: none; }
}
.cart-checkout-btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  left: -80px; animation: checkoutShine 2.6s ease-in-out infinite;
}
@keyframes checkoutShine { 0%,55% { left: -80px; } 85%,100% { left: 110%; } }
.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(227, 6, 19, .55);
}
.cart-checkout-btn .cart-checkout-total {
  background: rgba(0,0,0,.18); border-radius: 8px; padding: 2px 10px;
}
.cart-checkout-btn.is-going { pointer-events: none; opacity: .85; }
@media (prefers-reduced-motion: reduce) { .cart-checkout-btn::before { animation: none; } }

/* Finalizare: butonul identic cu cel din coș (3D + puls + shimmer + săgeată), fără sumă */
.btn-finalize {
  position: relative; overflow: hidden;
  box-shadow: 0 6px 0 var(--brand-red-darker, #9d040e), 0 14px 24px -10px rgba(227,6,19,.5);
  transition: transform .15s, box-shadow .15s, background .25s;
  animation: checkoutPulse 2.6s ease-in-out infinite;
}
.btn-finalize::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  left: -80px; animation: checkoutShine 2.6s ease-in-out infinite;
}
.btn-finalize:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 var(--brand-red-darker, #9d040e), 0 6px 12px -8px rgba(227,6,19,.5);
}
.btn-finalize .btn-finalize-arrow { animation: arrowNudge 1.4s ease-in-out infinite; }
.btn-finalize:disabled { animation: none; box-shadow: none; }
.btn-finalize:disabled::before { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .btn-finalize, .btn-finalize::before, .btn-finalize .btn-finalize-arrow { animation: none; }
}

/* Dropdown cont: „Cont nou" negru (nu se vedea bine albastru) */
.btn-account-new {
  background: var(--dark, #1a1a1a) !important;
  color: #fff !important;
  border: 0 !important;
}
.btn-account-new:hover { background: var(--brand-red, #e30613) !important; color: #fff !important; }

/* Dropdown cont: butoane SIMETRICE (50/50, aceeași înălțime/tipografie) */
.account-dropdown { width: 400px; }
.account-dropdown-actions { display: flex !important; gap: 10px !important; }
.account-dropdown-actions .btn-account-login,
.account-dropdown-actions .btn-account-new {
  flex: 1 1 0 !important; width: auto !important;
  display: inline-flex !important; align-items: center; justify-content: center;
  padding: 14px 8px !important; border-radius: 0 !important;
  font-size: 13px !important; font-weight: 800 !important;
  text-transform: uppercase !important; letter-spacing: .5px !important;
  text-decoration: none !important; line-height: 1 !important;
  white-space: nowrap !important;
}

/* Tab plutitor Retragere: hover lizibil + stare deschisă (primele vizite) */
.floating-tab-rdr:hover { background: var(--brand-red, #e30613) !important; color: #fff !important; border-color: var(--brand-red, #e30613); }
.floating-tab.is-open { width: auto; padding: 0 12px; gap: 8px; color: var(--brand-red, #e30613); }
.floating-tab.is-open .floating-tab-label {
  position: static; opacity: 1; transform: none; pointer-events: auto;
  white-space: nowrap; font-size: 12px; font-weight: 800;
}

/* Pastila intro „Retragere din contract" — jos-centru, apoi zboară spre tab */
#rdrIntro {
  position: fixed; left: 50%; bottom: 20px; z-index: 1080;
  transform: translateX(-50%);
  display: inline-flex; align-items: center;
  background: var(--brand-red, #e30613); color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: .3px;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 6px 0 var(--brand-red-darker, #9d040e), 0 16px 34px -10px rgba(227,6,19,.55);
  animation: rdrIntroIn .5s cubic-bezier(.2,.9,.3,1.2) both, checkoutPulse 2.6s 1s ease-in-out infinite;
}
#rdrIntro:hover { background: #1a1a1a; color: #fff; }
@keyframes rdrIntroIn { from { transform: translateX(-50%) translateY(80px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
#rdrIntro.fly {
  animation: none;
  transition: transform 1.1s cubic-bezier(.5,-.1,.3,1), opacity 1s ease .15s;
  box-shadow: 0 10px 26px -8px rgba(227,6,19,.5);
}
.floating-tab-rdr.rdr-land { background: var(--brand-red, #e30613) !important; color: #fff !important; animation: rdrLand 2s ease; }
@keyframes rdrLand {
  0% { scale: 1; box-shadow: 0 0 0 0 rgba(227,6,19,.55); }
  15% { scale: 1.4; }
  30% { scale: 1; box-shadow: 0 0 0 14px rgba(227,6,19,0); }
  55% { scale: 1.2; box-shadow: 0 0 0 0 rgba(227,6,19,.4); }
  75% { scale: 1; box-shadow: 0 0 0 12px rgba(227,6,19,0); }
  100% { scale: 1; box-shadow: 0 0 0 0 rgba(227,6,19,0); }
}
@media (prefers-reduced-motion: reduce) { #rdrIntro { animation: none; } }

/* Butoane + spinner „sel-*" — globale (folosite pe retragere/register/recenzii/modale) */
.sel-btn-search {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-red, #e30613); color: #fff; border: 0; border-radius: 8px;
  font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .8px;
  padding: 12px 28px; text-decoration: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 10px 22px -10px rgba(227, 6, 19, .55);
}
.sel-btn-search:hover { background: #1a1a1a; color: #fff; transform: translateY(-1px); }
.sel-spinner { display: flex; justify-content: center; padding: 44px 0; }
.sel-spinner span {
  width: 54px; height: 54px; border-radius: 50%;
  border: 7px dashed var(--brand-red, #e30613);
  animation: selSpin 1.6s linear infinite;
}
@keyframes selSpin { to { transform: rotate(360deg); } }

/* Badge-uri promo pe colturile imaginii de produs (imgCatTL/TR/BL/BR) */
.pc-corner {
  position: absolute;
  max-width: 36%;
  max-height: 40px;
  width: auto; height: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
.pc-tl { top: 8px; left: 8px; }
.pc-tl-shift { top: 40px; }
.pc-tr { top: 48px; right: 8px; }
.pc-bl { bottom: 8px; left: 8px; }
.pc-br { bottom: 8px; right: 8px; }

/* Cautare: banner "iti afisam rezultate pentru..." (corectie typo) */
.search-didyoumean {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: #6a7076;
}
.search-didyoumean s { color: #b0b6bc; }
.search-didyoumean strong { color: var(--brand-red); }

.search-suggest-note {
  padding: 10px 16px 0;
  font-size: 12.5px;
  color: #6a7076;
}
.search-suggest-note strong { color: var(--brand-red); }

/* Newsletter: modal acord GDPR + feedback */
.news-gdpr-modal { border: 0; border-radius: var(--radius); overflow: hidden; }
.news-gdpr-modal .modal-header { background: var(--dark); color: #fff; border: 0; }
.news-gdpr-modal .modal-header .btn-close { filter: invert(1); }
.news-gdpr-intro { font-size: 14.5px; }
.news-gdpr-check .form-check-input { border-color: #b5bac1; }
.news-gdpr-check .form-check-input:checked { background-color: var(--brand-red); border-color: var(--brand-red); }
.news-gdpr-check label { font-size: 13.5px; line-height: 1.5; }
.news-gdpr-check a { color: var(--brand-red); font-weight: 600; }
.news-gdpr-hint { font-size: 12px; color: #8a9099; margin: 10px 0 0; }
.news-gdpr-error { margin-top: 10px; font-size: 13px; color: #a01220; background: #fdeaec; border-left: 3px solid var(--brand-red); padding: 8px 10px; border-radius: 6px; }
.btn-news-confirm { background: var(--brand-red); color: #fff; font-weight: 700; }
.btn-news-confirm:hover:not(:disabled) { background: var(--dark); color: #fff; }
.btn-news-confirm:disabled { background: #d5d8db; color: #fff; }
.newsletter-feedback { margin-top: 10px; font-size: 13.5px; font-weight: 600; color: #1a7f37; }

.checkout-error-banner {
  background: #fdeaec; color: #a01220; border-left: 4px solid var(--brand-red);
  border-radius: 8px; padding: 12px 14px; font-size: 13.5px; font-weight: 600; margin-bottom: 14px;
}

/* Contul meu: meniu + adrese + detaliu comanda */
.account-menu-link {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: #4a4f57; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background .15s, color .15s;
}
.account-menu-link:hover { background: #f4f5f7; color: var(--brand-red); }
.account-menu-link.active { background: rgba(227,6,19,.08); color: var(--brand-red); }
.account-orders > tbody > tr > td { vertical-align: middle; }
.account-order-detail { background: #fafbfc; }
.account-order-meta { background: #fff; border: 1px solid #eef0f2; border-radius: 10px; padding: 12px 14px; font-size: 13.5px; }
.account-address { position: relative; border: 1px solid #e8eaed; border-radius: 10px; padding: 14px; height: 100%; }
.account-address.is-default { border-color: var(--brand-red); }
.account-address-badge { position: absolute; top: -9px; right: 12px; }

.account-menu-exit { color: #a01220; }
.account-menu-exit:hover { background: #fdeaec; color: #a01220; }
.account-order-modal-head { background: var(--dark, #1a1a1a); color: #fff; }
.account-order-modal-head small { color: #b5bac1; }

/* Checkout: avertizare vizibila la acorduri nebifate */
.check-row.is-invalid span { color: #a01220; }
.check-row.is-invalid .check-box {
  border-color: var(--brand-red) !important;
  box-shadow: 0 0 0 3px rgba(227,6,19,.18);
  animation: mvShakeX .4s ease;
}
.check-row-error {
  color: #a01220; font-size: 12.5px; font-weight: 600;
  margin: 4px 0 10px 30px;
}
@keyframes mvShakeX {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Checkout: login client existent + banner logat */
.login-error {
  margin-top: 10px; font-size: 13px; font-weight: 600; color: #a01220;
  background: #fdeaec; border-left: 3px solid var(--brand-red); padding: 8px 10px; border-radius: 6px;
}
.checkout-logged-banner {
  background: #eefbf1; border: 1px solid #bfe8cb; color: #14532d;
  border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 16px;
}
.checkout-logged-banner a { color: var(--brand-red); font-weight: 600; }

/* Checkout: campuri obligatorii necompletate */
.form-input.is-invalid {
  border-color: var(--brand-red) !important;
  box-shadow: 0 0 0 3px rgba(227,6,19,.12);
  animation: mvShakeX .4s ease;
}
.field-error {
  color: #a01220; font-size: 12.5px; font-weight: 600; margin-top: 5px;
}

/* Pagina contact: card formular */
.contact-form-card {
  background: #fff; border: 1px solid #e6e8eb; border-top: 4px solid var(--brand-red);
  border-radius: 12px; padding: 24px; box-shadow: 0 10px 30px -18px rgba(0,0,0,.2);
}
.contact-form-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; }

/* Cautare rapida in grupul de filtre */
.filter-quick-wrap { position: relative; margin: 2px 0 8px; }
.filter-quick-wrap i {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  font-size: 11px; color: #9a9a9a; pointer-events: none;
}
.filter-quick-search {
  width: 100%; border: 1.5px solid #e4e4e4; border-radius: 8px;
  padding: 6px 10px 6px 28px; font-size: 12.5px; font-weight: 600;
  background: #fafafa; outline: none;
  transition: border-color .15s, background .15s;
}
.filter-quick-search:focus { border-color: var(--brand-red); background: #fff; }

/* Sectiune imagine cu tag-uri: varianta pe din doua */
.tagged-image-row { display: flex; }
.tagged-image-row.tagged-split { gap: 14px; }
.tagged-image-row.tagged-split .tagged-image { flex: 1 1 50%; min-width: 0; }
.tagged-image-row .tagged-image { flex: 1 1 100%; }
@media (max-width: 767px) {
  .tagged-image-row.tagged-split { flex-direction: column; }
}
