@charset "UTF-8";

:root {
  --blue: #06388d;
  --blue-dark: #002876;
  --blue-soft: #eaf3ff;
  --cyan: #31bfc2;
  --orange: #f58200;
  --orange-dark: #dd6e00;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #f8fafc;
  --white: #fff;
  --success: #10b981;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --container: 1540px;
}

/* Service-backed catalog */
.mega-menu.dynamic-mega-menu {
  min-height: 330px;
  grid-template-columns: 220px minmax(360px, 1fr) minmax(230px, 1.1fr);
}
.dynamic-parent-link {
  min-height: 38px;
  padding: 0 8px 0 10px;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
}
.dynamic-parent-link:hover {
  color: var(--blue);
  background: #f0f7ff;
  border-left-color: var(--blue);
}
.dynamic-parent-link b { color: #64748b; font-size: 16px; font-weight: 400; }
.dynamic-category-column h3 a { color: inherit; }
.dynamic-child-panels {
  min-width: 0;
  display: grid;
}
.dynamic-child-panel {
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid #e2e8f0;
}
.dynamic-child-panel[hidden] { display: none; }
.dynamic-child-panel .mega-simple-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.dynamic-child-panel .mega-simple-links a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-promo-card.dynamic-category-promo {
  grid-column: -2 / -1;
  margin: 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background: linear-gradient(160deg, #f0f7ff, #e2e8f0);
}
.dynamic-category-promo span,
.dynamic-category-promo strong { position: relative; z-index: 2; }
.dynamic-category-promo span { color: #475569; font-size: 13px; }
.dynamic-category-promo img { width: 80%; height: 70%; right: 10%; bottom: 45px; }
.story-orb img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.category-child-links {
  margin: -4px 0 22px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.category-child-links a {
  min-width: 150px;
  min-height: 54px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #334155;
  background: #fff;
  font-size: 12.5px;
  font-weight: 700;
}
.category-child-links a:hover { color: var(--blue); border-color: var(--blue); }
.category-child-links img { width: 34px; height: 34px; object-fit: contain; }
.filter-category-link { display: block; padding: 5px 0; color: #475569; font-size: 12.5px; }
a.filter-category-link:hover { color: var(--blue); }
.category-path-summary { color: #64748b; font-size: 12px; line-height: 1.6; }
.stock-available { color: #16a34a; font-weight: 700; }
.stock-unavailable { color: #dc2626; font-weight: 700; }
.detail-badge { position: static; display: inline-flex; margin-bottom: 8px; }
.detail-old-price { margin-top: 14px; color: #94a3b8; font-size: 15px; }
.product-description { white-space: pre-line; }
.product-review { padding: 12px 0; border-bottom: 1px solid var(--line); }
.product-review p { margin: 5px 0 0; }

@media (max-width: 980px) {
  .dynamic-category-nav { display: none; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.muted { color: var(--muted); }
.orange { color: var(--orange); }
.blue { color: var(--blue); }
.section { padding: 36px 0; }
.section-sm { padding: 20px 0; }

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
}
.section-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
}
.section-title a {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.section-title a:hover {
  text-decoration: underline;
}

.eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  transition: all .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 4px 12px rgba(245, 130, 0, .2); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-blue { color: #fff; background: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline { color: var(--blue); background: #fff; border-color: #cbd5e1; }
.btn-outline:hover { background: var(--surface); border-color: #94a3b8; }
.btn-soft { color: var(--blue); background: var(--blue-soft); }
.btn-block { width: 100%; }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

/* Header */
/* Header Top Info Bar */
.promo-bar {
  min-height: 38px;
  background: var(--blue-dark, #072854);
  color: #f1f5f9;
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.promo-bar .container,
.promo-bar-container {
  height: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.header-top-svg {
  flex-shrink: 0;
  color: #38bdf8;
}
.header-top-city {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.header-top-text {
  color: #cbd5e1;
  font-weight: 400;
}
.header-top-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-top-quick-order {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 6px;
  color: #fbbf24 !important;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.header-top-quick-order:hover {
  background: rgba(245, 158, 11, 0.28);
  border-color: #f59e0b;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}
.header-top-quick-order .bolt-icon {
  font-size: 13px;
}
.header-top-hours {
  flex-shrink: 0;
}
.header-top-hours-label {
  color: #94a3b8;
  font-weight: 500;
}
.header-top-hours-value {
  color: #38bdf8;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
}
.main-header {
  height: 84px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.main-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.brand-logo-img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .brand-logo-img {
    height: 44px;
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 480px) {
  .brand-logo-img {
    height: 40px;
    max-width: 190px;
    margin: 0 auto;
    display: block;
  }
}
.brand-footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.brand-footer-logo-img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .brand-footer-logo-img {
    height: 42px;
    max-width: 190px;
  }
}
@media (max-width: 480px) {
  .brand-footer-logo-img {
    height: 36px;
    max-width: 160px;
  }
}
.brand-mark { width: 44px; height: 42px; position: relative; flex: 0 0 44px; }
.brand-mark::before, .brand-mark::after, .brand-mark span { content: ""; position: absolute; border-radius: 50%; }
.brand-mark::before { width: 28px; height: 28px; left: 2px; top: 3px; background: var(--cyan); }
.brand-mark::after { width: 27px; height: 27px; right: 1px; bottom: 1px; background: var(--blue); }
.brand-mark span { width: 12px; height: 12px; right: 8px; top: 4px; background: var(--orange); border: 2.5px solid #fff; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { color: #0f172a; font-size: 18px; font-weight: 900; letter-spacing: -0.5px; }
.brand-name strong { color: var(--blue); }
.brand-tagline { margin-top: 3px; color: var(--blue); font-size: 10px; font-style: italic; font-weight: 700; }

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 660px;
  min-width: 220px;
}
.site-search {
  height: 48px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-search:hover {
  background: #ffffff;
  border-color: #94a3b8;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.site-search:focus-within {
  background: #ffffff;
  border-color: #072854;
  box-shadow: 0 4px 20px -2px rgba(7, 40, 84, 0.12), 0 0 0 3.5px rgba(7, 40, 84, 0.08);
}
.search-icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 14px;
  padding-right: 4px;
  color: #64748b;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.site-search:focus-within .search-icon-left {
  color: #072854;
}
.site-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.site-search input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  transition: color 0.2s ease;
}
.site-search:focus-within input::placeholder {
  color: #cbd5e1;
}
.search-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  margin-right: 6px;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.search-clear-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
  transform: scale(1.08);
}
.search-button {
  margin: 4px 4px 4px 2px;
  height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  border: none;
  background: linear-gradient(135deg, #072854 0%, #0c3d7e 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(7, 40, 84, 0.2);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-button:hover {
  background: linear-gradient(135deg, #0a356e 0%, #114c9c 100%);
  box-shadow: 0 4px 12px rgba(7, 40, 84, 0.32);
  transform: translateY(-1px);
}
.search-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(7, 40, 84, 0.2);
}
.search-btn-icon {
  flex-shrink: 0;
}
.search-btn-text {
  font-size: 13.5px;
}

/* Enhanced live search popover */
.search-suggestions {
  position: absolute;
  inset: 54px 0 auto;
  z-index: 9999;
  padding: 8px 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
  max-height: 480px;
  overflow-y: auto;
  display: none;
  animation: searchDropFade 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes searchDropFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-suggestions.show { display: block; }
.search-suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  transition: background 0.15s ease;
  text-decoration: none;
}
.search-suggestion:hover {
  background: #f8fafc;
}
.search-suggestion img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 2px;
}
.search-suggestion strong {
  display: block;
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 600;
}
.search-suggestion span {
  font-size: 12.5px;
}

/* Classic Modern User Actions (Seamless / Borderless) */
.user-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-action-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px;
  background: transparent;
  border: none;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.header-action-card:hover {
  background: transparent;
  transform: translateY(-1px);
}
.header-action-card:hover .action-title {
  color: #0c4a96;
}
.header-action-card:hover .action-svg {
  color: #0c4a96;
  transform: scale(1.05);
}
.action-icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  color: #072854;
  background: transparent;
}
.action-svg {
  transition: all 0.2s ease;
}
.action-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.action-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  letter-spacing: -0.1px;
  transition: color 0.15s ease;
}
.action-subtitle {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

/* Cart Specific Style (Borderless) */
.cart-card {
  background: transparent;
  border: none;
  box-shadow: none;
}
.cart-card .action-icon-box {
  color: #072854;
  background: transparent;
}
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -7px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: #b91c1c;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
  box-shadow: 0 1px 3px rgba(185, 28, 28, 0.3);
}
.cart-total-text,
#cartTotal,
.cart-total {
  font-weight: 800;
  color: #072854;
  transition: color 0.15s ease;
}
.cart-card:hover .cart-total-text,
.cart-card:hover #cartTotal {
  color: #0c4a96;
}

.category-nav { position: relative; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.category-nav .container { height: 48px; display: flex; align-items: stretch; justify-content: space-between; gap: 0; }
.nav-item { display: flex; align-items: stretch; flex: 1 1 0px; justify-content: center; }
.nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 10px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  color: #334155;
  transition: all .15s ease;
}
.nav-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 6px;
  font-size: 13px;
  overflow: hidden;
  transition: background .15s ease, color .15s ease;
}
.nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.nav-item:hover > a, .nav-item > a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: #f8fafc;
}
.nav-item:hover .nav-icon, .nav-item > a.active .nav-icon {
  background: var(--blue);
  color: #fff;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(calc(100vw - 32px), var(--container));
  min-height: 440px;
  transform: translateX(-50%) translateY(-6px);
  display: grid;
  grid-template-columns: 220px minmax(200px, 1fr) minmax(160px, .8fr) minmax(140px, .65fr) minmax(360px, 1.4fr);
  background: #fff;
  border: 1px solid #dce3eb;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .15);
  opacity: 0;
  visibility: hidden;
  transition: .18s ease;
  z-index: 100;
  overflow: hidden;
}
.nav-item:hover .mega-menu, .nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu h3 { margin: 0 0 14px; color: var(--blue); font-size: 14.5px; font-weight: 800; }
.mega-primary-col, .mega-secondary-col, .mega-list-col { padding: 24px 20px; border-right: 1px solid #e2e8f0; }
.mega-all-link {
  min-height: 40px;
  padding: 0 0 12px;
  border-bottom: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 800;
}
.mega-all-link b { margin-left: auto; font-size: 20px; font-weight: 400; }
.mega-parent-list { display: grid; gap: 2px; margin-top: 16px; }
.mega-parent-link {
  width: 100%;
  min-height: 38px;
  padding: 0 8px 0 10px;
  border: 0;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
}
.mega-parent-link b { color: #64748b; font-size: 16px; font-weight: 400; }
.mega-parent-link:hover, .mega-parent-link.active {
  color: var(--blue);
  background: #f0f7ff;
  border-left-color: var(--blue);
}
.mega-path { margin-bottom: 16px; color: #94a3b8; font-size: 11px; }
.mega-path strong { color: #1e293b; }
.mega-secondary-links, .mega-simple-links { display: grid; gap: 10px; }
.mega-secondary-links a {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
}
.mega-secondary-links a span { color: #94a3b8; font-size: 16px; }
.mega-secondary-links a:hover, .mega-simple-links a:hover { color: var(--blue); }
.mega-simple-links a { color: #475569; font-size: 12.5px; }

.mega-promo-grid { padding: 20px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; background: #f8fafc; }
.mega-promo-card { padding: 16px; border: 1px solid #e2e8f0; border-radius: 12px; position: relative; overflow: hidden; color: var(--blue); background: linear-gradient(150deg, #f8fafc, #edf2f7); }
.mega-promo-card strong { position: relative; z-index: 2; display: block; max-width: 160px; font-size: 14px; line-height: 1.25; }
.mega-promo-card img { position: absolute; right: 4px; bottom: 4px; width: 55%; height: 70%; object-fit: contain; }
.mega-promo-tall { grid-column: 2; grid-row: 1 / 3; padding: 20px; background: linear-gradient(160deg, #f0f7ff, #e2e8f0); }
.mega-promo-tall strong { max-width: 190px; font-size: 18px; }
.mega-promo-tall img { right: 5%; bottom: 40px; width: 85%; height: 65%; }
.mega-promo-tall span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  min-height: 34px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  font-size: 12px;
}

.mobile-nav, .mobile-tab-bar, .mobile-bar { display: none !important; }

/* Announcement Ticker */
.announcement-ticker {
  background: var(--blue-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  user-select: none;
}
.announcement-ticker::before,
.announcement-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.announcement-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--blue-dark), transparent);
}
.announcement-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--blue-dark), transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 50px;
  animation: tickerScroll 28s linear infinite;
}
.announcement-ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Story Strip */
.story-strip { padding: 18px 0 10px; position: relative; }
.stories {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 4px 0 10px;
}
.stories::-webkit-scrollbar { display: none; }
.story {
  flex: 1 1 0px;
  min-width: 0;
  text-align: center;
  color: #334155;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, color .15s ease;
  white-space: nowrap;
}
.story:hover { color: var(--blue); }
.story-orb {
  width: 76px;
  height: 76px;
  margin: 0 auto 8px;
  padding: 4px;
  border: 3px solid #38bdf8;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  transition: transform .2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .2s ease, box-shadow .2s ease;
}
.story:hover .story-orb {
  transform: scale(1.08);
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 59, 150, .22);
}
.story-orb span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0fdfa, #e0f2fe);
  font-size: 28px;
}

/* Hero */
.hero-wrap { padding: 10px 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.hero-main {
  min-height: 385px;
  padding: 46px 48px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #003b96 0%, #0972c7 45%, #0284c7 75%, #34c3c3 100%);
  background-size: 200% 200%;
  animation: heroMeshShift 14s ease-in-out infinite;
  transition: background .8s ease;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.4;
}
.hero-bg-orb1 {
  position: absolute;
  top: -60px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(35px);
  animation: heroFloatOrb1 12s ease-in-out infinite;
}
.hero-bg-orb2 {
  position: absolute;
  bottom: -60px;
  right: 120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(56, 189, 248, 0) 70%);
  filter: blur(40px);
  animation: heroFloatOrb2 16s ease-in-out infinite;
}
@keyframes heroFloatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(50px, 25px) scale(1.2); opacity: 0.95; }
}
@keyframes heroFloatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-40px, -35px) scale(1.25); opacity: 0.9; }
}
@keyframes heroMeshShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease, transform .2s ease, color .2s ease;
}
.hero-main:hover .hero-arrow { opacity: 1; }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.hero-slide {
  position: relative;
  z-index: 3;
  max-width: 55%;
  transition: opacity .25s ease;
}
.hero-kicker { display: inline-flex; align-items: center; height: 28px; padding: 0 12px; border-radius: 14px; color: var(--blue); background: #fff; font-size: 11px; font-weight: 900; }
.hero-main h1 { margin: 16px 0 12px; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.1; font-weight: 900; letter-spacing: -1.2px; }
.hero-main p { margin: 0 0 24px; font-size: 15.5px; opacity: .95; line-height: 1.5; }
.hero-products { position: absolute; inset: 25px 25px 0 auto; width: 44%; z-index: 2; }
.hero-product-card {
  position: absolute;
  width: 175px;
  height: 200px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 32px rgba(0,23,73,.22);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .3s ease;
}
.hero-product-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-product-card:nth-child(1) { right: 0; top: 0; transform: rotate(4deg); }
.hero-product-card:nth-child(2) { left: 5px; top: 65px; transform: rotate(-5deg); }
.hero-product-card:hover {
  transform: scale(1.06) rotate(0deg) !important;
  z-index: 4;
}
.hero-dots { position: absolute; left: 48px; bottom: 24px; display: flex; gap: 8px; z-index: 5; }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: all .2s ease; }
.hero-dot.active { width: 26px; border-radius: 6px; background: #fff; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.mini-promo { min-height: 184px; padding: 26px; border-radius: 16px; overflow: hidden; position: relative; display: flex; flex-direction: column; justify-content: center; }
.mini-promo:first-child { background: #fff7ed; border: 1px solid #fed7aa; }
.mini-promo:last-child { color: #fff; background: linear-gradient(140deg, #07357e, #3f55a7); }
.mini-promo h3 { max-width: 200px; margin: 0 0 6px; font-size: 19px; font-weight: 800; line-height: 1.2; }
.mini-promo p { max-width: 190px; margin: 0 0 10px; font-size: 12px; }
.mini-promo .discount-bubble { position: absolute; right: -10px; bottom: -18px; width: 100px; height: 100px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: #fff; font-size: 26px; font-weight: 900; transform: rotate(-10deg); }

.trust-row { margin-top: 14px; padding: 14px 20px; border: 1px solid var(--line); border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; background: #fff; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 2px 10px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); background: var(--blue-soft); font-size: 18px; }
.trust-item strong { display: block; font-size: 12.5px; color: #0f172a; }
.trust-item span { color: var(--muted); font-size: 11px; }

/* Banner Duo Section */
.section-sm { padding: 20px 0; }
.banner-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.category-banner {
  min-height: 220px;
  padding: 32px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-banner:first-child {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
}
.category-banner:last-child {
  background: linear-gradient(135deg, #0f2b5c 0%, #0284c7 60%, #06b6d4 100%);
}
.category-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}
.category-banner .eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38bdf8;
  margin-bottom: 6px;
}
.category-banner h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1.2;
  color: #fff;
  max-width: 62%;
}
.category-banner p {
  font-size: 13.5px;
  opacity: 0.9;
  margin: 0 0 18px;
  max-width: 58%;
  line-height: 1.4;
  color: #f1f5f9;
}
.category-banner .btn {
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  border: none;
}
.category-banner .btn-blue {
  background: #0284c7;
  color: #fff;
}
.category-banner .btn-blue:hover {
  background: #0369a1;
}
.category-banner .art {
  position: absolute;
  right: 15px;
  bottom: 10px;
  top: 10px;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.category-banner .art img {
  position: absolute;
  width: 120px;
  height: 140px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  transition: transform .3s ease;
}
.category-banner .art img:nth-child(1) {
  right: 0;
  transform: rotate(6deg);
}
.category-banner .art img:nth-child(2) {
  right: 60px;
  top: 20px;
  transform: rotate(-8deg);
}
.category-banner:hover .art img:nth-child(1) {
  transform: rotate(2deg) scale(1.05);
}
.category-banner:hover .art img:nth-child(2) {
  transform: rotate(-4deg) scale(1.05);
}
@media (max-width: 768px) {
  .banner-duo { grid-template-columns: 1fr; }
}

/* Product Grid & Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.product-card {
  min-width: 0;
  min-height: 440px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #cbd5e1;
}
.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
}
.product-badge.orange { background: var(--orange); }
.product-card > .favorite-btn {
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 50%;
  color: #6d7c8e;
  background: rgba(255,255,255,.96);
  box-shadow: 0 3px 10px rgba(15,23,42,.12);
  font-size: 20px;
  display: grid;
  place-items: center;
}
.favorite-btn.active { color: #ef4444; }

.product-image {
  width: 100%;
  height: 180px;
  padding: 12px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.product-image img {
  max-width: 100%;
  max-height: 155px;
  object-fit: contain;
}
.product-code {
  color: #94a3b8;
  font-size: 11px;
  margin-bottom: 4px;
}
.product-name {
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}
.product-features {
  color: #64748b;
  font-size: 11px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-row {
  margin-top: auto;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.price {
  color: var(--orange);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.vat { color: #94a3b8; font-size: 10px; font-weight: 600; }
.unit-price { color: #64748b; font-size: 10px; }

.add-cart {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  font-size: 13px;
  transition: .15s ease;
}
.add-cart:hover { background: var(--orange-dark); }
.add-cart.btn-added, .btn.btn-added { background: var(--success) !important; color: #fff !important; }

/* Banners */
.banner-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.category-banner { min-height: 200px; padding: 28px; border-radius: 14px; overflow: hidden; position: relative; background: #e8f6f7; }
.category-banner:nth-child(2) { color: #fff; background: #0b3c91; }
.category-banner h3 { max-width: 300px; margin: 0 0 8px; font-size: 24px; font-weight: 800; line-height: 1.15; }
.category-banner p { max-width: 270px; margin: 0 0 14px; opacity: .85; font-size: 13px; }
.category-banner .art { position: absolute; right: 18px; bottom: -5px; width: 190px; height: 165px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.category-banner .art img { width: 100%; height: 100%; object-fit: contain; }

.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.brand-card { height: 76px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; background: #fff; color: #475569; font-size: 17px; font-weight: 800; transition: .2s; }
.brand-card:hover { color: var(--blue); border-color: var(--blue); box-shadow: var(--shadow); }

.discovery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.discovery-card { min-height: 140px; padding: 20px; border-radius: 12px; background: var(--surface); position: relative; overflow: hidden; border: 1px solid var(--line); }
.discovery-card::after { content: attr(data-icon); position: absolute; right: 10px; bottom: -15px; font-size: 65px; opacity: .14; }
.discovery-card strong { display: block; max-width: 140px; font-size: 17px; }
.discovery-card span { display: block; margin-top: 8px; color: var(--blue); font-weight: 800; font-size: 11.5px; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); margin-top: 12px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 18px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; font-weight: 700; font-size: 15px; color: #1e293b; cursor: pointer; user-select: none; transition: color .2s ease; }
.faq-question:hover { color: var(--blue); }
.faq-question::after { content: "+"; color: var(--blue); font-size: 24px; font-weight: 600; line-height: 1; margin-left: 12px; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: "\2212"; color: #0284c7; }
.faq-answer { display: none; padding: 0 0 18px 0; color: #475569; }
.faq-item.open .faq-answer { display: block !important; }
.faq-answer p { margin: 0; padding: 0 24px 0 0; font-size: 14px; line-height: 1.65; color: #475569; }

/* Page Shell & Categories */
.page-shell { min-height: 60vh; padding: 24px 0 48px; background: #fff; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: #94a3b8; font-size: 12px; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.page-heading { margin: 0 0 20px; color: #0f172a; font-size: 28px; font-weight: 800; letter-spacing: -.5px; }

/* Campaigns */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  width: 100%;
}
.campaign-card {
  position: relative;
  overflow: hidden;
  padding: 36px 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  border: 1px solid #dce6f2;
  box-shadow: 0 4px 18px rgba(0, 39, 150, .06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 39, 150, .12);
  border-color: #38bdf8;
}
.campaign-card::after {
  content: attr(data-symbol);
  position: absolute;
  right: 20px;
  bottom: -15px;
  font-size: 96px;
  font-weight: 900;
  color: var(--blue);
  opacity: .08;
  pointer-events: none;
  line-height: 1;
}
.campaign-card h2 {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.25;
}
.campaign-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 24px;
  line-height: 1.5;
}
.campaign-card .btn {
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 12px rgba(6, 56, 141, .2);
}
.campaign-card .btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 56, 141, .3);
}

.category-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 24px; align-items: start; }
.filter-panel { position: sticky; top: 180px; }
.filter-group { margin-bottom: 10px; border: 1px solid var(--line); border-top: 3px solid var(--cyan); background: #f8fafc; border-radius: 8px; overflow: hidden; }
.filter-title { width: 100%; min-height: 40px; padding: 0 12px; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; font-weight: 800; font-size: 13px; text-align: left; color: #1e293b; }
.filter-title::after { content: "⌄"; color: var(--blue); font-size: 16px; }
.filter-options { padding: 4px 12px 12px; display: grid; gap: 8px; color: #64748b; font-size: 12px; }
.filter-group.closed .filter-options { display: none; }
.filter-group.closed .filter-title::after { transform: rotate(-90deg); }
.check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.check input { accent-color: var(--blue); }

/* Price Range Filter Widget */
.price-filter-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.price-filter-input {
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 0 6px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  color: #1e293b;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.price-filter-input::-webkit-outer-spin-button,
.price-filter-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-filter-input:focus {
  border-color: #0c4a96;
  box-shadow: 0 0 0 2px rgba(12, 74, 150, 0.15);
}
.price-filter-separator {
  color: #94a3b8;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.price-filter-btn {
  height: 34px;
  padding: 0 10px;
  background: #0c4a96;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.price-filter-btn:hover {
  background: #072854;
}
.price-presets {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.price-preset-item {
  display: block;
  padding: 3px 6px;
  border-radius: 4px;
  color: #64748b;
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.price-preset-item:hover {
  background: #e2e8f0;
  color: #0c4a96;
}

.results-bar { min-height: 48px; margin-bottom: 14px; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; }
.results-bar select { border: 0; outline: 0; color: #334155; font-size: 13px; background: #fff; }
.category-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.category-copy { margin-top: 32px; padding: 24px; border-top: 1px solid var(--line); color: #64748b; font-size: 13px; }
.category-copy h2 { color: #0f172a; font-size: 20px; margin: 0 0 8px; }

/* Product Detail */
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 40px; }
.gallery { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 14px; }
.thumbs { display: grid; align-content: start; gap: 8px; }
.thumb { width: 68px; height: 68px; padding: 4px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.thumb.active { border: 2px solid var(--cyan); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-main { min-height: 420px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; }
.gallery-main img { max-height: 380px; width: 100%; object-fit: contain; }
.product-summary h1 { margin: 0 0 8px; font-size: 24px; font-weight: 800; line-height: 1.25; color: #0f172a; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px 16px; padding-bottom: 12px; color: #64748b; font-size: 12px; }
.rating { padding: 10px 0 14px; border-top: 1px solid var(--line); color: #475569; font-size: 13px; }
.stars { color: #f59e0b; }
.detail-price { color: var(--orange); font-size: 32px; font-weight: 900; letter-spacing: -.8px; }
.detail-price small { color: #94a3b8; font-size: 13px; font-weight: normal; }
.detail-unit { margin-bottom: 18px; color: #64748b; font-size: 12.5px; }
.buy-row { display: grid; grid-template-columns: 100px minmax(0, 1fr) 46px; gap: 8px; }
.qty-select { border: 1px solid var(--line); border-radius: 8px; padding: 0 10px; background: #fff; font-size: 13px; }
.detail-actions { display: flex; justify-content: center; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #64748b; font-size: 12px; }
.feature-box { padding-top: 18px; }
.feature-box h3 { margin: 0 0 10px; font-size: 15px; }
.feature-list { display: grid; gap: 8px; color: #475569; font-size: 12.5px; }
.feature-list span::before { content: "✓"; margin-right: 8px; color: var(--success); font-weight: 900; }
.delivery-note { margin-top: 18px; padding: 12px; border-radius: 8px; color: #166534; background: #f0fdf4; border: 1px solid #bbf7d0; font-size: 12.5px; }
.tabs { margin-top: 36px; }
.tab-buttons { display: flex; border-bottom: 1px solid var(--line); overflow-x: auto; }
.tab-button { padding: 14px 20px; border: 0; border-bottom: 3px solid transparent; background: #fff; white-space: nowrap; font-weight: 700; color: #64748b; font-size: 13.5px; }
.tab-button.active { color: var(--blue); border-color: var(--blue); }
.tab-panel { display: none; padding: 22px 4px; color: #475569; font-size: 13.5px; line-height: 1.6; }
.tab-panel.active { display: block; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.cart-items { display: grid; gap: 12px; }
.cart-item { padding: 16px; border: 1px solid var(--line); border-radius: 10px; display: grid; grid-template-columns: 85px 1fr 100px 120px 32px; align-items: center; gap: 14px; background: #fff; }
.cart-item img { width: 80px; height: 80px; object-fit: contain; }
.cart-item h3 { margin: 0 0 4px; font-size: 14px; color: #0f172a; }
.cart-qty { height: 36px; border: 1px solid var(--line); border-radius: 6px; padding: 0 8px; }
.cart-price { color: var(--orange); font-size: 16px; font-weight: 900; }
.remove-item { border: 0; background: transparent; color: #94a3b8; font-size: 22px; cursor: pointer; padding: 4px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; }
.remove-item:hover { color: #ef4444; background: #fee2e2; }
.cart-summary { position: sticky; top: 180px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); background: #fff; }
.cart-summary h2 { margin-top: 0; font-size: 17px; }
.summary-line { display: flex; justify-content: space-between; padding: 9px 0; color: #64748b; font-size: 13px; }
.summary-line.total { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); color: #0f172a; font-size: 18px; font-weight: 900; }
.empty-cart { padding: 50px 20px; border: 1px dashed #cbd5e1; border-radius: 12px; text-align: center; background: #fff; }
.empty-cart .big-icon { font-size: 60px; margin-bottom: 12px; }

/* Checkout Flow */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 26px; align-items: start; margin-top: 14px; }
.checkout-steps-bar { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 20px; margin-bottom: 20px; box-shadow: 0 2px 6px rgba(0,0,0,.03); }
.checkout-step-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #94a3b8; }
.checkout-step-item.active { color: var(--blue); }
.checkout-step-item.completed { color: #10b981; }
.checkout-step-num { width: 26px; height: 26px; border-radius: 50%; background: #f1f5f9; color: #64748b; display: grid; place-items: center; font-weight: 800; font-size: 12px; flex: 0 0 26px; }
.checkout-step-item.active .checkout-step-num { background: var(--blue); color: #fff; }
.checkout-step-item.completed .checkout-step-num { background: #10b981; color: #fff; }
.checkout-step-divider { flex: 1; height: 2px; background: #e2e8f0; margin: 0 12px; }
.checkout-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); margin-bottom: 20px; }
.checkout-card h2 { margin: 0 0 14px; font-size: 17px; font-weight: 800; color: #0f172a; display: flex; align-items: center; gap: 8px; }
.account-option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.account-option-card { border: 2px solid var(--line); border-radius: 10px; padding: 16px 12px; text-align: center; cursor: pointer; background: #fff; transition: all .15s ease; user-select: none; }
.account-option-card:hover { border-color: #93c5fd; transform: translateY(-2px); }
.account-option-card.active { border-color: var(--blue); background: #f0f7ff; box-shadow: 0 4px 10px rgba(0, 59, 150, .08); }
.account-option-icon { font-size: 26px; margin-bottom: 6px; }
.account-option-title { font-size: 13.5px; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.account-option-desc { font-size: 11px; color: #64748b; line-height: 1.35; }
.customer-type-toggle { display: inline-flex; background: #f1f5f9; border-radius: 8px; padding: 3px; gap: 3px; margin-bottom: 16px; }
.customer-type-btn { padding: 7px 16px; border: 0; border-radius: 6px; font-size: 12.5px; font-weight: 700; color: #64748b; background: transparent; cursor: pointer; transition: .15s ease; }
.customer-type-btn.active { background: #fff; color: var(--blue); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.payment-tabs-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.payment-tab-btn { border: 2px solid var(--line); border-radius: 8px; padding: 10px; text-align: center; background: #fff; cursor: pointer; font-weight: 700; font-size: 12.5px; color: #334155; transition: .15s ease; }
.payment-tab-btn:hover { border-color: #93c5fd; }
.payment-tab-btn.active { border-color: var(--blue); background: #eff6ff; color: var(--blue); }
.card-preview-box { background: linear-gradient(135deg, #1e3a8a, #0f172a); color: #fff; border-radius: 12px; padding: 18px 22px; margin-bottom: 18px; box-shadow: 0 8px 20px rgba(15, 23, 42, .2); }
.card-preview-chip { width: 34px; height: 22px; border-radius: 4px; background: linear-gradient(135deg, #fbbf24, #d97706); margin-bottom: 12px; }
.card-preview-num { font-family: 'Courier New', monospace; font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; }
.card-preview-footer { display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; color: #cbd5e1; }
.installment-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 12.5px; }
.installment-table th { background: #f8fafc; padding: 8px 10px; text-align: left; border: 1px solid var(--line); color: #475569; }
.installment-table td { padding: 8px 10px; border: 1px solid var(--line); }
.installment-table tr.selected { background: #f0fdf4; font-weight: 700; }
.bank-list { display: grid; gap: 8px; }
.bank-item { border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; background: #f8fafc; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: .15s ease; }
.bank-item.active { border-color: var(--blue); background: #eff6ff; }
.order-success-card { text-align: center; padding: 44px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); max-width: 650px; margin: 20px auto; }
.order-success-icon { width: 68px; height: 68px; border-radius: 50%; background: #dcfce7; color: #15803d; display: grid; place-items: center; font-size: 34px; margin: 0 auto 14px; }
.checkout-summary-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid #f1f5f9; margin-bottom: 8px; }
.checkout-summary-item img { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; background: #f8fafc; padding: 2px; border: 1px solid #edf2f7; }
.checkout-summary-item h4 { margin: 0 0 2px; font-size: 12.5px; font-weight: 700; color: #1e293b; line-height: 1.3; }

/* Forms */
.form-group { display: grid; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 700; color: #334155; }
.form-control { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 7px; outline: 0; background: #fff; font-size: 13.5px; }
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(49,191,194,.12); }
textarea.form-control { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { color: #64748b; font-size: 11.5px; }

/* Footer */
.footer-top { background: #f8fafc; border-top: 1px solid #e2e8f0; }
.footer-benefits { padding: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.footer-benefit { display: flex; align-items: center; gap: 10px; }
.footer-benefit b { color: var(--blue); font-size: 20px; }
.footer-benefit strong { display: block; font-size: 12.5px; color: #0f172a; }
.footer-benefit span { color: var(--muted); font-size: 11px; }
.main-footer { color: #d8e0ec; background: #072854; }
.footer-grid { padding: 36px 0; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 30px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: #93c5fd; }
.footer-copy { margin-top: 14px; color: #94a3b8; font-size: 12.5px; line-height: 1.5; }
.footer-col h3 { margin: 0 0 12px; color: #fff; font-size: 14px; font-weight: 800; }
.footer-col a { display: block; margin: 8px 0; color: #cbd5e1; font-size: 12.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; color: #94a3b8; font-size: 11.5px; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  min-width: 280px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: #0f172a;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  font-size: 13px;
}
.toast.show { transform: translateY(0); opacity: 1; }

.chat-button { position: fixed; right: 24px; bottom: 84px; z-index: 50; width: 54px; height: 54px; border: 3px solid #fff; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--blue); box-shadow: 0 4px 16px rgba(0,0,0,.2); font-size: 22px; }
.cookie-note { position: fixed; left: 24px; bottom: 20px; z-index: 120; max-width: 480px; padding: 14px 44px 14px 16px; color: #fff; background: rgba(15,23,42,.94); box-shadow: 0 4px 14px rgba(0,0,0,.2); font-size: 12px; border-radius: 8px; }
.cookie-note button { position: absolute; right: 10px; top: 10px; width: 24px; height: 24px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.2); font-size: 14px; }

/* Responsive */
@media (max-width: 1200px) {
  .mega-menu { grid-template-columns: 210px minmax(180px, 1fr) minmax(150px, .8fr) minmax(140px, .7fr); }
  .mega-promo-grid { display: none; }
}

@media (max-width: 992px) {
  .category-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .banner-duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .discovery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

  /* Top Info Bar on Mobile */
  .promo-bar {
    height: auto;
    padding: 7px 0;
  }
  .promo-bar .container, .promo-bar-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
  .header-top-address {
    justify-content: center;
    width: 100%;
  }
  .header-top-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    width: 100%;
  }
  .header-top-item {
    font-size: 11.5px;
    justify-content: center;
  }
  .header-top-quick-order {
    padding: 2px 8px;
    font-size: 11px;
  }

  /* Main Header & Centered Logo */
  .main-header {
    height: auto;
    padding: 12px 0;
  }
  .main-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }
  .main-header .container > a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .brand-logo-img {
    height: 46px;
    max-height: 46px;
    max-width: 230px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }
  .search-wrap {
    display: none;
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
  }
  .search-wrap.active {
    display: block;
    animation: mobileSearchSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes mobileSearchSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .site-search { height: 44px; width: 100%; }
  .search-button { height: 36px; padding: 0 14px; font-size: 12.5px; }
  .main-header .user-actions, .main-header .account-link, .main-header .cart-link { display: none; }
  .category-nav { display: none; }
  .announcement-ticker { height: 36px; }
  .ticker-track { animation-duration: 27s; }
  .ticker-track span { flex: 0 0 auto; min-width: 0; padding: 0 28px; white-space: nowrap; font-size: 10px; letter-spacing: .02em; }
  .ticker-track span::after { content: "•"; margin-left: 28px; color: #71d8dc; }
  .mobile-bar { display: none !important; }
  .mobile-menu-button { border: 0; background: transparent; color: var(--blue); font-weight: 800; }
  .mobile-tab-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    height: 68px;
    min-height: 68px;
    padding: 0 4px env(safe-area-inset-bottom);
    border-top: 1px solid #dbe2eb;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    background: rgba(255,255,255,.98);
    box-shadow: 0 -8px 24px rgba(14,42,78,.13);
  }
  .mobile-tab-item {
    min-width: 0;
    min-height: 0;
    padding: 8px 2px 6px;
    border: 0;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #718094;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
  }
  .mobile-tab-item.active { color: var(--blue); }
  .mobile-tab-icon { min-width: 29px; height: 27px; position: relative; display: grid; place-items: center; color: currentColor; font-size: 23px; font-weight: 900; line-height: 1; }
  .mobile-cart-count { position: absolute; top: -4px; right: -7px; min-width: 18px; height: 18px; padding: 0 4px; border: 2px solid #fff; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--orange); font-size: 9px; font-style: normal; line-height: 1; }
  .mobile-tab-bar .tab-main { width: 54px; height: 54px; min-height: 54px; padding: 0; justify-self: center; align-self: start; transform: translateY(-15px); border-radius: 50%; color: #fff; background: var(--blue); box-shadow: 0 7px 18px rgba(6,56,141,.35); }
  .mobile-tab-bar .tab-main .mobile-tab-icon { color: #fff; font-size: 27px; }
  .mobile-tab-bar .tab-main > span:last-child { position: absolute; top: 58px; color: #737780; font-size: 10px; }
  .mobile-nav { position: fixed; inset: 0; z-index: 160; display: grid !important; grid-template-columns: minmax(260px,84%) 1fr; visibility: hidden; }
  .mobile-nav.open { visibility: visible; }
  .mobile-panel { padding: 22px; background: #fff; transform: translateX(-100%); transition: .25s; overflow-y: auto; }
  .mobile-nav.open .mobile-panel { transform: translateX(0); }
  .mobile-overlay { background: rgba(6,25,52,.55); opacity: 0; transition: .25s; }
  .mobile-nav.open .mobile-overlay { opacity: 1; }
  .mobile-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
  .mobile-close { border: 0; background: transparent; font-size: 28px; }
  .mobile-links { display: grid; margin-top: 12px; }
  .mobile-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mega-menu { display: none; }
  .story-strip { padding: 17px 0 13px; overflow: hidden; }
  .stories { justify-content: flex-start; gap: 10px; overflow-x: auto; padding: 2px 2px 9px; scrollbar-width: none; }
  .story { flex: 0 0 84px; min-width: 84px; font-size: 10px; white-space: normal; }
  .story-orb { width: 68px; height: 68px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { min-height: 390px; padding: 27px 24px; }
  .hero-slide { max-width: 88%; }
  .hero-main h1 { font-size: 35px; }
  .hero-products { width: 64%; right: 13px; top: 177px; }
  .hero-product-card { width: 125px; height: 140px; }
  .hero-dots { left: 25px; }
  .hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .mini-promo { padding: 19px; min-height: 155px; }
  .mini-promo h3 { font-size: 17px; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 28px 0; }
  .product-grid, .category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .product-card { min-height: 400px; height: 100%; padding: 10px; display: grid; grid-template-rows: 150px 15px 54px 30px minmax(55px,auto) 39px; gap: 4px; overflow: hidden; isolation: isolate; }
  .product-image { min-width: 0; width: auto; height: 145px; margin: 0; padding: 8px; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid #f0f2f5; background: #fff; }
  .product-image img { width: 100%; height: 100%; max-height: 175px; object-fit: contain; }
  .product-code { min-width: 0; margin: 0; color: #9aa5b1; font-size: 10px; line-height: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .product-name { min-width: 0; height: auto; margin: 0; color: #293548; font-size: 13px; line-height: 1.45; font-weight: 700; -webkit-line-clamp: 3; line-clamp: 3; }
  .product-features { min-width: 0; height: auto; margin: 0; display: block; color: #7b8795; font-size: 10px; line-height: 1.5; -webkit-line-clamp: unset; line-clamp: unset; }
  .price-row { min-width: 0; min-height: 58px; margin: 0; align-self: end; }
  .price { font-size: 17px; }
  .vat { color: #9b825f; font-size: 9px; }
  .unit-price { color: #a0a8b1; font-size: 9px; }
  .add-cart { margin: 0; border-radius: 6px; align-self: end; }
  .product-badge { min-height: 23px; padding: 0 9px; }
  .product-card > .favorite-btn { top: 14px; right: 14px; width: 34px; height: 34px; color: #6d7c8e; font-size: 20px; }
  .banner-duo, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .category-banner { min-height: 215px; padding: 25px; }
  .category-banner h3 { font-size: 23px; max-width: 58%; }
  .category-banner .art { width: 160px; height: 140px; }
  .discovery-grid { grid-template-columns: 1fr 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .filter-group { margin: 0; }
  .product-detail { grid-template-columns: 1fr; gap: 25px; }
  .gallery-main { min-height: 350px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 75px 1fr 85px 28px; }
  .cart-item img { width: 70px; height: 70px; }
  .cart-item .cart-price { grid-column: 2; }
  .cart-item .cart-qty { grid-column: 3; grid-row: 1; }
  .cart-summary { position: static; }
  .campaign-grid { grid-template-columns: 1fr 1fr; }
  .account-option-grid, .payment-tabs-nav, .form-row { grid-template-columns: 1fr; }
  /* Mobile Footer Enhancements */
  .footer-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 0;
  }
  .footer-benefit {
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-benefit b {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #edf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .footer-benefit strong {
    font-size: 12px;
    color: #0f172a;
    line-height: 1.25;
  }
  .footer-benefit span {
    font-size: 10.5px;
    color: #64748b;
  }

  .main-footer {
    padding-bottom: 0;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px 0 16px;
  }
  .footer-brand {
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-copy {
    margin-top: 8px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
  }
  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
  }
  .footer-col h3 {
    margin: 0;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }
  .footer-col h3::after {
    content: "›";
    font-size: 18px;
    font-weight: 400;
    color: #93c5fd;
    transition: transform 0.25s ease;
    transform: rotate(90deg);
    display: inline-block;
  }
  .footer-col.active h3::after {
    transform: rotate(-90deg);
    color: #ffffff;
  }
  .footer-col a {
    display: none;
    padding: 8px 4px;
    margin: 0;
    font-size: 13px;
    color: #cbd5e1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  }
  .footer-col.active a {
    display: block;
    animation: footerColFade 0.25s ease-out;
  }
  @keyframes footerColFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 0 calc(84px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 11.5px;
  }
  .footer-bottom span:last-child {
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 11px;
  }

  .toast { right: 12px; bottom: calc(82px + env(safe-area-inset-bottom)); min-width: 0; max-width: calc(100% - 24px); }
  .chat-button { bottom: calc(84px + env(safe-area-inset-bottom)); right: 16px; width: 46px; height: 46px; font-size: 18px; }
  .cookie-note { left: 12px; right: 12px; bottom: calc(80px + env(safe-area-inset-bottom)); max-width: none; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .promo-links { width: 100%; justify-content: space-between; gap: 10px; }
  .brand-name { font-size: 13px; }
  .main-header .container { grid-template-columns: minmax(0,1fr); }
  .hero-side, .form-row { grid-template-columns: 1fr; }
  .hero-products { width: 72%; }
  .product-grid, .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { height: 250px; min-height: 250px; padding: 10px; grid-template-columns: minmax(100px,36%) minmax(0,1fr); grid-template-rows: 15px 50px 30px 62px 40px; gap: 5px 10px; }
  .product-image { grid-column: 1; grid-row: 1 / -1; width: 100%; height: 100%; min-height: 0; padding: 30px 8px 8px; border-right: 1px solid #f0f2f5; border-bottom: 0; }
  .product-image img { max-height: 175px; }
  .product-code { grid-column: 2; grid-row: 1; font-size: 9px; }
  .product-name { grid-column: 2; grid-row: 2; font-size: 12px; line-height: 1.35; -webkit-line-clamp: 3; line-clamp: 3; }
  .product-features { grid-column: 2; grid-row: 3; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; font-size: 9px; line-height: 1.35; }
  .price-row { grid-column: 2; grid-row: 4; min-height: 0; display: block; align-self: end; }
  .price { font-size: 18px; line-height: 1.2; }
  .unit-price { margin-top: 3px; font-size: 8px; }
  .vat { display: none; }
  .add-cart { grid-column: 2; grid-row: 5; height: 40px; font-size: 12px; }
  .product-badge { left: 8px; top: 8px; min-height: 21px; padding-inline: 7px; font-size: 8px; }
  .product-card > .favorite-btn { left: calc(36% - 28px); right: auto; top: 14px; width: 30px; height: 30px; font-size: 18px; }
  .section-title h2 { font-size: 19px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-card { height: 68px; font-size: 15px; }
  .discovery-grid, .filter-panel { grid-template-columns: 1fr; }
  .page-heading { font-size: 28px; }
  .results-bar { align-items: flex-start; flex-direction: column; padding-block: 12px; }
  .results-bar select { min-width: 0; width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(3,68px); grid-row: 2; }
  .gallery-main { min-height: 300px; }
  .buy-row { grid-template-columns: 90px 1fr 45px; }
  .detail-actions { gap: 11px; font-size: 10px; }
  .cart-item { grid-template-columns: 62px 1fr 28px; padding: 11px; }
  .cart-item img { width: 58px; height: 58px; }
  .cart-item .cart-qty { grid-column: 2; grid-row: 2; width: 90px; }
  .cart-item .cart-price { grid-column: 2; }
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-card { min-height: 220px; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .chat-button { width: 50px; height: 50px; right: 13px; bottom: calc(88px + env(safe-area-inset-bottom)); }
}

/* Avansas-inspired dynamic campaign stage */
.campaign-container {
  width: min(calc(100% - 32px), 1880px);
}

.campaign-story-strip {
  padding: 25px 0 15px;
  overflow: hidden;
}
.story-carousel {
  position: relative;
  padding-inline: 42px;
}
.campaign-story-strip .stories {
  justify-content: flex-start;
  gap: clamp(18px, 2.2vw, 42px);
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.campaign-story-strip .story {
  flex: 0 0 112px;
  min-width: 112px;
  display: grid;
  grid-template-rows: auto 2.9em;
  align-items: start;
  color: #171717;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  white-space: normal;
  scroll-snap-align: start;
}
.campaign-story-strip .story-orb {
  width: 94px;
  height: 94px;
  margin-bottom: 9px;
  padding: 7px;
  border: 2px solid color-mix(in srgb, var(--story-accent, #5cc8ca) 70%, #fff);
  background: #f8fbfb;
  box-shadow: 0 3px 9px rgba(15, 23, 42, .09);
}
.campaign-story-strip .story-orb > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.campaign-story-strip .story-orb > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--story-accent, #5cc8ca) 18%, #eef9fa));
  font-size: 28px;
  font-weight: 900;
}
.story-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.story-scroll-button,
.promo-pair-arrow {
  position: absolute;
  z-index: 12;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
}
.story-scroll-button:hover,
.promo-pair-arrow:hover {
  color: var(--blue, #2563eb);
  border-color: var(--blue, #2563eb);
  background: #ffffff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.24);
}
.story-scroll-button:active,
.promo-pair-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.story-scroll-button {
  top: 47px;
  transform: translateY(-50%);
}
.promo-pair-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.story-scroll-prev, .promo-pair-prev { left: -4px; }
.story-scroll-next, .promo-pair-next { right: -4px; }

.campaign-zone {
  padding: 6px 0 28px;
}
.promo-pair-shell {
  position: relative;
  padding-inline: 0;
}
.promo-pair-window {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.promo-pair-window::-webkit-scrollbar {
  display: none;
}
.promo-pair-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: max-content;
  min-width: 100%;
}
.wide-promo-card {
  --campaign-accent: #2f80ed;
  flex: 0 0 calc((100% - 14px) / 2);
  min-width: 0;
  height: 218px;
  padding: 18px 22px 18px 24px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  color: #fff;
  background:
    radial-gradient(circle at 78% 10%, rgba(255,255,255,.28), transparent 25%),
    linear-gradient(125deg, color-mix(in srgb, var(--campaign-accent) 78%, #06388d) 0%, var(--campaign-accent) 58%, color-mix(in srgb, var(--campaign-accent) 62%, #72dfe0) 100%);
  box-shadow: inset 0 -46px 0 color-mix(in srgb, var(--campaign-accent) 70%, #06388d);
  isolation: isolate;
  scroll-snap-align: start;
}
.wide-promo-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -70% 24%;
  height: 150%;
  border-radius: 50%;
  background: rgba(255,255,255,.11);
  transform: rotate(-7deg);
  z-index: -1;
}
.wide-promo-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wide-promo-kicker {
  max-width: 100%;
  margin-bottom: 5px;
  padding: 3px 8px;
  border-radius: 5px;
  color: var(--blue);
  background: rgba(255,255,255,.94);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wide-promo-copy > strong {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: clamp(22px, 1.65vw, 31px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.7px;
}
.wide-promo-text {
  max-width: 96%;
  margin-top: 7px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 12px;
  line-height: 1.28;
}
.wide-promo-link {
  margin-top: auto;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}
.wide-promo-art {
  min-width: 0;
  height: 172px;
  position: relative;
  align-self: start;
}
.wide-promo-art img {
  position: absolute;
  right: 0;
  top: 1px;
  width: 78%;
  height: 166px;
  object-fit: contain;
  filter: drop-shadow(0 12px 11px rgba(0, 35, 88, .23));
  transition: transform .3s ease;
}
.wide-promo-art img:nth-child(2) {
  right: 43%;
  top: 20px;
  width: 50%;
  height: 142px;
}
.wide-promo-card:hover .wide-promo-art img:first-child { transform: translateY(-3px) scale(1.025); }
.wide-promo-card:hover .wide-promo-art img:nth-child(2) { transform: translate(-3px, -2px) rotate(-2deg); }
.promo-pair-arrow {
  top: 79px;
  height: 60px;
}
.promo-pair-prev { left: -17px; }
.promo-pair-next { right: -17px; }
.promo-pair-dots {
  min-height: 18px;
  padding-top: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.promo-pair-dot,
.campaign-feature-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(15,23,42,.55);
  border-radius: 50%;
  background: transparent;
}
.promo-pair-dot.active,
.campaign-feature-dot.active {
  border-color: var(--blue);
  background: var(--blue);
}

.campaign-mosaic {
  min-height: 474px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .94fr);
  gap: 14px;
  background: #58c8c8;
}
.campaign-feature-card {
  --campaign-accent: #0c75dd;
  min-width: 0;
  min-height: 446px;
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  color: #0b2940;
  background:
    linear-gradient(165deg, rgba(255,255,255,.95), rgba(238,252,253,.76)),
    color-mix(in srgb, var(--campaign-accent) 12%, #e8fbfc);
  box-shadow: inset 0 -78px 0 color-mix(in srgb, var(--campaign-accent) 85%, #06388d), 0 5px 14px rgba(9,86,108,.18);
  isolation: isolate;
}
.campaign-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(130deg, transparent 0 23%, color-mix(in srgb, var(--campaign-accent) 14%, transparent) 23% 42%, transparent 42% 58%, color-mix(in srgb, var(--campaign-accent) 11%, transparent) 58% 72%, transparent 72%);
}
.campaign-feature-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.campaign-feature-copy {
  min-width: 0;
  padding: 28px 0 92px 34px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.campaign-feature-symbol {
  min-width: 42px;
  min-height: 31px;
  padding: 4px 10px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--campaign-accent);
  box-shadow: 0 5px 12px color-mix(in srgb, var(--campaign-accent) 30%, transparent);
  font-size: 16px;
  font-weight: 900;
}
.campaign-feature-copy > strong {
  max-width: 100%;
  margin-top: 13px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: clamp(27px, 2.2vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.1px;
}
.campaign-feature-text {
  max-width: 96%;
  margin-top: 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: #253746;
  font-size: 15px;
  line-height: 1.4;
}
.campaign-cta {
  margin-top: auto;
  padding: 9px 15px;
  border-radius: 7px;
  color: #fff;
  background: var(--campaign-accent);
  font-size: 13px;
  font-weight: 900;
}
.campaign-feature-art {
  min-width: 0;
  padding: 25px 20px 94px 0;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.campaign-feature-art img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 17px rgba(2,61,101,.25));
  transition: transform .35s ease;
}
.campaign-feature-card:hover .campaign-feature-art img { transform: translateY(-4px) scale(1.025); }
.campaign-feature-placeholder {
  width: 190px;
  height: 190px;
  border: 14px solid color-mix(in srgb, var(--campaign-accent) 30%, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--campaign-accent);
  box-shadow: 0 20px 35px color-mix(in srgb, var(--campaign-accent) 35%, transparent);
  font-size: 72px;
  font-style: normal;
  font-weight: 900;
}
.campaign-feature-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  width: 31px;
  height: 120px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #475569;
  background: rgba(255,255,255,.82);
  box-shadow: 0 2px 7px rgba(15,23,42,.16);
  transform: translateY(-50%);
  font-size: 29px;
}
.campaign-feature-prev { left: 0; }
.campaign-feature-next { right: 0; }
.campaign-feature-dots {
  position: absolute;
  left: 50%;
  bottom: 9px;
  z-index: 7;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}
.campaign-feature-dot {
  width: 9px;
  height: 9px;
  border-color: rgba(255,255,255,.95);
}
.campaign-feature-dot.active { background: #fff; border-color: #fff; }

.campaign-tile-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(216px, 1fr);
  gap: 14px;
  max-height: 446px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.campaign-tile-grid::-webkit-scrollbar {
  display: none;
}
.campaign-tile {
  --campaign-accent: #39c6f4;
  min-width: 0;
  min-height: 0;
  padding: 16px 12px 12px 15px;
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  color: #211f20;
  background: #fff;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
}
.campaign-tile::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 5%;
  z-index: -1;
  width: 67%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--campaign-accent) 22%, #eafafa);
}
.campaign-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(11,74,92,.18);
}
.campaign-tile-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.campaign-tile-copy strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.45px;
}
.campaign-tile-copy > span {
  margin-top: 4px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #4b5563;
  font-size: 11px;
  line-height: 1.25;
}
.campaign-tile-copy > b {
  margin-top: 6px;
  color: color-mix(in srgb, var(--campaign-accent) 75%, #c05200);
  font-size: clamp(14px, 1.2vw, 21px);
  font-weight: 900;
  line-height: 1.05;
}
.campaign-tile-copy > u {
  margin-top: auto;
  color: #242424;
  font-size: 11.5px;
  font-weight: 800;
  text-underline-offset: 2px;
}
.campaign-tile-art {
  min-width: 0;
  position: relative;
  display: grid;
  place-items: end center;
}
.campaign-tile-art img {
  width: 100%;
  height: 100%;
  max-height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(15,23,42,.16));
}
.campaign-tile-art i {
  width: 104px;
  height: 104px;
  border: 9px solid rgba(255,255,255,.66);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--campaign-accent);
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
}
.campaign-tile[hidden],
.campaign-feature-placeholder[hidden],
.campaign-feature-art img[hidden],
.campaign-tile-art img[hidden],
.campaign-tile-art i[hidden],
.promo-pair-arrow[hidden],
.promo-pair-dots[hidden],
.campaign-feature-arrow[hidden],
.campaign-feature-dots[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .campaign-mosaic { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
  .campaign-feature-card { grid-template-columns: minmax(0, 50%) minmax(0, 50%); }
  .campaign-feature-copy { padding-left: 29px; }
  .campaign-tile { grid-template-columns: minmax(0, 59%) minmax(0, 41%); }
  .campaign-tile-copy > span { display: none; }
}

@media (max-width: 860px) {
  .campaign-container { width: min(calc(100% - 22px), 1880px); }
  .story-carousel { padding-inline: 0; }
  .story-scroll-button,
  .promo-pair-arrow { display: none !important; }
  .campaign-story-strip .story { flex-basis: 86px; min-width: 86px; }
  .campaign-story-strip .story-orb { width: 72px; height: 72px; }
  .promo-pair-window { overflow-x: auto; scroll-snap-type: x mandatory; width: 100%; }
  .promo-pair-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
  }
  .wide-promo-card {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    max-width: 550px;
    height: 200px;
    padding: 16px 16px 16px 18px;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    box-sizing: border-box;
  }
  .campaign-mosaic { grid-template-columns: 1fr; min-height: 0; }
  .campaign-feature-card { min-height: 410px; }
  .campaign-tile-grid { min-height: 430px; }
}

@media (max-width: 580px) {
  .campaign-story-strip { padding-top: 17px; }
  .campaign-story-strip .stories { gap: 8px; }
  .wide-promo-card {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    height: 200px;
    padding: 14px 14px 14px 16px;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    box-sizing: border-box;
  }
  .wide-promo-copy > strong { font-size: 20px; line-height: 1.1; }
  .wide-promo-text { font-size: 11px; margin-top: 4px; line-height: 1.25; }
  .wide-promo-art {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    z-index: 5 !important;
    overflow: visible !important;
  }
  .wide-promo-art img {
    display: block !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 160px !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .wide-promo-art img:nth-child(2) { display: none !important; }
  .campaign-mosaic { margin-top: 7px; padding: 8px; gap: 8px; }
  .campaign-feature-card {
    min-height: 395px;
    grid-template-columns: minmax(0, 53%) minmax(0, 47%);
    box-shadow: inset 0 -60px 0 color-mix(in srgb, var(--campaign-accent) 85%, #06388d), 0 5px 14px rgba(9,86,108,.18);
  }
  .campaign-feature-copy { padding: 21px 0 70px 22px; }
  .campaign-feature-copy > strong { font-size: 26px; }
  .campaign-feature-text { font-size: 12px; -webkit-line-clamp: 4; line-clamp: 4; }
  .campaign-feature-art { padding: 20px 12px 70px 0; }
  .campaign-feature-placeholder { width: 112px; height: 112px; border-width: 8px; font-size: 44px; }
  .campaign-feature-arrow { width: 25px; height: 86px; font-size: 24px; }
  .campaign-tile-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 8px;
  }
  .campaign-tile { min-height: 178px; grid-template-columns: minmax(0, 58%) minmax(0, 42%); }
  .campaign-tile-copy strong { font-size: 20px; }
  .campaign-tile-copy > span { display: -webkit-box; }
  .campaign-tile-art img { max-height: 152px; }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-story-strip .stories,
  .promo-pair-window { scroll-behavior: auto; }
  .wide-promo-art img,
  .campaign-feature-art img,
  .campaign-tile { transition: none; }
}

/* Ana sayfa fırsat alanı: gerçek ürün görsellerini öne çıkaran perakende düzeni */
.campaign-story-strip {
  padding: 28px 0 16px;
  background: #fff;
}

.campaign-story-strip .stories {
  gap: clamp(16px, 2vw, 38px);
}

.campaign-story-strip .story {
  flex-basis: 108px;
  min-width: 108px;
  color: #162334;
  font-weight: 800;
  text-align: center;
}

.campaign-story-strip .story-orb {
  width: 92px;
  height: 92px;
  margin-inline: auto;
  padding: 6px;
  border: 2px solid #9bdfe0;
  background: #fff;
  box-shadow: none;
}

.campaign-story-strip .story-orb > img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.story-scroll-button {
  width: 31px;
  height: 61px;
  border-color: #e2e6ea;
  border-radius: 7px;
  color: #4b5563;
  background: #fff;
}

.campaign-zone {
  padding: 6px 0 34px;
  background: #fff;
}

.promo-pair-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
}

.wide-promo-card {
  flex: 0 0 calc((100% - 14px) / 2);
  width: calc((100% - 14px) / 2);
  min-width: calc((100% - 14px) / 2);
  max-width: calc((100% - 14px) / 2);
  box-sizing: border-box;
  height: 218px;
  padding: 17px 20px 17px 22px;
  border-radius: 14px;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  background:
    radial-gradient(circle at 78% 10%, rgba(255,255,255,.28), transparent 25%),
    linear-gradient(125deg, color-mix(in srgb, var(--campaign-accent, #0756b9) 78%, #06388d) 0%, var(--campaign-accent, #0756b9) 58%, color-mix(in srgb, var(--campaign-accent, #0756b9) 62%, #72dfe0) 100%);
  box-shadow: inset 0 -43px 0 color-mix(in srgb, var(--campaign-accent, #0756b9) 70%, #06388d);
}

.wide-promo-card::before {
  inset: auto -17% -82% 31%;
  height: 158%;
  background: rgba(255, 255, 255, .10);
}

.wide-promo-copy > strong {
  font-size: clamp(23px, 1.7vw, 31px);
  line-height: 1.05;
  letter-spacing: -.55px;
}

.wide-promo-text {
  max-width: 92%;
  font-size: 12px;
  font-weight: 600;
}

.wide-promo-link {
  font-size: 14px;
  font-weight: 800;
}

.wide-promo-art {
  height: 174px;
  align-self: center;
}

.wide-promo-art img {
  width: 88%;
  height: 174px;
  top: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 8px rgba(1, 25, 65, .22));
}

.wide-promo-art img:nth-child(2) {
  right: 42%;
  top: 20px;
  width: 51%;
  height: 144px;
}

.promo-pair-arrow {
  top: 79px;
  width: 31px;
  height: 60px;
  border-radius: 7px;
}

.campaign-mosaic {
  min-height: 478px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 15px;
  gap: 15px;
  grid-template-columns: minmax(0, 1.19fr) minmax(0, .93fr);
  background: #5acbca;
}

.campaign-feature-card {
  min-height: 448px;
  grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  color: #27211f;
  background:
    radial-gradient(ellipse at 32% 14%, rgba(255, 255, 255, .72) 0 18%, transparent 19%),
    radial-gradient(ellipse at 84% 18%, rgba(255, 255, 255, .58) 0 24%, transparent 25%),
    linear-gradient(135deg, #ffd6bd, #ffeddc 58%, #ffd8bc);
  box-shadow: inset 0 -58px 0 #ff7200;
}

.campaign-feature-card::before {
  background: none;
}

.campaign-feature-copy {
  padding: 28px 0 84px 37px;
}

.campaign-feature-symbol {
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: #6b4a34;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  letter-spacing: .08em;
}

.campaign-feature-copy > strong {
  margin-top: 9px;
  font-size: clamp(28px, 2.25vw, 42px);
  line-height: 1.03;
  letter-spacing: -.85px;
}

.campaign-feature-text {
  max-width: 90%;
  margin-top: 10px;
  color: #4a3a31;
  font-size: 14px;
  font-weight: 600;
}

.campaign-cta {
  padding: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.campaign-feature-art {
  padding: 20px 18px 66px 0;
  align-items: end;
}

.campaign-feature-art img {
  max-height: 345px;
  filter: drop-shadow(0 13px 12px rgba(97, 52, 24, .18));
}

.campaign-feature-placeholder {
  width: 150px;
  height: 150px;
  border: 0;
  color: #fff;
  background: #0c58b2;
  box-shadow: none;
}

.campaign-feature-arrow {
  width: 31px;
  height: 118px;
  border: 1px solid #e3ddd7;
  border-radius: 7px;
  color: #4b5563;
  background: rgba(255, 255, 255, .94);
}

.campaign-feature-dots {
  bottom: 10px;
}

.campaign-feature-dot {
  border-color: #f87500;
}

.campaign-feature-dot.active {
  border-color: #f87500;
  background: #f87500;
}

.campaign-tile-grid {
  grid-auto-rows: minmax(216px, 1fr);
  max-height: 448px;
  gap: 15px;
}

.campaign-tile {
  padding: 17px 14px 13px 17px;
  border-radius: 13px;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  background: #fff;
}

.campaign-tile::before {
  right: -13%;
  top: 5%;
  width: 72%;
  background: #cff4f1;
}

.campaign-tile-copy strong {
  font-size: clamp(17px, 1.38vw, 24px);
  line-height: 1.06;
}

.campaign-tile-copy > span {
  color: #454545;
  font-size: 11px;
}

.campaign-tile-copy > b {
  color: #ef7600;
}

.campaign-tile-copy > u {
  font-size: 11.5px;
}

.campaign-tile-art img {
  max-height: 183px;
  filter: drop-shadow(0 7px 7px rgba(15, 23, 42, .16));
}

@media (max-width: 860px) {
  .campaign-mosaic {
    grid-template-columns: 1fr;
  }

  /* Mobilde ürün ve banner görsellerinin eksiksiz görünmesini garanti et */
  .wide-promo-card {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }

  .wide-promo-art {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 180px !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .wide-promo-art img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 165px !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
  }

  .wide-promo-art img:nth-child(2) {
    position: absolute !important;
    top: 15px !important;
    right: 25% !important;
    width: 65% !important;
    height: 135px !important;
  }

  .campaign-feature-art,
  .campaign-tile-art {
    z-index: 5 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .campaign-feature-art img,
  .campaign-tile-art img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .campaign-feature-card {
    min-height: 412px;
  }

  .campaign-tile-grid {
    min-height: 430px;
  }
}

@media (max-width: 580px) {
  .campaign-story-strip .story {
    flex-basis: 84px;
    min-width: 84px;
    font-size: 10px;
  }

  .campaign-story-strip .story-orb {
    width: 72px;
    height: 72px;
  }

  .wide-promo-card {
    height: 220px;
    padding: 16px;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }

  .wide-promo-art {
    height: 165px !important;
  }

  .wide-promo-art img {
    width: 100% !important;
    height: 155px !important;
    right: 0 !important;
  }

  .wide-promo-art img:nth-child(2) {
    top: 15px !important;
    right: 22% !important;
    width: 68% !important;
    height: 125px !important;
  }

  .campaign-feature-card {
    min-height: 395px;
    grid-template-columns: minmax(0, 53%) minmax(0, 47%);
  }

  .campaign-feature-copy {
    padding: 21px 0 70px 22px;
  }

  .campaign-feature-copy > strong {
    font-size: 26px;
  }

  .campaign-tile {
    min-height: 178px;
  }
}

/* Brand Story Section - Matches Top Story Strip */
.brand-story-section {
  padding: 24px 0 16px;
  overflow: hidden;
}
.brand-story-carousel {
  position: relative;
  padding-inline: 42px;
  margin-top: 14px;
}
.brand-stories {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(18px, 2.2vw, 42px);
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.brand-stories::-webkit-scrollbar {
  display: none;
}
.brand-story-item {
  flex: 0 0 112px;
  min-width: 112px;
  display: grid;
  grid-template-rows: auto 2.9em;
  align-items: start;
  text-decoration: none;
  color: #171717;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  white-space: normal;
  scroll-snap-align: start;
  transition: transform .2s ease;
}
.brand-story-item:hover {
  transform: translateY(-3px);
  color: var(--blue, #2563eb);
}
.brand-story-orb {
  width: 94px;
  height: 94px;
  margin-bottom: 9px;
  padding: 6px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--blue, #2563eb) 65%, #fff);
  background: #ffffff;
  box-shadow: 0 3px 9px rgba(15, 23, 42, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.brand-story-item:hover .brand-story-orb {
  border-color: var(--blue, #2563eb);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.22);
}
.brand-story-orb > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 5px;
  background: #ffffff;
}
.brand-orb-initial {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue, #2563eb);
  background: linear-gradient(145deg, #ffffff, color-mix(in srgb, var(--blue, #2563eb) 16%, #eef9fa));
  font-size: 28px;
  font-weight: 900;
}
.brand-story-title {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .brand-story-carousel {
    padding-inline: 0;
  }
  .brand-story-carousel .story-scroll-button {
    display: none;
  }
  .brand-story-item {
    flex-basis: 86px;
    min-width: 86px;
    font-size: 11px;
  }
  .brand-story-orb {
    width: 72px;
    height: 72px;
  }
}

