/* mbackmart homepage — hero, sections (requires market-theme.css) */

.mbackmart--home > main.wrap,
.mbackmart--home .service .wrap,
.mbackmart--home footer .wrap {
  max-width: none;
  width: 100%;
  padding-left: clamp(14px, 2.2vw, 28px);
  padding-right: clamp(14px, 2.2vw, 28px);
}

.mbackmart--home .hero-band {
  background: linear-gradient(180deg, #08203b 0, #09233f 68%, var(--paper) 68%);
}

.mbackmart--home .hero-band > .wrap {
  max-width: none;
  padding: 0;
}

.mbackmart--home .hero-grid {
  display: grid;
  grid-template-columns: var(--nav-brand-col, 220px) minmax(0, 1fr);
  min-height: 462px;
  width: 100%;
}

.mbackmart--home .side {
  background: linear-gradient(180deg, #071d37, #06172c);
  border: 1px solid rgba(243, 196, 92, 0.38);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.mbackmart--home .side a:not(.cat-head) {
  height: 39px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #eef5ff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mbackmart--home .side a:not(.cat-head):hover {
  background: rgba(243, 196, 92, 0.12);
  color: #fff0c2;
}

.mbackmart--home .side span {
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 0;
}

.mbackmart--home .side i:first-child {
  width: 18px;
  text-align: center;
  color: #dbe5f1;
}

.mbackmart--home .side i:last-child {
  font-size: 11px;
}

.mbackmart--home .side .all {
  height: 48px;
  justify-content: center;
  color: var(--gold);
  font-weight: 500;
}

.mbackmart--home .side .cat-head {
  border-radius: 0;
  border-bottom: 1px solid rgba(7, 20, 36, 0.1);
  flex-shrink: 0;
}

.mbackmart--home .side .cat-head:hover {
  background: linear-gradient(90deg, #ffe495, #e0a54a);
  color: #071424;
}

.mbackmart--home .side .cat-head i:first-child {
  width: 18px;
  text-align: center;
  color: #071424;
  opacity: 0.85;
}

.mbackmart--home .side .cat-head i:last-child {
  font-size: 13px;
  color: #071424;
  opacity: 0.75;
}

.mbackmart--home .hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #07182e;
  isolation: isolate;
}

.mbackmart--home .hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-color: #07182e;
  background-image: url('../hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.mbackmart--home .hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  background-size: 220% 100%;
  animation: heroShimmer 9s ease-in-out infinite;
  pointer-events: none;
}

.mbackmart--home .hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.mbackmart--home .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
}

.mbackmart--home .hero-orb--1 {
  width: 220px;
  height: 220px;
  top: 8%;
  right: 18%;
  background: radial-gradient(circle, rgba(243, 196, 92, 0.42) 0%, transparent 72%);
  animation: heroOrbDrift1 14s ease-in-out infinite;
}

.mbackmart--home .hero-orb--2 {
  width: 160px;
  height: 160px;
  bottom: 18%;
  left: 42%;
  background: radial-gradient(circle, rgba(120, 180, 255, 0.28) 0%, transparent 72%);
  animation: heroOrbDrift2 18s ease-in-out infinite;
}

.mbackmart--home .hero-orb--3 {
  width: 120px;
  height: 120px;
  top: 42%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 220, 130, 0.32) 0%, transparent 72%);
  animation: heroOrbDrift3 11s ease-in-out infinite;
}

.mbackmart--home .hero-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe9a8;
  box-shadow: 0 0 10px 2px rgba(255, 220, 130, 0.65);
  opacity: 0;
}

.mbackmart--home .hero-spark--1 {
  top: 22%;
  left: 58%;
  animation: heroSpark 4.2s ease-in-out infinite;
}

.mbackmart--home .hero-spark--2 {
  top: 55%;
  right: 32%;
  animation: heroSpark 5.6s ease-in-out 1.4s infinite;
}

.mbackmart--home .hero-spark--3 {
  bottom: 28%;
  left: 35%;
  animation: heroSpark 4.8s ease-in-out 2.1s infinite;
}

.mbackmart--home .hero-spark--4 {
  top: 38%;
  right: 22%;
  width: 5px;
  height: 5px;
  animation: heroSpark 3.8s ease-in-out 0.6s infinite;
}

.mbackmart--home .hero-spark--5 {
  top: 18%;
  left: 72%;
  animation: heroSpark 5.2s ease-in-out 2.8s infinite;
}

.mbackmart--home .hero-spark--6 {
  bottom: 42%;
  right: 48%;
  animation: heroSpark 4.4s ease-in-out 1.8s infinite;
}

.mbackmart--home .hero-fireworks-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.mbackmart--home .hero-confetti {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.mbackmart--home .hero-confetti__piece {
  position: absolute;
  top: -12px;
  left: var(--cf-x, 50%);
  width: 7px;
  height: 11px;
  border-radius: 1px;
  opacity: 0;
  animation: heroConfettiFall var(--cf-duration, 7s) linear var(--cf-delay, 0s) infinite;
}

.mbackmart--home .hero-confetti__piece--1  { --cf-x: 12%; --cf-delay: 0s;   --cf-duration: 8s;   --cf-drift: 28px;  background: #ffe9a8; }
.mbackmart--home .hero-confetti__piece--2  { --cf-x: 24%; --cf-delay: 1.2s; --cf-duration: 9s;   --cf-drift: -22px; background: #fff; }
.mbackmart--home .hero-confetti__piece--3  { --cf-x: 38%; --cf-delay: 2.4s; --cf-duration: 7.5s; --cf-drift: 18px;  background: #f3c45c; }
.mbackmart--home .hero-confetti__piece--4  { --cf-x: 52%; --cf-delay: 0.8s; --cf-duration: 8.5s; --cf-drift: -30px; background: #ffd666; }
.mbackmart--home .hero-confetti__piece--5  { --cf-x: 64%; --cf-delay: 3s;   --cf-duration: 9.5s; --cf-drift: 24px;  background: #fff; }
.mbackmart--home .hero-confetti__piece--6  { --cf-x: 76%; --cf-delay: 1.6s; --cf-duration: 7s;   --cf-drift: -16px; background: #ffe9a8; }
.mbackmart--home .hero-confetti__piece--7  { --cf-x: 88%; --cf-delay: 4s;   --cf-duration: 10s;  --cf-drift: 20px;  background: #f3c45c; }
.mbackmart--home .hero-confetti__piece--8  { --cf-x: 18%; --cf-delay: 5s;   --cf-duration: 8s;   --cf-drift: -26px; background: #ffc75d; }
.mbackmart--home .hero-confetti__piece--9  { --cf-x: 46%; --cf-delay: 2s;   --cf-duration: 9s;   --cf-drift: 14px;  background: #fff; }
.mbackmart--home .hero-confetti__piece--10 { --cf-x: 82%; --cf-delay: 3.6s; --cf-duration: 8.2s; --cf-drift: -20px; background: #ffe9a8; }

@keyframes heroConfettiFall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.85;
  }
  100% {
    transform: translate3d(var(--cf-drift, 16px), 520px, 0) rotate(540deg);
    opacity: 0;
  }
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.8%, -1.2%); }
}

@keyframes heroShimmer {
  0%, 100% { background-position: 200% 0; opacity: 0; }
  45% { opacity: 1; }
  55% { background-position: -120% 0; opacity: 0.6; }
}

@keyframes heroOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 18px) scale(1.08); }
}

@keyframes heroOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.12); }
}

@keyframes heroOrbDrift3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(14px, 22px); opacity: 0.75; }
}

@keyframes heroSpark {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  45% { opacity: 1; transform: scale(1.2); }
  70% { opacity: 0; transform: scale(0.6) translateY(-12px); }
}

.mbackmart--home .hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.mbackmart--home .hero-bubble {
  position: absolute;
  bottom: -10%;
  left: var(--bubble-x, 50%);
  width: var(--bubble-size, 36px);
  height: var(--bubble-size, 36px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.12) 28%, transparent 52%),
    radial-gradient(circle at 68% 72%, rgba(140, 190, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 55%, transparent 72%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 -3px 8px rgba(255, 255, 255, 0.08),
    inset 2px 2px 6px rgba(255, 255, 255, 0.14),
    0 0 12px rgba(180, 220, 255, 0.08);
  opacity: 0;
  animation: heroBubbleRise var(--bubble-duration, 16s) linear var(--bubble-delay, 0s) infinite;
  will-change: transform, opacity;
}

.mbackmart--home .hero-bubble::before {
  content: '';
  position: absolute;
  top: 16%;
  left: 20%;
  width: 32%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  filter: blur(0.5px);
  transform: rotate(-18deg);
}

.mbackmart--home .hero-bubble::after {
  content: '';
  position: absolute;
  bottom: 18%;
  right: 22%;
  width: 14%;
  height: 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.mbackmart--home .hero-bubble--1  { --bubble-x: 8%;  --bubble-size: 28px; --bubble-duration: 18s; --bubble-delay: 0s;   --bubble-drift: 22px;  --bubble-opacity: 0.55; }
.mbackmart--home .hero-bubble--2  { --bubble-x: 18%; --bubble-size: 44px; --bubble-duration: 22s; --bubble-delay: 2s;   --bubble-drift: -30px; --bubble-opacity: 0.48; }
.mbackmart--home .hero-bubble--3  { --bubble-x: 28%; --bubble-size: 22px; --bubble-duration: 14s; --bubble-delay: 5s;   --bubble-drift: 16px;  --bubble-opacity: 0.62; }
.mbackmart--home .hero-bubble--4  { --bubble-x: 38%; --bubble-size: 54px; --bubble-duration: 26s; --bubble-delay: 1s;   --bubble-drift: 38px;  --bubble-opacity: 0.42; }
.mbackmart--home .hero-bubble--5  { --bubble-x: 48%; --bubble-size: 32px; --bubble-duration: 19s; --bubble-delay: 7s;   --bubble-drift: -20px; --bubble-opacity: 0.58; }
.mbackmart--home .hero-bubble--6  { --bubble-x: 58%; --bubble-size: 26px; --bubble-duration: 15s; --bubble-delay: 3s;   --bubble-drift: 24px;  --bubble-opacity: 0.65; }
.mbackmart--home .hero-bubble--7  { --bubble-x: 68%; --bubble-size: 48px; --bubble-duration: 24s; --bubble-delay: 9s;   --bubble-drift: -34px; --bubble-opacity: 0.45; }
.mbackmart--home .hero-bubble--8  { --bubble-x: 76%; --bubble-size: 36px; --bubble-duration: 20s; --bubble-delay: 4s;   --bubble-drift: 18px;  --bubble-opacity: 0.52; }
.mbackmart--home .hero-bubble--9  { --bubble-x: 84%; --bubble-size: 24px; --bubble-duration: 13s; --bubble-delay: 6s;   --bubble-drift: -14px; --bubble-opacity: 0.68; }
.mbackmart--home .hero-bubble--10 { --bubble-x: 92%; --bubble-size: 40px; --bubble-duration: 21s; --bubble-delay: 8s;   --bubble-drift: 28px;  --bubble-opacity: 0.5; }
.mbackmart--home .hero-bubble--11 { --bubble-x: 14%; --bubble-size: 18px; --bubble-duration: 12s; --bubble-delay: 10s;  --bubble-drift: 12px;  --bubble-opacity: 0.7; }
.mbackmart--home .hero-bubble--12 { --bubble-x: 62%; --bubble-size: 58px; --bubble-duration: 28s; --bubble-delay: 11s;  --bubble-drift: -42px; --bubble-opacity: 0.38; }

@keyframes heroBubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.85);
    opacity: 0;
  }
  8% {
    opacity: var(--bubble-opacity, 0.55);
  }
  55% {
    transform: translate3d(calc(var(--bubble-drift, 16px) * 0.5), -55vh, 0) scale(1);
  }
  88% {
    opacity: calc(var(--bubble-opacity, 0.55) * 0.65);
  }
  100% {
    transform: translate3d(var(--bubble-drift, 16px), -115%, 0) scale(1.06);
    opacity: 0;
  }
}

.mbackmart--home .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(4, 14, 28, 0.78) 0%, rgba(4, 14, 28, 0.42) 38%, rgba(4, 14, 28, 0.12) 62%, transparent 100%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.22) 0%, transparent 45%, rgba(4, 14, 28, 0.08) 100%);
  pointer-events: none;
}

.mbackmart--home .copy {
  position: absolute;
  z-index: 5;
  left: clamp(52px, 7vw, 112px);
  top: 68px;
  color: #fff;
  width: min(520px, 46%);
  transition: transform 0.35s ease-out;
}

.mbackmart--home .copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  line-height: 1.06;
  font-weight: 400;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.mbackmart--home .copy h1 span {
  color: var(--gold);
  display: inline-block;
  background: linear-gradient(90deg, #f3c45c, #ffe9a8, #f3c45c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGoldText 5s linear infinite, heroTitleGlow 3.5s ease-in-out infinite;
}

@keyframes heroGoldText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes heroTitleGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(243, 196, 92, 0)); }
  50% { filter: drop-shadow(0 0 14px rgba(243, 196, 92, 0.35)); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.mbackmart--home .copy p {
  display: inline-flex;
  margin: 22px 0 20px;
  padding: 11px 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f8d579, #ce8e2d);
  color: #13233b;
  font-size: 19px;
  font-weight: 500;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both, heroTagPulse 4s ease-in-out 1.2s infinite;
  box-shadow: 0 8px 20px rgba(206, 142, 45, 0.22);
}

@keyframes heroTagPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(206, 142, 45, 0.22); transform: translateY(0); }
  50% { box-shadow: 0 12px 28px rgba(206, 142, 45, 0.34); transform: translateY(-2px); }
}

.mbackmart--home .mini {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #eaf2fb;
}

.mbackmart--home .mini div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  transition: transform 0.25s ease, color 0.25s ease;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mbackmart--home .mini div:nth-child(1) { animation-delay: 0.36s; }
.mbackmart--home .mini div:nth-child(2) { animation-delay: 0.48s; }
.mbackmart--home .mini div:nth-child(3) { animation-delay: 0.6s; }

.mbackmart--home .mini div:hover {
  transform: translateY(-2px);
  color: #fff;
}

.mbackmart--home .mini i {
  font-size: 26px;
  color: var(--gold);
  transition: transform 0.3s ease;
  animation: heroIconBob 3.2s ease-in-out infinite;
}

.mbackmart--home .mini div:nth-child(1) i { animation-delay: 0s; }
.mbackmart--home .mini div:nth-child(2) i { animation-delay: 0.4s; }
.mbackmart--home .mini div:nth-child(3) i { animation-delay: 0.8s; }

@keyframes heroIconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.mbackmart--home .mini div:hover i {
  transform: scale(1.12) rotate(-6deg);
  animation: none;
}

.mbackmart--home .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  background: linear-gradient(180deg, #ffdc78, #d79a35);
  padding: 13px 32px;
  border-radius: 6px;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both, heroBtnPulse 3s ease-in-out 1.5s infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

@keyframes heroBtnPulse {
  0%, 100% { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24); }
  50% { box-shadow: 0 14px 32px rgba(215, 154, 53, 0.38); }
}

.mbackmart--home .hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.42) 50%, transparent 65%);
  animation: heroBtnGlint 3.8s ease-in-out infinite;
}

@keyframes heroBtnGlint {
  0%, 72%, 100% { transform: translateX(-120%) skewX(-18deg); }
  82% { transform: translateX(220%) skewX(-18deg); }
}

.mbackmart--home .hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.mbackmart--home .hero-btn i {
  transition: transform 0.22s ease;
}

.mbackmart--home .hero-btn:hover i {
  transform: translateX(4px);
}

.mbackmart--home .visual {
  position: absolute;
  z-index: 4;
  right: clamp(10px, 2.5vw, 40px);
  bottom: 0;
  top: 0;
  width: min(640px, 56%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  transition: transform 0.4s ease-out;
}

.mbackmart--home .visual-glow {
  position: absolute;
  bottom: 12%;
  right: 18%;
  width: 55%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 196, 92, 0.28) 0%, transparent 68%);
  filter: blur(18px);
  animation: heroGlowPulse 5s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.mbackmart--home .visual-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: heroFloat 5.5s ease-in-out infinite;
  transition: transform 0.4s ease-out;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.mbackmart--home .hero-showcase-img {
  width: 100%;
  max-height: 460px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
  animation: heroImgBreath 6s ease-in-out infinite;
}

@keyframes heroImgBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.mbackmart--home .arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.82;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both, heroArrowNudge 4s ease-in-out 2s infinite;
  transition: background 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.mbackmart--home .arrow:hover {
  background: rgba(243, 196, 92, 0.22);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  animation: none;
}

@keyframes heroArrowNudge {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 0.95; }
}

.mbackmart--home .arrow.left { left: 18px; }
.mbackmart--home .arrow.right { right: 18px; }

.mbackmart--home .dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.mbackmart--home .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #8794a4;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  cursor: pointer;
}

.mbackmart--home .dot:not(.active):hover {
  background: #a8b4c2;
  transform: scale(1.15);
}

.mbackmart--home .dot.active {
  background: var(--gold);
  animation: dotPulse 2.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 196, 92, 0.45); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(243, 196, 92, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .mbackmart--home .hero-bg,
  .mbackmart--home .hero-shimmer,
  .mbackmart--home .hero-orb,
  .mbackmart--home .hero-spark,
  .mbackmart--home .hero-bubble,
  .mbackmart--home .hero-confetti__piece,
  .mbackmart--home .hero-fireworks-canvas,
  .mbackmart--home .visual-glow,
  .mbackmart--home .copy h1,
  .mbackmart--home .copy h1 span,
  .mbackmart--home .copy p,
  .mbackmart--home .mini div,
  .mbackmart--home .mini i,
  .mbackmart--home .hero-btn,
  .mbackmart--home .visual,
  .mbackmart--home .visual-inner,
  .mbackmart--home .hero-showcase-img,
  .mbackmart--home .arrow,
  .mbackmart--home .dots,
  .mbackmart--home .dot.active {
    animation: none !important;
  }

  .mbackmart--home .hero-fireworks-canvas {
    display: none;
  }

  .mbackmart--home .copy h1,
  .mbackmart--home .copy p,
  .mbackmart--home .mini div,
  .mbackmart--home .hero-btn,
  .mbackmart--home .visual,
  .mbackmart--home .arrow,
  .mbackmart--home .dots {
    opacity: 1;
    transform: none;
  }

  .mbackmart--home .copy h1 span {
    -webkit-text-fill-color: var(--gold);
    background: none;
  }
}

.mbackmart--home .quick {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: 20px 0 18px;
}

.mbackmart--home .quick a {
  height: 100px;
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(8, 26, 48, 0.06);
  font-size: 13px;
}

.mbackmart--home .quick i {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f5cc68, #c78a2b);
  color: #fff;
  font-size: 22px;
}

.mbackmart--home .consignment-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 18px 0;
  padding: 22px 26px;
  overflow: hidden;
  border: none;
  border-radius: 14px;
  background: #000b1e url('../bento-member-hero.png') 58% center/cover no-repeat;
  box-shadow: 0 12px 32px rgba(7, 26, 49, 0.18);
}

.mbackmart--home .consignment-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 8, 22, 0.68) 0%, rgba(0, 8, 22, 0.42) 54%, rgba(0, 8, 22, 0.12) 100%);
  pointer-events: none;
}

.mbackmart--home .consignment-cta > * {
  position: relative;
  z-index: 1;
}

.mbackmart--home .consignment-cta__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #ffe9a8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.mbackmart--home .consignment-cta h2 {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.25;
}

.mbackmart--home .consignment-cta p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.mbackmart--home .consignment-cta__button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  color: #1a1204;
  background: linear-gradient(180deg, #ffdc78, #d79a35);
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.mbackmart--home .consignment-cta__button:hover {
  color: #1a1204;
  background: linear-gradient(180deg, #ffe8a6, #e6ac46);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .mbackmart--home .consignment-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .mbackmart--home .consignment-cta h2 {
    font-size: 19px;
  }

  .mbackmart--home .consignment-cta p {
    font-size: 13px;
  }

  .mbackmart--home .consignment-cta__button {
    width: 100%;
  }
}

.mbackmart--home .section {
  margin: 18px 0;
}

.mbackmart--home .headrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mbackmart--home .title {
  font-size: 22px;
  font-weight: 500;
  color: #071424;
}

.mbackmart--home .see {
  font-size: 13px;
  color: #667085;
}

.mbackmart--home .flash {
  background: linear-gradient(180deg, #071f3d, #06182f);
  border: 1px solid #12355c;
  border-radius: 7px;
  padding: 17px 28px 20px;
  position: relative;
}

.mbackmart--home .flash .title {
  color: #ffc75d;
  font-style: italic;
  font-weight: 600;
}

.mbackmart--home .timer {
  display: inline-flex;
  gap: 5px;
  margin-left: 12px;
  vertical-align: middle;
  font-style: normal;
}

.mbackmart--home .timer b {
  background: #071424;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  min-width: 34px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.mbackmart--home .flash .see {
  color: #fff;
}

.mbackmart--home .slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #081524;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.mbackmart--home .slide.left { left: -15px; }
.mbackmart--home .slide.right { right: -15px; }

.mbackmart--home .products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.mbackmart--home .card {
  background: #fff;
  border: 1px solid #e7edf4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(7, 26, 49, 0.1);
}

.mbackmart--home .thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.mbackmart--home .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mbackmart--home .sale {
  position: absolute;
  left: 9px;
  top: 9px;
  background: var(--red);
  color: #fff;
  border-radius: 3px;
  padding: 4px 7px;
  font: 500 13px/1 'Kanit', sans-serif;
}

.mbackmart--home .rank {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 28px;
  height: 32px;
  background: linear-gradient(180deg, #f7c860, #d18f2a);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
  color: #fff;
  font: 500 13px/25px 'Kanit', sans-serif;
  text-align: center;
}

.mbackmart--home .card .body {
  padding: 0 12px 13px;
}

.mbackmart--home .name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mbackmart--home .price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 9px;
}

.mbackmart--home .price b {
  font: 600 19px/1 'Kanit', sans-serif;
  color: #dc2f24;
}

.mbackmart--home .price span {
  font-size: 12px;
  color: #98a2b3;
  text-decoration: line-through;
}

.mbackmart--home .bar {
  height: 7px;
  border-radius: 999px;
  background: #e8edf4;
  margin: 13px 0 8px;
  overflow: hidden;
}

.mbackmart--home .bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c9821e, #ffd978);
}

.mbackmart--home .sold {
  text-align: center;
  font-size: 11px;
  color: #475467;
}

.mbackmart--home .stars {
  margin-top: 8px;
  font-size: 12px;
  color: #f2a61d;
}

.mbackmart--home .stars span {
  color: #667085;
}

.mbackmart--home .add {
  height: 31px;
  margin: 10px 0 0;
  background: #061b34;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mbackmart--home .banners {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin: 16px 0 18px;
}

.mbackmart--home .banner {
  min-height: 164px;
  border-radius: 7px;
  overflow: hidden;
  background: linear-gradient(120deg, #071f3d, #0b2c50);
  color: #fff;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mbackmart--home .banner--shipping {
  background: url('../banner-free-shipping.png') center/cover no-repeat;
  color: #061b34;
  min-height: 180px;
  padding: 22px 24px 22px 30px;
  align-items: stretch;
  justify-content: flex-start;
}

.mbackmart--home .banner-ship-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: min(100%, 58%);
  gap: 4px;
}

.mbackmart--home .banner-ship-copy .ship-sub {
  font: 600 clamp(1.15rem, 1.9vw, 1.42rem)/1.2 'Kanit', sans-serif;
  color: #0d2847;
}

.mbackmart--home .banner-ship-copy .ship-sub + .ship-sub {
  margin-top: 2px;
  font-weight: 500;
  color: #1a3558;
}

.mbackmart--home .banner--coupon {
  background: url('../banner-coupon.png') center/cover no-repeat;
  padding: 28px 32px;
  align-items: flex-start;
  justify-content: flex-start;
}

.mbackmart--home .banner--coupon h3 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mbackmart--home .banner--coupon .btn {
  margin-top: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.mbackmart--home .banner--returns {
  background: url('../banner-returns.png') center/cover no-repeat;
  padding: 28px 32px;
  align-items: flex-start;
  justify-content: flex-start;
}

.mbackmart--home .banner--returns h3 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mbackmart--home .banner-ship-copy .ship-main {
  font: 700 clamp(2.1rem, 3.4vw, 2.85rem)/1 'Kanit', sans-serif;
  color: #061b34;
}

.mbackmart--home .banner h3 {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 500;
}

.mbackmart--home .banner h3 strong {
  font-size: 38px;
  color: #ffd978;
}

.mbackmart--home .banner .btn {
  display: inline-flex;
  margin-top: 13px;
  padding: 8px 16px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffdc78, #d79a35);
  color: #111827;
  font-size: 13px;
}

.mbackmart--home .panel {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 7px;
  padding: 15px;
  box-shadow: 0 10px 24px rgba(8, 24, 45, 0.05);
}

.mbackmart--home .home-plara {
  margin: 18px 0;
}

.mbackmart--home .home-plara-empty {
  text-align: center;
  padding: 28px 16px;
  font-size: 14px;
  color: #667085;
}

.mbackmart--home .home-plara-empty a {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffdc78, #d79a35);
  color: #111827;
  font-size: 13px;
}

.mbackmart--home .home-plara-grid .card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mbackmart--home .home-plara-gallery {
  position: relative;
}

.mbackmart--home .six.home-plara-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, calc((100% - 65px) / 6));
  gap: 13px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 2px 0 10px;
}

.mbackmart--home .home-plara-grid::-webkit-scrollbar {
  display: none;
}

.mbackmart--home .home-plara-grid .card {
  scroll-snap-align: start;
}

.mbackmart--home .home-plara-arrow {
  position: absolute;
  z-index: 4;
  top: 42%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 31, 58, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0a2441;
  box-shadow: 0 5px 18px rgba(7, 24, 46, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.mbackmart--home .home-plara-arrow--prev {
  left: -10px;
}

.mbackmart--home .home-plara-arrow--next {
  right: -10px;
}

@media (max-width: 900px) {
  .mbackmart--home .six.home-plara-grid {
    grid-auto-columns: minmax(170px, 34vw);
  }
}

@media (max-width: 600px) {
  .mbackmart--home .six.home-plara-grid {
    grid-auto-columns: minmax(150px, 72vw);
  }

  .mbackmart--home .home-plara-arrow {
    display: none;
  }
}

.mbackmart--home .six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}

.mbackmart--home .home-all-products {
  margin: 18px 0;
}

.mbackmart--home .home-all-cat {
  margin-top: 8px;
  font-size: 11px;
  color: #667085;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbackmart--home .home-all-empty {
  text-align: center;
  padding: 28px 16px;
  font-size: 14px;
  color: #667085;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mbackmart--home .home-all-empty a {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffdc78, #d79a35);
  color: #111827;
  font-size: 13px;
}

.mbackmart--home .home-all-grid .card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mbackmart--home .home-all-grid {
  gap: 10px;
}

.mbackmart--home .home-all-grid .card.home-product-card {
  border-radius: 5px;
  box-shadow: 0 4px 14px rgba(7, 26, 49, 0.07);
}

.mbackmart--home .home-all-grid .home-product-card .thumb {
  padding: 10px;
}

.mbackmart--home .home-all-grid .home-product-card .sale {
  left: 6px;
  top: 6px;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 3px;
}

.mbackmart--home .home-all-grid .home-product-card .body {
  padding: 0 9px 9px;
}

.mbackmart--home .home-all-grid .home-product-card .name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  height: 40px;
  margin-top: 1px;
}

.mbackmart--home .home-all-grid .home-product-card .price {
  margin-top: 5px;
  gap: 5px;
}

.mbackmart--home .home-all-grid .home-product-card .price b {
  font-size: 17px;
  font-weight: 600;
}

.mbackmart--home .home-all-grid .home-product-card .price span {
  font-size: 12px;
}

.mbackmart--home .home-all-grid .home-all-cat {
  margin-top: 4px;
  font-size: 10px;
}

.mbackmart--home .home-product-card {
  display: flex;
  flex-direction: column;
}

.mbackmart--home .home-product-card__media {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.mbackmart--home .home-product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 20, 36, 0.62) 100%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mbackmart--home .home-product-card__media img {
  transition: transform 0.34s cubic-bezier(0.2, 0.75, 0.25, 1);
}

@media (hover: hover) and (pointer: fine) {
  .mbackmart--home .home-product-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }

  .mbackmart--home .home-product-card:hover,
  .mbackmart--home .home-product-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(216, 154, 53, .55);
    box-shadow: 0 14px 30px rgba(7, 26, 49, .16);
  }

  .mbackmart--home .home-product-card__media:hover::after,
  .mbackmart--home .home-product-card__media:focus-visible::after {
    opacity: 1;
  }

  .mbackmart--home .home-product-card__media:hover img,
  .mbackmart--home .home-product-card__media:focus-visible img {
    transform: scale(1.065);
  }

}

@media (prefers-reduced-motion: reduce) {
  .mbackmart--home .home-product-card__media img,
  .mbackmart--home .home-product-card__media::after,
  .mbackmart--home .home-product-card {
    transition: none;
  }
}

.mbackmart--home .home-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 0;
}

.mbackmart--home .home-product-card__info {
  display: block;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.mbackmart--home .home-all-grid .home-product-card .mb-card-wish {
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  font-size: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.mbackmart--home .home-product-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 8px 0 0;
  padding-top: 2px;
}

.mbackmart--home .home-product-btn {
  margin: 0;
  border: 0;
  font-family: 'Kanit', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.mbackmart--home .home-product-btn:active {
  transform: scale(0.98);
}

.mbackmart--home .home-product-btn--cart {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--navy, #0f2744);
  border: 1px solid #dbe3ec;
  box-shadow: 0 1px 4px rgba(15, 39, 68, 0.06);
  font-size: 12px;
}

.mbackmart--home .home-product-btn--cart:hover {
  background: #f8fafc;
  border-color: #b8c5d4;
}

.mbackmart--home .home-product-btn--buy {
  flex: 1 1 auto;
  min-width: 0;
  height: 30px;
  padding: 0 10px;
  gap: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffdc78, #dca03a);
  color: #071424;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(180, 120, 20, 0.25);
}

.mbackmart--home .home-product-btn--buy span {
  line-height: 1;
}

.mbackmart--home .home-product-btn--buy i {
  font-size: 9px;
  opacity: 0.8;
}

.mbackmart--home .home-product-btn--buy:hover {
  filter: brightness(1.03);
  box-shadow: 0 2px 6px rgba(216, 148, 42, 0.2);
}

.mbackmart--home .home-all-grid .home-product-cart.mb-card-cart {
  margin: 8px 0 0;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  font-size: 11px;
  gap: 6px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: 'Kanit', sans-serif;
  cursor: pointer;
  background: var(--navy, #0f2744);
  color: #fff;
  border: 0;
}

.mbackmart--home .home-reviews-compact {
  margin: 18px 0 8px;
}

.mbackmart--home .hr-strip-outer {
  position: relative;
}

.mbackmart--home .hr-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 6px;
  -webkit-overflow-scrolling: touch;
}

.mbackmart--home .hr-strip::-webkit-scrollbar {
  display: none;
}

.mbackmart--home .hr-strip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #071424;
  box-shadow: 0 4px 14px rgba(7, 26, 49, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.mbackmart--home .hr-strip-btn--prev { left: -6px; }
.mbackmart--home .hr-strip-btn--next { right: -6px; }
.mbackmart--home .hr-strip-btn:hover { background: #f8fafc; }

.mbackmart--home .hr-quote-card {
  flex: 0 0 252px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px 14px 12px;
  box-shadow: 0 6px 16px rgba(7, 26, 49, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 168px;
}

.mbackmart--home .hr-quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(7, 26, 49, 0.11);
}

.mbackmart--home .hr-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f2a61d;
  font-size: 12px;
  line-height: 1;
}

.mbackmart--home .hr-star-off { opacity: 0.22; }

.mbackmart--home .hr-rating-num {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #071424;
}

.mbackmart--home .hr-review-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mbackmart--home .hr-review-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #eef2f6;
  padding-top: 10px;
  margin-top: auto;
}

.mbackmart--home .hr-review-meta img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  background: #e8eef4;
  flex-shrink: 0;
}

.mbackmart--home .hr-review-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mbackmart--home .hr-author {
  font-size: 12px;
  font-weight: 500;
  color: #071424;
}

.mbackmart--home .hr-product {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1050px) {
  .mbackmart--home .hero-band > .wrap {
    padding: 0;
  }

  .mbackmart--home .hero-grid {
    grid-template-columns: 1fr;
  }

  .mbackmart--home .side {
    display: none;
  }

  .mbackmart--home .copy {
    left: 40px;
    width: 44%;
  }

  .mbackmart--home .visual {
    right: 6px;
    width: 52%;
    max-width: 480px;
  }

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

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

  .mbackmart--home .six {
    grid-template-columns: repeat(3, 1fr);
  }

  .mbackmart--home .banners {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mbackmart--home .hero {
    min-height: 600px;
  }

  .mbackmart--home .hero::before {
    background: linear-gradient(180deg, rgba(4, 14, 28, 0.82) 0%, rgba(4, 14, 28, 0.55) 45%, rgba(4, 14, 28, 0.35) 100%),
      linear-gradient(90deg, rgba(4, 14, 28, 0.78) 0%, rgba(4, 14, 28, 0.42) 38%, rgba(4, 14, 28, 0.12) 62%, transparent 100%);
  }

  .mbackmart--home .hero-bg {
    background-position: center;
  }

  .mbackmart--home .copy {
    left: 18px;
    right: 18px;
    top: 34px;
    width: auto;
    max-width: 380px;
  }

  .mbackmart--home .copy h1 {
    font-size: 2.85rem;
  }

  .mbackmart--home .copy p {
    font-size: 16px;
    padding: 10px 16px;
  }

  .mbackmart--home .mini div {
    font-size: 14px;
  }

  .mbackmart--home .mini i {
    font-size: 24px;
  }

  .mbackmart--home .hero-btn {
    font-size: 15px;
    padding: 12px 28px;
  }

  .mbackmart--home .visual {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 6px;
    width: min(420px, calc(100% - 20px));
    height: auto;
    transform: translateX(-50%);
    align-items: flex-end;
  }

  .mbackmart--home .hero-showcase-img {
    max-height: 300px;
  }

  .mbackmart--home .arrow {
    display: none;
  }

  .mbackmart--home .quick {
    grid-template-columns: repeat(2, 1fr);
  }

  .mbackmart--home .products,
  .mbackmart--home .six {
    grid-template-columns: repeat(2, 1fr);
  }

  .mbackmart--home .flash {
    padding: 13px 10px;
  }

  .mbackmart--home .slide {
    display: none;
  }

  .mbackmart--home .hr-strip-btn {
    display: none;
  }

  .mbackmart--home .hr-quote-card {
    flex-basis: 236px;
    min-height: 160px;
  }
}

@media (min-width: 1400px) {
  .mbackmart--home .products {
    grid-template-columns: repeat(6, 1fr);
  }

  .mbackmart--home .six,
  .mbackmart--home .home-all-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (min-width: 1680px) {
  .mbackmart--home .products {
    grid-template-columns: repeat(7, 1fr);
  }

  .mbackmart--home .six,
  .mbackmart--home .home-all-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* All products: keep a consistent six-card row on desktop. */
@media (min-width: 1051px) {
  .mbackmart--home .home-all-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
