:root {
  --orange: #e30613;
  --red: #ed111b;
  --black: #0d0d0d;
  --text: #131722;
  --muted: #6b7280;
  --line: #ececec;
  --green: #20c768;
  --page: #eeeeee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.wide {
  width: min(1720px, calc(100% - 34px));
  margin: 0 auto;
}

.blackbar {
  background: var(--black);
  color: white;
}

.blackbar .wide,
.orangebar .wide {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
}

.blackbar .wide {
  justify-content: flex-end;
}

.mail {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-right: auto;
  font-weight: 700;
  font-size: 13px;
}

.mail-icon {
  position: relative;
  width: 14px;
  height: 10px;
  border: 1px solid #777;
}

.mail-icon::before,
.mail-icon::after {
  position: absolute;
  top: 1px;
  width: 8px;
  height: 1px;
  background: #777;
  content: "";
}

.mail-icon::before {
  left: 0;
  transform: rotate(32deg);
  transform-origin: left center;
}

.mail-icon::after {
  right: 0;
  transform: rotate(-32deg);
  transform-origin: right center;
}

.top-actions {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}

.top-actions a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 28px;
  border-radius: 16px;
  background: #242424;
  padding: 0 13px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.top-actions .green {
  background: var(--green);
}

body.member-logged-in .top-actions .login-trigger {
  display: none;
}

.account-name {
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-icon,
.megaphone-icon,
.user-icon,
.building-icon,
.mini-cart-icon {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.wa-icon {
  border: 2px solid white;
  border-radius: 50%;
}

.wa-icon::after {
  position: absolute;
  right: -2px;
  bottom: -3px;
  width: 6px;
  height: 5px;
  background: white;
  clip-path: polygon(0 0, 100% 45%, 0 100%);
  content: "";
}

.megaphone-icon::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 11px;
  height: 8px;
  background: white;
  clip-path: polygon(0 30%, 65% 0, 100% 0, 100% 100%, 65% 100%, 0 70%);
  content: "";
}

.megaphone-icon::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 7px;
  border-radius: 3px;
  background: white;
  transform: rotate(-18deg);
  content: "";
}

.user-icon::before {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  content: "";
}

.user-icon::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  left: 1px;
  height: 6px;
  border-radius: 8px 8px 2px 2px;
  background: white;
  content: "";
}

.building-icon::before {
  position: absolute;
  inset: 1px 3px 0;
  border-radius: 2px 2px 0 0;
  background:
    linear-gradient(90deg, transparent 0 35%, #242424 35% 55%, transparent 55%) 0 3px / 100% 3px,
    linear-gradient(90deg, transparent 0 35%, #242424 35% 55%, transparent 55%) 0 8px / 100% 3px,
    white;
  content: "";
}

.mini-cart-icon::before {
  position: absolute;
  top: 4px;
  left: 1px;
  width: 10px;
  height: 7px;
  border: 2px solid white;
  border-top: 0;
  content: "";
}

.mini-cart-icon::after {
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 7px 0 0 white;
  content: "";
}

.orangebar {
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.orangebar strong {
  margin-right: auto;
  margin-left: 28px;
}

.brand-row {
  position: relative;
  z-index: 80;
  overflow: visible;
  display: grid;
  grid-template-columns: 380px minmax(360px, 560px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 96px;
  background: white;
}

header {
  background: white;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  width: 360px;
  min-height: 92px;
  margin-left: 0;
  transform: none;
  text-decoration: none;
}

.site-logo-img {
  display: block;
  width: 340px;
  max-width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

.logo-character {
  position: relative;
  display: block;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
}

.logo-head {
  position: absolute;
  top: 8px;
  left: 16px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid #0f172a;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffe0bd 0 22%, #ff9e45 58%, #e76500 100%);
  color: #111;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
}

.logo-head::before,
.logo-head::after {
  position: absolute;
  bottom: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  content: "";
}

.logo-head::before {
  left: 15px;
}

.logo-head::after {
  right: 15px;
}

.logo-body {
  position: absolute;
  right: 4px;
  bottom: 6px;
  left: 10px;
  height: 30px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(90deg, #0077c8 0 45%, #ff7a00 46% 100%);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.16);
}

.logo-body::before,
.logo-body::after {
  position: absolute;
  bottom: -16px;
  width: 12px;
  height: 18px;
  border-radius: 8px;
  background: #111;
  content: "";
}

.logo-body::before {
  left: 16px;
}

.logo-body::after {
  right: 16px;
}

.logo-text b {
  display: block;
  color: #e10010;
  font-family: Arial Black, Impact, Arial, Helvetica, sans-serif;
  font-size: 47px;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #ffffff,
    0 4px 0 #880006,
    0 7px 12px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.logo-text b span {
  margin-right: 4px;
}

.logo-text small {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  margin-top: 7px;
  text-align: center;
}

.search {
  display: flex;
  overflow: hidden;
  height: 46px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  background: white;
}

.search input {
  width: 100%;
  border: 0;
  padding: 0 18px;
  outline: 0;
  color: #777;
}

.search button {
  width: 54px;
  border: 0;
  background: var(--orange);
  color: white;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
}

.brand-actions {
  position: relative;
  z-index: 90;
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 16px;
  overflow: visible;
}

.account-menu-wrap {
  position: relative;
  z-index: 100;
  display: none;
}

.account-menu-wrap::after {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  width: 170px;
  height: 14px;
  content: "";
}

.account-menu-wrap.open::after,
.account-menu-wrap:hover::after,
.account-menu-wrap:focus-within::after {
  display: block;
}

.brand-actions .account-chip {
  display: none;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #101827;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.brand-actions .account-chip .user-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--orange);
}

.brand-actions .account-chip i {
  width: 7px;
  height: 7px;
  border-right: 2px solid #101827;
  border-bottom: 2px solid #101827;
  transform: rotate(45deg) translateY(-2px);
}

body.member-logged-in .account-menu-wrap {
  display: block;
}

body.member-logged-in .brand-actions .account-chip {
  display: inline-flex;
}

.account-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 999;
  display: none;
  width: 170px;
  padding: 8px 0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.18);
}

.account-menu-wrap.open .account-menu,
.account-menu-wrap:hover .account-menu,
.account-menu-wrap:focus-within .account-menu {
  display: block;
}

.account-menu a,
.account-menu button {
  display: flex;
  width: 100%;
  height: 28px;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #111827;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-menu a:hover,
.account-menu button:hover {
  background: #f3f4f6;
}

.menu-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #050505;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  content: "";
  box-sizing: border-box;
}

.menu-icon.gear::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.menu-icon.gear::after {
  left: 1px;
  top: 6px;
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 -1px currentColor, 0 5px 0 -1px currentColor;
}

.menu-icon.card::before {
  inset: 2px 1px 3px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.menu-icon.card::after {
  left: 2px;
  right: 2px;
  top: 6px;
  height: 2px;
  background: currentColor;
}

.menu-icon.person::before {
  left: 4px;
  top: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.menu-icon.person::after {
  left: 2px;
  bottom: 1px;
  width: 10px;
  height: 6px;
  border-radius: 7px 7px 2px 2px;
  background: currentColor;
}

.menu-icon.edit::before {
  left: 2px;
  top: 8px;
  width: 10px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.menu-icon.edit::after {
  left: 6px;
  top: 1px;
  width: 4px;
  height: 11px;
  background: currentColor;
  transform: rotate(42deg);
}

.menu-icon.basket::before {
  left: 1px;
  top: 5px;
  width: 12px;
  height: 7px;
  border: 2px solid currentColor;
  border-top: 0;
}

.menu-icon.basket::after {
  left: 3px;
  top: 1px;
  width: 8px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  transform: skewX(-18deg);
}

.menu-icon.tag::before {
  inset: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-icon.tag::after {
  left: 4px;
  top: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.menu-icon.heart::before,
.menu-icon.heart::after {
  top: 3px;
  width: 8px;
  height: 10px;
  border-radius: 8px 8px 0 0;
  background: currentColor;
}

.menu-icon.heart::before {
  left: 2px;
  transform: rotate(-45deg);
}

.menu-icon.heart::after {
  right: 2px;
  transform: rotate(45deg);
}

.menu-icon.file::before {
  inset: 1px 3px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.menu-icon.file::after {
  right: 3px;
  top: 1px;
  border-left: 5px solid transparent;
  border-bottom: 5px solid currentColor;
}

.menu-icon.lock::before {
  left: 2px;
  bottom: 1px;
  width: 10px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
}

.menu-icon.lock::after {
  left: 4px;
  top: 1px;
  width: 6px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  width: 190px;
  min-height: 74px;
  border-left: 1px solid #efefef;
  padding-left: 28px;
  margin-right: 2px;
}

.cart-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}

.cart-icon::before {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 18px;
  height: 13px;
  border: 3px solid white;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  content: "";
}

.cart-icon::after {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 21px;
  height: 9px;
  border-bottom: 3px solid white;
  transform: skewX(-18deg);
  content: "";
}

.cart-badge {
  position: absolute;
  top: 5px;
  left: 62px;
  z-index: 2;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: red;
  color: white;
  font-weight: 900;
}

.main-menu {
  position: relative;
  background: var(--orange);
  z-index: 20;
}

.menu-scroll {
  display: flex;
  justify-content: flex-start;
  width: max-content;
  max-width: calc(100% - 34px);
  margin: 0 auto;
  min-height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-scroll::-webkit-scrollbar {
  display: none;
}

.menu-scroll a {
  display: grid;
  place-items: center;
  padding: 0 13px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-scroll a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.mega-menu {
  position: absolute;
  top: 50px;
  left: 50%;
  width: min(930px, calc(100vw - 40px));
  max-height: calc(100vh - 150px);
  overflow: auto;
  background: white;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 30;
}

.main-menu:has(.has-mega:hover) .mega-menu,
.main-menu.mega-open .mega-menu,
.mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1fr;
  gap: 32px;
  padding: 42px 20px 34px;
}

.mega-column h3 {
  margin: 0 0 12px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 14px 12px;
  color: #0000b8;
  font-size: 12px;
  font-weight: 800;
}

.mega-card {
  display: grid;
  gap: 0;
  border-radius: 7px;
  background: white;
  padding: 2px 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.mega-card a {
  display: flex;
  min-height: 47px;
  align-items: center;
  padding: 0 15px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.mega-card a:hover {
  background: #f7f7f7;
  color: var(--orange);
}

.mega-card-small {
  margin-top: 12px;
}

.mega-products {
  padding: 8px 0;
}

.mega-product {
  display: grid !important;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  min-height: 86px !important;
  align-items: center !important;
}

.mega-product img {
  width: 52px;
  height: 62px;
  object-fit: contain;
}

.mega-product span,
.mega-product b,
.mega-product strong {
  display: block;
}

.mega-product b {
  margin-bottom: 6px;
  color: #111;
  font-size: 11px;
  line-height: 1.35;
}

.mega-product strong {
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.mega-link-list {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid #d9d9d9;
  padding-top: 10px;
}

.mega-link-list a {
  min-height: 34px;
  color: #0000b8;
  font-size: 12px;
  font-weight: 800;
}

.hero-wrap {
  position: relative;
  padding: 18px 0 22px;
}

.hero {
  position: relative;
  width: min(1120px, calc(100% - 250px));
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #050505;
  box-shadow: 0 23px 45px rgba(0, 0, 0, 0.22);
}

.hero-panels {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
  height: calc(100% - 34px);
  padding: 42px 12px 10px;
}

.hero-panel,
.hero-side {
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: #111;
}

.hero img,
.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.45s ease;
}

.hero img.is-changing {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 42px 20px 0 38px;
  color: white;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46), transparent);
}

.red-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 16px;
  background: var(--red);
  padding: 0 15px;
  font-size: 11px;
  font-weight: 900;
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 0.98;
}

.hero p {
  max-width: 420px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.red-button,
.dark-button,
.quick-products a,
.deal a,
.tiles a {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  border-radius: 3px;
  padding: 0 22px;
  color: white;
  font-weight: 900;
}

.red-button {
  background: var(--red);
  border-radius: 24px;
}

.dark-button {
  background: rgba(30, 30, 30, 0.78);
  border-radius: 24px;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.dots .active {
  background: white;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 38px;
  align-items: center;
  height: 34px;
  overflow: hidden;
  background: black;
  color: white;
  padding: 0 34px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-ticker span::before {
  color: red;
  content: "▪ ";
}

.slide-arrow {
  position: absolute;
  top: 47%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.slide-arrow-left {
  left: 0;
}

.slide-arrow-right {
  right: 0;
}

.quick-products {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(1058px, calc(100% - 34px));
  background: white;
}

.quick-products article {
  min-height: 268px;
  padding: 12px 16px;
  text-align: center;
  border-right: 1px solid #efefef;
}

.quick-products img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.quick-products h2 {
  min-height: 42px;
  margin: 14px 0 16px;
  font-size: 12px;
}

.quick-products a,
.tiles a,
.deal a {
  background: var(--orange);
}

.category-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 94px;
  width: 100%;
  padding: 18px 16px 20px;
}

.category-links a {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-radius: 9px;
  background: white;
  padding: 12px 20px;
  color: #222;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.category-links a::before {
  display: block;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  content: "▱";
}

.promo-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 630px;
  gap: 12px;
  width: calc(100% - 20px);
  margin: 0 auto 36px;
}

.promo-left,
.promo-right {
  min-height: 360px;
  border-radius: 20px;
  background: var(--orange);
}

.promo-left {
  position: relative;
  display: grid;
  grid-template-columns: 104px 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  overflow: hidden;
  padding: 32px 34px;
  color: white;
}

.promo-left::after {
  position: absolute;
  top: -110px;
  right: -40px;
  width: 330px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.promo-badge {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: #ffd11a;
  color: white;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.promo-badge span {
  align-self: end;
  font-size: 18px;
}

.promo-badge b {
  font-size: 15px;
}

.promo-badge small {
  align-self: start;
  border-radius: 12px;
  background: #111;
  padding: 5px 9px;
  font-size: 9px;
}

.promo-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.promo-shortcuts a {
  display: grid;
  min-height: 56px;
  place-items: center;
  border-radius: 13px;
  background: white;
  color: #142033;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.promo-copy {
  position: relative;
  z-index: 1;
}

.promo-copy h2 {
  margin: 0 0 10px;
  color: #fff200;
  font-size: 42px;
  line-height: 0.95;
}

.promo-copy h2 span {
  display: block;
  color: white;
  font-size: 24px;
}

.promo-copy p {
  max-width: 360px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.promo-dark,
.promo-light {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 900;
}

.promo-dark {
  background: #102033;
  color: white;
}

.promo-light {
  margin-left: 8px;
  background: white;
  color: #111;
}

.promo-right {
  padding: 18px 12px 10px;
  color: white;
}

.promo-right h2 {
  margin: 0 0 24px 4px;
  font-size: 30px;
  line-height: 0.95;
}

.promo-right article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  border-radius: 14px;
  background: white;
  color: #142033;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.promo-right article + article {
  margin-top: 10px;
}

.promo-right h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.promo-right p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
}

.promo-right a {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  border-radius: 7px;
  background: #f3f3f3;
  padding: 0 12px;
  color: #111;
  font-size: 10px;
  font-weight: 900;
}

.promo-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #f4f4f4;
}

.bag-icon::before {
  position: absolute;
  inset: 14px 10px 9px;
  border-radius: 2px;
  background: #ff4b36;
  box-shadow: 18px 0 0 #f5ae1b;
  content: "";
}

.bag-icon::after {
  position: absolute;
  top: 9px;
  left: 16px;
  width: 15px;
  height: 11px;
  border: 2px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.gear-icon::before {
  position: absolute;
  inset: 10px;
  border: 7px solid #111;
  border-radius: 50%;
  content: "";
}

.pc-icon::before {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 28px;
  height: 20px;
  border: 3px solid #777;
  border-radius: 3px;
  background: #84b8ff;
  content: "";
}

.pc-icon::after {
  position: absolute;
  bottom: 7px;
  left: 17px;
  width: 13px;
  height: 4px;
  background: #777;
  content: "";
}

.brand-strip {
  width: min(960px, calc(100% - 34px));
  margin: 0 auto 34px;
  transform: none;
}

.touch-banner {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 10px;
  background: #043f62;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 14px 30px rgba(0, 61, 98, 0.12);
}

.touch-banner-custom {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 205, 255, 0.32), transparent 23%),
    linear-gradient(90deg, #06486c 0%, #063b5e 25%, #064d71 48%, #063a5d 72%, #052f4f 100%);
}

.touch-banner-custom::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 86px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #39dfff 12%, #eaffff 52%, #39dfff 88%, transparent);
  box-shadow: 0 0 24px rgba(42, 228, 255, 0.92);
  content: "";
}

.touch-banner-custom::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 2% 0%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.12), transparent 18%);
  pointer-events: none;
  content: "";
}

.touch-device {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.22) saturate(1.12);
}

.touch-device-left {
  left: 30px;
  top: 15px;
  width: 154px;
  height: 118px;
}

.touch-device-mid-left {
  left: 224px;
  top: 24px;
  width: 152px;
  height: 112px;
}

.touch-device-mid-right {
  right: 218px;
  top: 20px;
  width: 166px;
  height: 120px;
}

.touch-device-right {
  right: 42px;
  top: 22px;
  width: 132px;
  height: 108px;
}

.touch-title {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 2;
  color: white;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.94;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
}

.brand-logos {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 0;
}

.brand-logos::before,
.brand-logos::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 52px;
  pointer-events: none;
  content: "";
}

.brand-logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--page), rgba(238, 238, 238, 0));
}

.brand-logos::after {
  right: 0;
  background: linear-gradient(270deg, var(--page), rgba(238, 238, 238, 0));
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: brandMarquee 28s linear infinite;
}

.brand-track img {
  width: 64px;
  height: 62px;
  flex: 0 0 64px;
  border-radius: 8px;
  background: white;
  object-fit: contain;
  padding: 9px;
}

.brand-logos:hover .brand-track {
  animation-play-state: paused;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.product-grid article {
  overflow: hidden;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title span {
  color: var(--orange);
  font-weight: 900;
}

.section-title h2 {
  margin: 8px 0 0;
  font-size: 38px;
}

.new-products {
  padding-top: 8px;
  padding-bottom: 54px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: calc(100% - 8px);
  margin: 0 auto;
}

.product-grid article {
  position: relative;
  min-height: 254px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px 10px 8px;
  text-align: left;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.04);
}

.product-grid article:nth-child(1)::before,
.product-grid article:nth-child(2)::before,
.product-grid article:nth-child(4)::before,
.product-grid article:nth-child(6)::before,
.product-grid article:nth-child(10)::before,
.product-grid article:nth-child(17)::before {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #ffe64f, #ff7a00);
  color: #e0151b;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  content: "ÜCRETSİZ\A KARGO";
  white-space: pre;
  transform: rotate(-8deg);
}

.product-grid article:nth-child(8)::before,
.product-grid article:nth-child(9)::before,
.product-grid article:nth-child(11)::before,
.product-grid article:nth-child(13)::before,
.product-grid article:nth-child(14)::before,
.product-grid article:nth-child(15)::before,
.product-grid article:nth-child(18)::before {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #2b54ff, #ffe54e);
  color: #e0151b;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  content: "ÇOK\A SATAN";
  white-space: pre;
  transform: rotate(-8deg);
}

.product-grid img {
  width: 100%;
  height: 155px;
  object-fit: contain;
}

.product-grid h3 {
  min-height: 43px;
  margin: 8px 0 6px;
  color: #16435c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.28;
}

.product-grid b {
  display: block;
  color: #06415e;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.product-marquee {
  width: 100%;
  margin: 10px 0 28px;
  overflow: hidden;
}

.product-marquee-track {
  display: flex;
  width: max-content;
  gap: 8px;
  animation: productMarquee 34s linear infinite;
}

.product-marquee:hover .product-marquee-track {
  animation-play-state: paused;
}

.product-marquee article {
  position: relative;
  width: 154px;
  min-height: 154px;
  flex: 0 0 154px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background: white;
  padding: 7px 10px 8px;
  overflow: hidden;
}

.product-marquee article:nth-child(1)::before,
.product-marquee article:nth-child(3)::before {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 28px;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #2b54ff, #ffe54e);
  color: #e0151b;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  content: "FIRSAT\A ÜRÜNÜ";
  white-space: pre;
  transform: rotate(-8deg);
}

.product-marquee img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.product-marquee h3 {
  height: 34px;
  margin: 5px 0 3px;
  color: #16435c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.18;
  overflow: hidden;
}

.product-marquee b {
  display: block;
  color: #06415e;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.triple-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: calc(100% - 28px);
  margin: 0 auto 34px;
}

.triple-banners article {
  position: relative;
  height: 382px;
  overflow: hidden;
  border-radius: 7px;
  background: #111;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.12);
}

.triple-banners img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.triple-banners a {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: transparent;
  text-indent: -9999px;
  background: transparent;
}

.google-reviews {
  overflow: hidden;
  background: #f4f7fa;
  padding: 18px 0 22px;
  border-top: 1px solid #edf1f5;
  border-bottom: 1px solid #edf1f5;
}

.reviews-head {
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
}

.reviews-head span {
  display: inline-block;
  color: #f01822;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.reviews-head h2 {
  margin: 14px 0 8px;
  color: #172033;
  font-size: 31px;
  line-height: 1.1;
}

.reviews-head p {
  margin: 0 auto 18px;
  max-width: 560px;
  color: #66768b;
  font-size: 13px;
  line-height: 1.6;
}

.reviews-head a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  border-radius: 24px;
  background: white;
  padding: 0 20px;
  color: #172033;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.11);
}

.reviews-head a b {
  color: #ff9f00;
  letter-spacing: 1px;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reviewsMarquee 42s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.reviews-track article {
  width: 192px;
  min-height: 178px;
  flex: 0 0 192px;
  border: 1px solid #e7edf3;
  border-radius: 12px;
  background: white;
  padding: 20px 14px;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.04);
}

.reviews-track article b {
  display: block;
  margin-bottom: 16px;
  color: #ff9f00;
  font-size: 13px;
  letter-spacing: 1px;
}

.reviews-track article p {
  height: 64px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #66768b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.reviews-track article h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 14px;
}

.reviews-track article small {
  color: #f01822;
  font-size: 11px;
  font-weight: 900;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 252px));
  justify-content: center;
  gap: 32px;
  background: #f4f7fa;
  padding: 44px 16px 46px;
}

.info-cards article {
  min-height: 216px;
  padding: 22px 28px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.06);
}

.info-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  background: #f01822;
  border-radius: 13px;
  color: #fff;
  box-shadow: 0 9px 20px rgba(240, 24, 34, 0.22);
}

.info-icon::before,
.info-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.delivery-icon::before {
  width: 23px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.delivery-icon::after {
  width: 6px;
  height: 6px;
  right: 8px;
  bottom: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -18px 0 0 currentColor;
}

.shield-icon::before {
  width: 21px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 12px 12px 14px 14px;
  clip-path: polygon(50% 0, 100% 14%, 88% 76%, 50% 100%, 12% 76%, 0 14%);
}

.shield-icon::after {
  width: 7px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(38deg);
}

.phone-icon::before {
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.phone-icon::after {
  width: 12px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-38deg);
}

.payment-icon::before {
  width: 25px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.payment-icon::after {
  width: 16px;
  height: 3px;
  top: 18px;
  background: currentColor;
}

.info-cards h3 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 16px;
  font-weight: 900;
}

.info-cards p {
  margin: 0;
  color: #6d7d93;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.login-page {
  display: none;
  background: #f4f7fa;
}

body.login-open main {
  display: none;
}

body.login-open .login-page {
  display: block;
}

.login-heading {
  background: #eef0f2;
  border-bottom: 1px solid #dfe3e7;
  padding: 16px 0 26px;
}

.breadcrumb {
  margin-bottom: 13px;
  color: #7b8794;
  font-size: 11px;
}

.breadcrumb a {
  color: #7b8794;
  text-decoration: none;
}

.login-heading h1 {
  margin: 0;
  color: #061125;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.heading-line {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 22px;
  background: #101010;
}

.login-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 14px 0 36px;
}

.login-page .register-panel {
  display: none;
}

body.register-open .login-panel:not(.register-panel) {
  display: none;
}

body.register-open .login-page .register-panel {
  display: grid;
}

.new-member-box,
.member-login-box {
  min-height: 344px;
  padding: 30px 24px;
  background: #f7f7f7;
}

.member-login-box {
  background: #fbfbfb;
}

.new-member-box h2,
.member-login-box h2 {
  margin: 0 0 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f01822;
  color: #f01822;
  font-size: 22px;
  font-weight: 500;
}

.new-member-box p,
.new-member-box li,
.member-form,
.member-form input {
  color: #061125;
  font-size: 13px;
}

.new-member-box ul {
  margin: 8px 0 22px 36px;
  padding: 0;
  line-height: 1.65;
}

.orange-action,
.member-form button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.member-form {
  display: grid;
  gap: 15px;
}

.form-top,
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-top small {
  color: #f01822;
}

.member-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.member-form input[type="email"],
.member-form input[type="password"] {
  width: 100%;
  height: 31px;
  border: 1px solid #bfcbd8;
  border-radius: 12px;
  background: #eaf2ff;
  padding: 0 10px;
  outline: none;
}

.login-options {
  margin-top: 4px;
  font-size: 11px;
}

.remember-me {
  display: inline-flex !important;
  grid-template-columns: auto;
  gap: 6px !important;
  align-items: center;
  font-weight: 500 !important;
}

.remember-me input {
  width: 13px;
  height: 13px;
}

.login-options a {
  color: #6d7280;
  text-decoration: none;
}

.member-form button {
  width: 58px;
  margin-top: 10px;
  background: var(--green);
}

.dealer-info-box p {
  max-width: 900px;
  margin: 0 0 10px;
  color: #172033;
  font-size: 16px;
  line-height: 1.55;
}

.register-form {
  display: grid;
  gap: 14px;
  color: #061125;
  font-size: 13px;
}

.register-form p {
  margin: 0 0 4px;
  color: #061125;
  font-size: 12px;
}

.register-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.register-form input[type="text"],
.register-form input[type="tel"],
.register-form input[type="email"],
.register-form input[type="password"] {
  width: 100%;
  height: 31px;
  border: 1px solid #bfcbd8;
  border-radius: 12px;
  background: #fff;
  padding: 0 10px;
  outline: none;
}

.register-form input[type="email"],
.register-form input[type="password"] {
  background: #eaf2ff;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-check {
  display: flex !important;
  gap: 7px !important;
  align-items: center;
  font-size: 12px;
  font-weight: 500 !important;
}

.form-check input {
  width: 13px;
  height: 13px;
}

.fake-captcha {
  display: grid;
  grid-template-columns: 22px 1fr 72px;
  width: 242px;
  min-height: 60px;
  align-items: center;
  gap: 10px;
  border: 1px solid #d1d5db;
  background: #f8f8f8;
  padding: 10px;
  cursor: pointer;
}

.fake-captcha input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--orange);
}

.fake-captcha b {
  font-size: 13px;
  font-weight: 700;
}

.fake-captcha small {
  color: #8a8a8a;
  font-size: 10px;
  text-align: center;
}

.register-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.register-actions button {
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.register-actions small {
  color: #f01822;
  font-size: 11px;
}

.form-message {
  min-height: 18px;
  margin: 0;
  color: #f01822;
  font-size: 12px;
  font-weight: 800;
}

.form-message.success {
  color: #16a34a;
}

.login-service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 252px));
  justify-content: center;
  gap: 32px;
  background: #f4f7fa;
  border-top: 16px solid #e8e8e8;
  padding: 42px 16px 48px;
}

.login-service-cards article {
  min-height: 216px;
  padding: 22px 28px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.06);
}

.login-service-cards h3 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 16px;
  font-weight: 900;
}

.login-service-cards p {
  margin: 0;
  color: #6d7d93;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}


/* Category listing page */
.category-page {
  display: none;
  background: #eeeeee;
}

body.category-open main > section:not(.category-page) {
  display: none !important;
}

body.category-open .category-page {
  display: block;
}

.category-heading {
  background: #eef0f2;
  border-bottom: 1px solid #dfe3e7;
  padding: 14px 0 28px;
}

.category-heading h1 {
  margin: 0;
  color: #061125;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 16px;
  padding: 14px 0 34px;
}

.category-toolbar {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  background: #fff;
  padding: 6px 20px;
}

.view-button,
.sort-chip,
.page-size {
  height: 22px;
  border: 0;
  border-radius: 11px;
  background: var(--orange);
  color: #fff;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.view-button {
  width: 22px;
  padding: 0;
  border-radius: 3px;
  font-size: 14px;
}

.view-button.active,
.sort-chip.active {
  background: #061125;
}

.page-size {
  width: 54px;
  font-size: 12px;
  outline: 0;
}

.category-status {
  min-height: 20px;
  margin: 0 0 8px;
  color: #0f5132;
  font-size: 13px;
  font-weight: 900;
}

.category-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.category-products.list-view {
  grid-template-columns: 1fr;
}

.category-product-card {
  position: relative;
  min-height: 446px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(23, 32, 51, 0.04);
}

.category-product-card::before {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: none;
  width: 50px;
  height: 36px;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #2b54ff, #ffe54e);
  color: #e0151b;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  content: "ÜCRETSİZ\A KARGO";
  white-space: pre;
  transform: rotate(-8deg);
}

.category-product-card:nth-child(3n)::before,
.category-product-card:nth-child(5n)::before {
  display: grid;
}

.discount-tag {
  position: absolute;
  top: 92px;
  right: 0;
  display: grid;
  min-width: 52px;
  min-height: 36px;
  place-items: center;
  background: #fff04a;
  color: #ff2a00;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.product-image-wrap {
  display: grid;
  height: 312px;
  place-items: center;
  padding: 14px;
  background: #fff;
}

.product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-product-card h2 {
  min-height: 42px;
  margin: 0;
  padding: 0 13px;
  color: #16435c;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.category-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px 14px;
}

.category-price {
  color: #06415e;
  font-size: 18px;
  font-weight: 900;
}

.old-price {
  color: #ed111b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: line-through;
}

.category-products.list-view .category-product-card {
  display: grid;
  grid-template-columns: 210px 1fr 180px;
  min-height: 176px;
  align-items: center;
}

.category-products.list-view .product-image-wrap {
  height: 176px;
}

.category-products.list-view .discount-tag {
  top: 18px;
}

.category-sidebar {
  display: grid;
  align-content: start;
  gap: 0;
}

.side-category-list,
.filter-box {
  border: 1px solid #dedede;
  background: #f3f3f3;
}

.side-category-list {
  display: grid;
  border-radius: 6px 6px 0 0;
  padding: 10px 0;
}

.side-category-list a {
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.side-category-list a::before {
  color: #9aa0a8;
  font-size: 24px;
  line-height: 0;
  content: "‹";
}

.side-category-list a.active,
.side-category-list a:hover {
  color: var(--orange);
}

.filter-box {
  border-top: 0;
  padding: 22px 22px 24px;
  background: #fff;
}

.filter-box h3 {
  margin: 0 0 28px;
  color: #f01822;
  font-size: 16px;
  font-weight: 900;
}

.price-filter {
  display: grid;
  grid-template-columns: 1fr 1fr 108px;
  gap: 8px;
  align-items: end;
}

.price-filter label {
  display: grid;
  gap: 5px;
  color: #061125;
  font-size: 11px;
  font-weight: 900;
}

.price-filter input {
  width: 100%;
  height: 30px;
  border: 1px solid #c8cdd5;
  border-radius: 10px;
  padding: 0 10px;
  outline: 0;
}

.price-filter button {
  height: 30px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.brand-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}

.brand-filter label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.brand-filter input {
  width: 13px;
  height: 13px;
  accent-color: #000;
}


/* Avenir ana sayfa hareketli kamera bannerlari */
.hero.avenir-banner {
  background: #03155c;
}

.hero.avenir-banner .hero-panels {
  grid-template-columns: 0.88fr 1fr 1fr;
  gap: 18px;
  padding: 36px 12px 10px;
  background: #03155c;
}

.hero.avenir-banner .hero-panel,
.hero.avenir-banner .hero-side {
  border-color: rgba(255, 255, 255, 0.68);
  background: #03155c;
}

.hero.avenir-banner .hero img,
.hero.avenir-banner .hero-side img {
  object-fit: contain;
  background: #03155c;
  padding: 8px;
}

.hero.avenir-banner .hero-shade {
  padding: 38px 18px 0 30px;
  background: linear-gradient(90deg, rgba(3, 21, 92, 0.08), rgba(3, 21, 92, 0.72) 44%, rgba(3, 21, 92, 0.08));
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.hero.avenir-banner .red-pill {
  border-radius: 3px;
  background: #fdc801;
  color: #111827;
  font-size: 13px;
}

.hero.avenir-banner h1 {
  max-width: 430px;
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.08;
}

.hero.avenir-banner p {
  max-width: 440px;
  font-size: 15px;
}

.hero.avenir-banner .hero-ticker {
  background: #020b34;
}

@media (max-width: 1100px) {
  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-sidebar {
    order: -1;
  }
}

@media (max-width: 760px) {
  .category-toolbar {
    flex-wrap: wrap;
  }

  .category-products,
  .category-products.list-view {
    grid-template-columns: 1fr;
  }

  .category-products.list-view .category-product-card {
    grid-template-columns: 1fr;
  }

  .price-filter,
  .brand-filter {
    grid-template-columns: 1fr;
  }
}
/* End category listing page */
@keyframes reviewsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes productMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 4px));
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 10;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 8px;
  min-width: 188px;
  align-items: center;
  border-radius: 26px;
  background: #25d366;
  color: white;
  padding: 10px 18px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-float span {
  grid-row: span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  font-size: 0;
}

.whatsapp-float span::before {
  width: 11px;
  height: 11px;
  border: 3px solid white;
  border-radius: 50%;
  content: "";
}

.whatsapp-float b {
  font-size: 13px;
}

.whatsapp-float small {
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  background: #e9e9e9;
  border-top: 1px solid #d8d8d8;
  color: #606060;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1.1fr 0.85fr 1.2fr;
  gap: 54px;
  min-height: 430px;
  padding: 30px 0 46px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #101831;
  font-size: 13px;
  font-weight: 900;
}

.footer-links a {
  display: block;
  margin: 0 0 12px;
  color: #606060;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a::before {
  content: "› ";
  color: #606060;
}

.site-footer p {
  margin: 0;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.6;
}

.footer-social {
  margin-top: 28px;
}

.social-buttons {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-buttons a {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0;
  place-items: center;
  color: #fff;
  background: #1769d8;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.social-buttons a:nth-child(2),
.social-buttons a:nth-child(4) {
  background: #d43131;
}

.social-buttons a:nth-child(3) {
  background: #777;
}

.social-buttons a:nth-child(5) {
  background: #1e88ad;
}

.social-buttons a:nth-child(6) {
  background: #ff6800;
}

.footer-app {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-button {
  display: grid;
  position: relative;
  width: 112px;
  height: 36px;
  margin-bottom: 12px;
  padding-left: 34px;
  align-content: center;
  color: #fff;
  background: #050505;
  border-radius: 6px;
  text-decoration: none;
}

.store-button::before {
  position: absolute;
  left: 10px;
  top: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.apple-store::before {
  content: "●";
}

.play-store::before {
  content: "▶";
  color: #27d253;
}

.store-button span {
  font-size: 7px;
  font-weight: 800;
}

.store-button b {
  margin-top: -1px;
  font-size: 14px;
  line-height: 1;
}

.footer-brand-mark {
  width: 440px;
  max-width: 100%;
  margin-top: 92px;
  margin-left: -20px;
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
}

.footer-newsletter form {
  position: relative;
  margin-top: 22px;
}

.footer-newsletter input {
  width: 100%;
  height: 30px;
  padding: 0 42px 0 14px;
  border: 1px solid #c9c9c9;
  border-radius: 16px;
  background: #f7f7f7;
  outline: none;
}

.footer-newsletter button {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 24px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #b8b8b8;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.footer-payment {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-top: 16px solid #d8d8d8;
}

.footer-payment img {
  width: min(860px, calc(100% - 32px));
  max-height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 32, 51, 0.12);
}

.footer-copy {
  min-height: 34px;
  padding: 10px 0;
  background: #dfdfdf;
  color: #8a8a8a;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .brand-row {
  position: relative;
  z-index: 80;
  overflow: visible;
  display: grid;
  grid-template-columns: 380px minmax(360px, 560px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 96px;
  background: white;
}

  .hero {
    width: calc(100% - 34px);
  }

  .quick-products,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-cards {
    grid-template-columns: repeat(2, minmax(210px, 252px));
  }

  .login-panel {
    grid-template-columns: 1fr;
  }

  .login-service-cards {
    grid-template-columns: repeat(2, minmax(210px, 252px));
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    min-height: auto;
  }

  .footer-brand-mark {
  width: 440px;
  max-width: 100%;
  margin-top: 92px;
  margin-left: -20px;
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
}

  .top-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .hero {
    height: 360px;
    border-radius: 0;
  }

  .hero-panels {
    grid-template-columns: 1fr;
    gap: 0;
    height: calc(100% - 34px);
    padding: 18px 10px 8px;
  }

  .hero-side {
    display: none;
  }

  .hero-shade {
    width: 100%;
    padding: 48px 24px 0;
  }

  .hero-ticker {
    gap: 18px;
    font-size: 12px;
  }

  .quick-products,
  .promo-zone,
  .product-grid,
  .triple-banners {
    grid-template-columns: 1fr;
  }

  .triple-banners article {
    height: 240px;
  }

  .reviews-track article {
    width: 220px;
    flex-basis: 220px;
  }

  .info-cards {
    grid-template-columns: minmax(220px, 1fr);
    padding: 30px 14px 36px;
  }

  .login-heading {
    padding: 14px 12px 22px;
  }

  .login-heading h1 {
    font-size: 20px;
  }

  .login-panel {
    padding: 12px;
  }

  .new-member-box,
  .member-login-box {
    padding: 24px 14px;
  }

  .form-top,
  .login-options,
  .form-two,
  .register-actions {
    display: grid;
    gap: 8px;
  }

  .login-service-cards {
    grid-template-columns: minmax(220px, 1fr);
    padding: 30px 14px 36px;
  }

  .promo-zone {
    width: calc(100% - 20px);
  }

  .promo-left {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .promo-shortcuts {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-right {
    min-height: auto;
  }

  .brand-strip {
    width: calc(100% - 24px);
  }

  .touch-banner {
    height: 118px;
  }

  .touch-title {
    top: 31px;
    font-size: 24px;
  }

  .touch-device-left {
    left: 10px;
    width: 96px;
    height: 82px;
  }

  .touch-device-mid-left {
    left: 112px;
    width: 86px;
    height: 76px;
  }

  .touch-device-mid-right {
    right: 94px;
    width: 92px;
    height: 78px;
  }

  .touch-device-right {
    right: 10px;
    width: 74px;
    height: 68px;
  }

  .brand-track img {
    width: 58px;
    height: 56px;
    flex-basis: 58px;
  }

  .category-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mega-menu {
    top: 50px;
    width: calc(100vw - 20px);
  }

  .mega-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 14px;
  }

  .logo-text b {
    font-size: 34px;
  }

  .whatsapp-float {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}






/* Initial viewport fit */
@media (min-width: 1200px) {
  .blackbar .wide,
  .orangebar .wide {
    min-height: 34px;
  }

  .top-actions a {
    min-height: 26px;
    padding: 0 12px;
  }

  .brand-row {
  position: relative;
  z-index: 80;
  overflow: visible;
  display: grid;
  grid-template-columns: 380px minmax(360px, 560px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 96px;
  background: white;
}

  .menu-scroll {
    min-height: 40px;
  }

  .menu-scroll a {
    font-size: 13px;
    padding: 0 12px;
  }

  .mega-menu {
    top: 40px;
  }

  .hero-wrap {
    padding: 18px 0 16px;
  }

  .hero {
    height: 320px;
  }

  .quick-products article {
    min-height: 268px;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .category-links {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .category-links a {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
/* End initial viewport fit */

/* Category card spacing override */
.category-product-card {
  display: grid !important;
  grid-template-rows: 330px minmax(64px, auto) 58px !important;
  min-height: 462px !important;
}

.product-image-wrap {
  height: 330px !important;
  padding-bottom: 18px !important;
}

.category-product-card h2 {
  min-height: 64px !important;
  padding-top: 14px !important;
  background: #fff;
}

.category-price-row {
  padding-top: 8px !important;
  background: #fff;
}

.category-products.list-view .category-product-card {
  grid-template-rows: auto !important;
  min-height: 176px !important;
}
/* End category card spacing override */
/* Dr.Barkod style products mega menu */
.mega-menu {
  top: 42px;
  width: min(930px, calc(100vw - 44px));
  max-height: calc(100vh - 118px);
  overflow: auto;
  background: #fff;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.mega-inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 26px 20px 34px;
  align-items: start;
}

.mega-column,
.mega-group {
  min-width: 0;
}

.mega-column h3,
.mega-group h3 {
  margin: 0 0 12px;
  border-bottom: 1px solid #d8d8d8;
  padding: 0 14px 12px;
  color: #0000b8;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.mega-column-stack {
  display: grid;
  gap: 22px;
}

.mega-group:first-child {
  min-height: 58px;
}

.mega-card {
  border-radius: 7px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.08);
}

.mega-card a {
  min-height: 39px;
  padding: 0 14px;
  font-size: 12px;
  line-height: 1.15;
  color: #111;
  font-weight: 800;
}

.mega-card a:hover {
  background: #f7f7f7;
  color: #555;
}

.mega-link-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.mega-link-list a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ededed;
  color: #0000b8;
  font-size: 12px;
  font-weight: 800;
}

@media (min-width: 1200px) {
  .mega-menu {
    top: 40px;
  }
}

@media (max-width: 900px) {
  .mega-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 14px;
  }

  .mega-column-stack {
    gap: 18px;
  }
}
/* Center the top navigation as a compact group. */
.menu-scroll {
  justify-content: flex-start;
  width: max-content;
  max-width: calc(100% - 34px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1100px) {
  .menu-scroll {
    width: calc(100% - 34px);
    max-width: calc(100% - 34px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 760px) {
  .logo {
    width: 280px;
    min-height: 72px;
    margin-left: 0;
    transform: none;
  }

  .site-logo-img {
    width: 280px;
    max-width: 74vw;
    height: 72px;
  }
}

/* Product detail page */
.product-detail-page {
  display: none;
  background: #eeeeee;
  min-height: 680px;
}

body.product-detail-open main > section:not(.product-detail-page) {
  display: none !important;
}

body.product-detail-open .product-detail-page {
  display: block;
}

.product-detail-heading {
  background: #eef0f2;
  border-bottom: 1px solid #dfe3e7;
  padding: 10px 0;
}

.product-detail-status {
  padding: 34px 0;
  color: #061125;
  font-size: 18px;
  font-weight: 900;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(520px, 1fr);
  gap: 28px;
  padding: 12px 0 18px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  min-height: 650px;
}

.product-thumbs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.product-thumbs button {
  width: 112px;
  height: 112px;
  border: 1px solid #d9dde4;
  border-radius: 3px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
}

.product-thumbs button.active {
  border-color: #061b44;
  box-shadow: inset 0 0 0 2px #061b44;
}

.product-thumbs img,
.product-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main-image {
  min-height: 650px;
  border: 1px solid #061b44;
  background: #fff;
  padding: 18px;
}

.product-buybox {
  display: grid;
  align-content: start;
  gap: 10px;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.detail-rating span {
  color: #061125;
  letter-spacing: 1px;
}

.detail-rating a {
  color: #e30613;
}

.detail-accordion {
  border: 1px solid #dfe3e7;
  border-radius: 6px;
  background: #f7f9fb;
  overflow: hidden;
}

.detail-accordion summary {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #061125;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.detail-accordion summary::after {
  content: "+";
  font-size: 16px;
}

.detail-accordion[open] summary::after {
  content: "-";
}

.detail-accordion p,
.detail-accordion table {
  margin: 0;
  padding: 12px 14px 14px;
  color: #526174;
  font-size: 12px;
  line-height: 1.7;
}

.detail-accordion table,
.product-long-content table {
  width: 100%;
  border-collapse: collapse;
}

.detail-accordion th,
.detail-accordion td,
.product-long-content th,
.product-long-content td {
  border-bottom: 1px solid #e0e5ec;
  padding: 10px 12px;
  text-align: left;
  font-size: 12px;
}

.detail-accordion th,
.product-long-content th {
  width: 38%;
  color: #061125;
  font-weight: 900;
}

.detail-code-box {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
}

.detail-code-box span {
  display: grid;
  gap: 3px;
}

.detail-code-box b {
  color: #e30613;
}

.detail-code-box input {
  width: 68px;
  height: 28px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  padding: 0 8px;
}

.detail-card {
  border-radius: 10px;
  background: #f8fafc;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.detail-card h1 {
  margin: 0 0 14px;
  color: #142033;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  border-radius: 13px;
  background: #d9fbe7;
  color: #0d8e45;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.service-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  color: #253044;
  font-size: 12px;
  font-weight: 800;
}

.shipping-line {
  display: grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid #f4cf72;
  border-radius: 7px;
  background: #fff6d8;
  color: #8a5a00;
  font-size: 12px;
  font-weight: 900;
}

.price-panel {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 14px 0;
}

.price-panel b {
  color: #06415e;
  font-size: 28px;
  font-weight: 900;
}

.price-panel small,
.price-panel em {
  color: #6f7d8d;
  font-size: 13px;
  font-weight: 900;
  font-style: normal;
}

.totals {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  color: #142033;
  font-size: 14px;
  font-weight: 900;
}

.totals b {
  color: #061b44;
}


.eft-note {
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  background: #f8fafc;
  color: #526174;
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0 12px;
  padding: 10px 12px;
}

.eft-note b {
  color: #142033;
  display: block;
  font-weight: 900;
  margin-bottom: 3px;
}

.eft-note b::before {
  content: "▣ ";
}

.detail-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-actions button {
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.detail-actions button + button {
  background: #22c55e;
}

.whatsapp-offer {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.product-info-tabs {
  padding: 16px 0 34px;
}

.tab-buttons {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #061b44;
}

.tab-buttons button {
  min-height: 38px;
  border: 0;
  border-radius: 10px 10px 0 0;
  background: var(--orange);
  color: #fff;
  padding: 0 20px;
  font-weight: 900;
}

.tab-buttons button.active {
  background: #06366e;
}

.product-long-content {
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding: 28px 32px;
  color: #4e5d70;
  font-size: 13px;
  line-height: 1.8;
}

.product-long-content h2,
.product-long-content h3 {
  color: #142033;
  font-weight: 900;
}

.product-long-content ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.category-product-title {
  display: block;
  background: #fff;
}

@media (max-width: 1100px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    min-height: auto;
  }

  .product-main-image {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-thumbs button {
    width: 100%;
    height: 86px;
  }

  .product-main-image {
    min-height: 340px;
  }

  .service-grid,
  .detail-actions {
    grid-template-columns: 1fr;
    display: grid;
  }
}
/* End product detail page */
/* Product detail tab panels */
.detail-tab-panel {
  display: none;
}

.detail-tab-panel.active {
  display: block;
}

.video-box,
.empty-tab-box {
  display: grid;
  min-height: 96px;
  place-items: center;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  background: #f7f9fc;
  color: #142033;
  font-size: 14px;
  font-weight: 900;
}

.video-box a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
}

.video-help-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.video-help-row span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e3e7ee;
  color: #142033;
  font-weight: 900;
}

.installment-table thead th {
  background: #061b44;
  color: #fff;
}

.installment-table tbody tr:nth-child(even) {
  background: #f7f9fc;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  background: #f8fafc;
  padding: 0 18px;
  margin-bottom: 16px;
}

.review-summary b {
  color: #ff9f00;
  letter-spacing: 2px;
}

.review-form {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.review-form label {
  display: grid;
  gap: 6px;
  color: #142033;
  font-weight: 900;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.review-form textarea {
  min-height: 110px;
  resize: vertical;
}

.review-form button {
  width: max-content;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 760px) {
  .tab-buttons {
    flex-wrap: wrap;
  }

  .video-help-row {
    grid-template-columns: 1fr;
  }
}
/* End product detail tab panels */
/* Product reviews */
.review-list {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.review-item {
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
}

.review-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 8px;
}

.review-item-head b {
  color: #142033;
  font-size: 14px;
  font-weight: 900;
}

.review-item-head span {
  color: #ff9f00;
  letter-spacing: 1px;
  font-weight: 900;
}

.review-item-head time {
  margin-left: auto;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.review-item p {
  margin: 0;
  color: #354256;
  font-size: 13px;
  line-height: 1.6;
}

.review-form select {
  width: 180px;
  height: 38px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  padding: 0 10px;
  font: inherit;
  outline: none;
}

.review-message {
  min-height: 20px;
  margin: 0;
  color: #008a31;
  font-weight: 900;
}
/* End product reviews */
/* Bank installment table */
.installment-wrap {
  border-top: 1px solid #dbe3ec;
  padding-top: 22px;
  overflow-x: auto;
}

.bank-installment-table {
  min-width: 980px;
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.bank-installment-table thead th {
  height: 48px;
  background: var(--orange) !important;
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.bank-installment-table thead th:first-child {
  width: 24%;
}

.bank-installment-table tbody th,
.bank-installment-table tbody td {
  height: 72px;
  border-bottom: 1px solid #dfe7ef !important;
  border-right: 1px solid #dfe7ef !important;
  background: #fff;
  text-align: center !important;
  vertical-align: middle;
}

.bank-installment-table tbody th {
  width: 24% !important;
  padding: 0 16px !important;
}

.bank-installment-table tbody td {
  color: #43546a;
  font-size: 12px !important;
  line-height: 1.65;
}

.bank-installment-table tbody td b {
  display: block;
  color: #536174;
  font-size: 12px;
  font-weight: 600;
}

.bank-installment-table tbody td small {
  display: block;
  color: #8b95a3;
  font-size: 11px;
  font-weight: 600;
}

.bank-logo {
  display: inline-grid;
  place-items: center;
  min-width: 118px;
  min-height: 34px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.bank-world { color: #7b168b; font-size: 18px; }
.bank-axess { color: #1e1e1e; font-size: 27px; }
.bank-axess::first-letter { color: #f6b900; }
.bank-maximum { color: #e029b9; font-size: 19px; font-style: italic; }
.bank-cardfinans { color: #00499b; font-size: 13px; }
.bank-paraf { color: #00b9e8; font-size: 23px; font-style: italic; font-family: Georgia, serif; }
.bank-advantage { color: #f05a24; font-size: 13px; }
.bank-bankkart { color: #e30613; font-size: 18px; }
.bank-bonus { color: #17803d; font-size: 15px; }
.bank-saglam { color: #007a54; font-size: 13px; }

@media (max-width: 760px) {
  .bank-installment-table {
    min-width: 760px;
  }

  .bank-logo {
    min-width: 92px;
    font-size: 16px;
  }
}
/* End bank installment table */
/* Installment table compact alignment fix */
.installment-wrap {
  padding-top: 12px;
  overflow-x: hidden;
}

.bank-installment-table {
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed;
}

.bank-installment-table thead th:first-child,
.bank-installment-table tbody th {
  width: 23% !important;
}

.bank-installment-table thead th:not(:first-child),
.bank-installment-table tbody td {
  width: 25.666% !important;
}

.bank-installment-table thead th {
  height: 42px;
  padding: 0 8px !important;
  white-space: normal;
}

.bank-installment-table tbody th,
.bank-installment-table tbody td {
  height: 58px;
  padding: 8px 10px !important;
}

.bank-installment-table tbody td b {
  white-space: nowrap;
}

.bank-installment-table tbody td small {
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .installment-wrap {
    overflow-x: auto;
  }

  .bank-installment-table {
    min-width: 760px !important;
  }
}
/* End installment table compact alignment fix */
/* Account page */
.account-page {
  display: none;
  background: #eeeeee;
  min-height: 640px;
}

body.account-open main > section:not(.account-page) {
  display: none !important;
}

body.account-open .account-page {
  display: block;
}

.account-heading {
  background: #e9e9e9;
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 0 26px;
}

.account-heading h1 {
  color: #081327;
  font-size: 26px;
  font-weight: 900;
  margin: 12px 0 14px;
}

.account-heading .heading-line,
.account-main-card h2::after {
  background: #e30613;
  content: "";
  display: block;
  height: 1px;
  margin-top: 12px;
  width: 100%;
}

.account-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 26px 0 56px;
}

.account-main-card,
.account-sidebar-card {
  background: #f4f4f4;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  color: #101827;
}

.account-main-card {
  min-height: 430px;
  padding: 20px;
  position: relative;
}

.account-welcome {
  margin: 0 0 18px;
}

.account-help {
  color: #344256;
  margin: 0 0 20px;
}

.account-main-card h2 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 18px;
}

.account-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 34px;
}

.account-info-grid div,
.account-info-grid span {
  display: grid;
  gap: 5px;
}

.account-info-grid strong,
.account-info-grid b {
  font-weight: 900;
}

.account-edit-button {
  background: #ff6500;
  border: 0;
  border-radius: 18px;
  color: white;
  font-weight: 900;
  height: 28px;
  padding: 0 18px;
  position: absolute;
  right: 20px;
  top: 190px;
}

.account-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.account-address-grid article {
  position: relative;
}

.account-address-grid h3 {
  color: #7b8490;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
}

.account-address-grid div {
  background: #eeeeee;
  border: 1px solid #d6d6d6;
  min-height: 44px;
}

.account-address-grid button {
  background: #22c55e;
  border: 0;
  border-radius: 18px;
  bottom: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  height: 26px;
  padding: 0 16px;
  position: absolute;
  right: 10px;
}

.account-sidebar-card {
  align-self: start;
  padding: 26px 22px;
  text-align: center;
}

.account-avatar {
  background: #9b9b9b;
  border-radius: 50%;
  height: 76px;
  margin: 0 auto 10px;
  position: relative;
  width: 76px;
}

.account-avatar::before {
  background: #9b9b9b;
  border-radius: 48% 48% 0 0;
  bottom: -50px;
  content: "";
  height: 58px;
  left: -18px;
  position: absolute;
  width: 112px;
}

.account-sidebar-card > strong,
.account-sidebar-card > span {
  display: block;
  position: relative;
  z-index: 1;
}

.account-sidebar-card > strong {
  margin-top: 58px;
}

.account-sidebar-card > span {
  color: #344256;
  font-size: 12px;
  margin-top: 4px;
}

.account-sidebar-card nav {
  border-top: 1px solid #d5d5d5;
  display: grid;
  gap: 2px;
  margin-top: 24px;
  padding-top: 12px;
  text-align: left;
}

.account-sidebar-card nav a {
  align-items: center;
  color: #111827;
  display: flex;
  font-weight: 900;
  gap: 9px;
  min-height: 30px;
  padding: 5px 8px;
  text-decoration: none;
}

.account-sidebar-card nav a.active,
.account-sidebar-card nav a:hover {
  background: #fff;
  color: #e30613;
}

.account-announcement {
  background: #fff;
  border: 1px solid #d2d2d2;
  margin-top: 18px;
  padding: 18px;
  text-align: left;
}

.account-announcement b,
.account-announcement a {
  display: block;
}

.account-announcement b {
  background: #f2f2f2;
  margin-bottom: 12px;
  padding: 9px;
}

.account-announcement a {
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}

.account-empty-panel {
  background: #fff;
  border: 1px solid #d6dce5;
  border-radius: 6px;
  color: #526174;
  padding: 22px;
}

@media (max-width: 900px) {
  .account-content,
  .account-info-grid,
  .account-address-grid {
    grid-template-columns: 1fr;
  }

  .account-edit-button {
    position: static;
    margin-bottom: 24px;
  }
}
.account-address-slot,
.other-address-list {
  position: relative;
}

.address-box {
  background: #eeeeee;
  border: 1px solid #d6d6d6;
  color: #344256;
  display: grid;
  gap: 3px;
  min-height: 44px;
  padding: 10px 92px 10px 12px;
}

.address-box.filled {
  background: #fff;
}

.other-address-list {
  margin-bottom: 20px;
}

.other-address-add {
  background: #22c55e;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  height: 26px;
  padding: 0 16px;
  position: absolute;
  right: 10px;
  top: 9px;
}

.other-address-card {
  align-items: start;
  background: #fff;
  border: 1px solid #d6d6d6;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-bottom: 10px;
  padding: 12px;
}

.other-address-card div {
  display: grid;
  gap: 3px;
}

.other-address-card button {
  background: #e30613;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  height: 28px;
  padding: 0 14px;
}

.account-address-form {
  background: #fff;
  border: 1px solid #d6dce5;
  border-radius: 6px;
  margin-top: 22px;
  padding: 18px;
}

.account-address-form h3 {
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 14px;
}

.address-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.address-form-grid label,
.address-default-check {
  color: #111827;
  display: grid;
  font-weight: 900;
  gap: 6px;
}

.address-form-grid input,
.address-form-grid textarea {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  min-height: 36px;
  padding: 8px 10px;
}

.address-line {
  grid-column: 1 / -1;
}

.address-line textarea {
  min-height: 88px;
  resize: vertical;
}

.address-default-check {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.address-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.address-form-actions button {
  background: #e30613;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  height: 34px;
  padding: 0 18px;
}

.address-form-actions button + button {
  background: #334155;
}

.account-address-form.has-error {
  border-color: #e30613;
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.08);
}

@media (max-width: 900px) {
  .address-form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section.contact-page {
  display: none;
}

body.contact-open main {
  display: none;
}

body.contact-open .contact-section.contact-page {
  display: block;
}
/* Contact section */
.contact-section {
  background: #f1f2f4;
  border-top: 1px solid #dde2e8;
}

.contact-heading {
  background: #e9eaec;
  border-bottom: 1px solid #d8dde4;
  padding: 16px 0 22px;
}

.contact-heading .breadcrumb {
  margin-bottom: 12px;
  color: #7b8798;
  font-size: 12px;
  font-weight: 600;
}

.contact-heading .breadcrumb a {
  color: #718096;
}

.contact-heading h1 {
  margin: 0;
  color: #101827;
  font-size: 26px;
  font-weight: 900;
}

.contact-heading .heading-line {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 18px;
  background: #101827;
}

.contact-map {
  width: 100%;
  height: 300px;
  margin: 20px 0 26px;
  background: #dbe5ef;
  border-top: 1px solid #d9e0e8;
  border-bottom: 1px solid #d9e0e8;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0 0 28px;
}

.contact-info-row article {
  text-align: center;
  color: #101827;
}

.contact-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  border: 2px solid #f01822;
  border-radius: 50%;
  color: #101827;
}

.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.contact-phone-icon::before {
  width: 24px;
  height: 24px;
  border-left: 8px solid currentColor;
  border-bottom: 8px solid currentColor;
  border-radius: 5px 0 5px 9px;
  transform: rotate(-35deg);
}

.contact-company-icon::before {
  width: 24px;
  height: 26px;
  border: 4px solid currentColor;
  border-radius: 3px;
}

.contact-company-icon::after {
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
  transform: translate(-4px, -5px);
}

.contact-address-icon::before {
  width: 27px;
  height: 27px;
  background: currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-address-icon::after {
  width: 9px;
  height: 9px;
  background: #f1f2f4;
  border-radius: 50%;
}

.contact-mail-icon::before {
  width: 31px;
  height: 21px;
  border: 4px solid currentColor;
  border-radius: 3px;
}

.contact-mail-icon::after {
  width: 22px;
  height: 22px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: translateY(-4px) rotate(-45deg);
}

.contact-info-row h3 {
  margin: 0 0 8px;
  color: #101827;
  font-size: 13px;
  font-weight: 900;
}

.contact-info-row p,
.contact-info-row a {
  margin: 0;
  color: #263348;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form-wrap {
  background: #f7f8fa;
  padding: 20px 22px 26px;
  border-top: 1px solid #e1e6ec;
}

.contact-form-wrap h2 {
  margin: 0 0 16px;
  color: #101827;
  font-size: 22px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-form-fields {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d0da;
  border-radius: 9px;
  background: #fff;
  color: #101827;
  font: inherit;
  font-size: 13px;
}

.contact-form input {
  height: 38px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #f01822;
  color: #fff;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 240px;
  }
}
.contact-form-status {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: #166534;
  font-size: 13px;
  font-weight: 800;
}
.currency-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 6px 0 8px;
  color: #536174;
  font-size: 13px;
  font-weight: 800;
}

.currency-panel b {
  color: #06415e;
  font-size: 14px;
}
/* Cart page */
.cart-page {
  display: none;
  background: #eeeeee;
  min-height: 560px;
}

body.cart-open main > section:not(.cart-page) {
  display: none !important;
}

body.cart-open .cart-page {
  display: block;
}

.cart-heading {
  background: #eef0f2;
  border-bottom: 1px solid #dfe3e7;
  padding: 14px 0 20px;
}

.cart-heading h1 {
  margin: 10px 0 0;
  color: #061125;
  font-size: 26px;
  font-weight: 900;
}

.cart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  padding: 24px 0 42px;
}

.cart-list,
.cart-summary {
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}

.cart-list {
  overflow: hidden;
}

.cart-empty {
  padding: 28px;
  color: #536174;
  font-weight: 800;
}

.cart-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 110px 120px 34px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #edf1f6;
}

.cart-row:last-child {
  border-bottom: 0;
}

.cart-row img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  background: #f8fafc;
}

.cart-row h2 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.cart-row small {
  color: #64748b;
  font-weight: 800;
}

.cart-row input {
  width: 74px;
  height: 34px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  padding: 0 8px;
  text-align: center;
  font-weight: 900;
}

.cart-row strong {
  color: #06415e;
  font-size: 16px;
  font-weight: 900;
  text-align: right;
}

.cart-remove {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cart-summary {
  align-self: start;
  padding: 18px;
}

.cart-summary h2 {
  margin: 0 0 14px;
  color: #061125;
  font-size: 20px;
}

.cart-total-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #edf1f6;
  color: #334155;
  font-weight: 800;
}

.cart-total-line.grand {
  color: #061125;
  font-size: 18px;
  font-weight: 900;
}

.cart-order-button,
.cart-continue-button {
  display: grid;
  width: 100%;
  min-height: 40px;
  place-items: center;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.cart-continue-button {
  background: #101827;
}

.cart-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: #16a34a;
  font-weight: 900;
}

.category-add-cart {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  margin: 0 14px 12px;
  border: 0;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.category-products.list-view .category-add-cart {
  margin: 0;
}

@media (max-width: 900px) {
  .cart-shell { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 70px 1fr; }
  .cart-row strong { text-align: left; }
}
/* End cart page */
/* Account orders */
.account-orders-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.account-orders-head p,
.account-orders-message {
  color: #526174;
  font-weight: 800;
  margin: 6px 0 0;
}

.account-orders-table-wrap {
  overflow-x: auto;
  border: 1px solid #d6dce5;
  border-radius: 6px;
  background: #fff;
}

.account-orders-table {
  border-collapse: collapse;
  width: 100%;
}

.account-orders-table th,
.account-orders-table td {
  border-bottom: 1px solid #e5e9ef;
  padding: 12px 10px;
  text-align: left;
  vertical-align: middle;
}

.account-orders-table th {
  background: #f7f8fa;
  color: #101827;
  font-weight: 900;
}

.account-order-status {
  display: inline-flex;
  min-width: 82px;
  justify-content: center;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.account-detail-button {
  border: 0;
  border-radius: 16px;
  background: #e30613;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  height: 28px;
  padding: 0 14px;
}

.account-order-detail {
  margin-top: 16px;
  border: 1px solid #d6dce5;
  border-radius: 6px;
  background: #fff;
  padding: 16px;
}

.account-order-detail:empty {
  display: none;
}

.account-order-thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid #edf1f6;
  border-radius: 6px;
  background: #f8fafc;
}
/* End account orders */
.account-order-tracking {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 16px;
}

.account-order-tracking span {
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid #d6dce5;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.account-order-tracking b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #cbd5e1;
  color: #fff;
}

.account-order-tracking span.active {
  border-color: #22c55e;
  background: #ecfdf5;
  color: #166534;
}

.account-order-tracking span.active b {
  background: #22c55e;
}

@media (max-width: 700px) {
  .account-order-tracking { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.cart-success-message {
  margin: 22px 28px 0;
  border: 1px solid #86efac;
  border-radius: 10px;
  background: #ecfdf5;
  color: #166534;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 900;
}