:root {
  --bg: #f1e3c9;
  --text: #1c1c1c;
  --muted: #6f6a63;
  --brand: #f08a4b;
  --brand-2: #c7ff4b;
  --accent: var(--brand);
  --price: #111;
  --strike: #b6aea4;
  --chip: #f6d7bf;
  --chip-text: #1c1c1c;
  --radius: 16px;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Montserrat;
  color: var(--text);
  background: #fff;
  background-attachment: fixed;
  line-height: 1.5;
}

#nav {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

#nav::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.06) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.nav-center img {
  height: 80px;
  display: block;
  margin: 0 auto;
  transition: filter 0.3s ease;
}
.nav-center img.invert {
  filter: invert(1);
}
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 7vh;
  z-index: 3000;
  font-family: "Montserrat";
  background: white;
  padding: 0 20px;
  color: #000;
}
.nav-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 600;
}
.nav-left {
  left: 20px;
}
.nav-right {
  right: 20px;
}
.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 26px;
}

.container_heist {
  margin: 0 5%;
  padding: 45px 24px 45px;
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 0.6fr;
  gap: 20px;
  align-items: start;
}

.title {
  font-size: 45px;
  line-height: 1.12;
  margin: 8px 0 18px;
}
.lead {
  color: var(--muted);
  max-width: 44ch;
  font-size: 20px;
}
.btn-info {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 999px;
  background: #e7ffaf;
  color: var(--chip-text);
  border: 2px solid #bee959;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 20px;
}
.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scale: 0.9;
}
.stage img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.thumbs {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb:hover {
  transform: translateY(-2px);
}
.thumb.active {
  border-color: var(--accent);
}
.thumb.more {
  font-weight: 700;
  font-size: 18px;
  color: #111;
  background: #fff;
}

.stack {
  display: grid;
  gap: 70px;
}
.label {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 19px;
  margin-bottom: 10px;
}
.swatches {
  display: flex;
  gap: 14px;
  align-items: center;
}
.swatch {
  --size: 34px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 3px solid #fff;
  outline: 2px solid transparent;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: outline-color 0.2s ease, transform 0.15s ease;
}
.swatch:hover {
  transform: translateY(-1px);
}
.swatch.active {
  outline-color: #000;
}
.swatch:focus-visible {
  outline-color: #000;
}
.qty {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: var(--shadow);
  min-width: 112px;
  justify-content: space-between;
}
.stepper button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #e7ffaf;
  font-size: 22px;
  line-height: 0;
  display: grid;
  place-items: center;
  color: #3a2c27;
  transition: transform 0.1s ease, filter 0.2s ease;
}
.stepper button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.stepper output {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
}

.price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price .now {
  font-size: 28px;
  font-weight: 800;
  color: var(--price);
}
.price .mrp {
  color: var(--strike);
  text-decoration: line-through;
  font-weight: 700;
}
.price .tax {
  color: #000;
  opacity: 0.75;
  font-size: 13px;
}
.btn-primary {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #d1ff66;
  color: #000;
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 270px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
.btn-primary:active {
  transform: translateY(0);
}
.buybar {
  display: none;
}
.left-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.right-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
aside.stack {
  width: 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-banner {
  position: relative;
}

.story-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.story-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.story-banner .story-content {
  position: absolute;
  top: 50%;
  left: 6.5%;
  transform: translateY(-50%);
  max-width: 62ch;
  color: #000000;
  z-index: 2;
}

.story-banner .story-content h2 {
  margin: 0 0 12px;
  font: 800 47px/1.1 Montserrat, sans-serif;
  color: #000000;
}
.story-banner .story-content p {
  margin: 20px 0;
  font-size: 22px;
  color: #000000;
  font-weight: 500;
}

.strong {
  font-size: 26px;
  font-weight: 800;
}

.video-shell {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #dcdcdc;
  /* border-radius: 14px; */
  overflow: hidden;
  height: 100%;
}
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.video-play .play-glyph {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  position: relative;
}
.video-play .play-glyph::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 26px;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #000;
}
.video-play.is-hidden {
  display: none;
}

.grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-wrap figure {
  margin: 0;
}
.grid-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container_heist {
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 0.6fr;
  gap: 20px;
  align-items: start;
  grid-template-areas: "left middle right";
}

.left-content {
  grid-area: left;
}
.middle-content {
  grid-area: middle;
}
.right-content {
  grid-area: right;
}

.menu-toggle p#menu-close {
  opacity: 0;
  transform: translateX(-5px) translateY(10px) rotate(5deg);
  color: black;
  font-weight: 600;
}

.menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  background-color: #ffc002;
  z-index: 2000;
}

video#productVideo {
  width: 100%;
}

.limited-marquee {
  --bg: #ec0f0f; /* exact red (236,15,15) */
  --gap: 40px;
  --size: 0.8rem;
  --speed: 90; /* px per second; JS converts to duration */
  background: var(--bg);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
  font: 600 var(--size) / 1 Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.limited-marquee .marquee-inner {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: marquee-slide var(--marquee-duration, 20s) linear infinite;
}

.limited-marquee .marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.limited-marquee .marquee-item {
  display: inline-flex;
  align-items: center;
}

.limited-marquee .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin: 0 28px;
}

.limited-marquee .marquee-track {
  gap: 0;
}
.limited-marquee .marquee-item {
  gap: 0;
}

@keyframes marquee-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.dummy-div{
  display: none;
}
/* Mobile tweaks */
@media (max-width: 640px) {
  .limited-marquee {
    --gap: 18px;
    --size: 12px;
    padding: 10px 0;
  }
  .limited-marquee .marquee-item {
    gap: 0px;
  }
  .limited-marquee .dot {
    width: 5px;
    height: 5px;
    margin: 0 18px;
  }
}

@media (min-width: 1101px) {
  .accordion {
    display: none;
  }

  body.modal-open {
    overflow: hidden;
  }
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(118, 50, 17, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .modal-overlay.show {
    display: flex;
  }
  .modal-card {
    width: min(650px, 88vw);
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px 40px;
    border: 3px solid var(--brand);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
  }
  .modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    background: #fff;
    color: #000;
    cursor: pointer;
    font-weight: 800;
  }
  .modal-title {
    font-weight: 700;
    font-size: 18px;
    margin: 2px 6px 12px;
  }

  .modal-acc .acc-item {
    width: 100%;
    border: none;
    background: transparent;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 600 18px/1.2 Montserrat, sans-serif;
    cursor: pointer;
    color: var(--text);
  }
  .modal-acc .acc-item .chev {
    color: var(--brand);
    font-weight: 700;
    transition: transform 0.2s ease;
  }
  .modal-acc .acc-item.active .chev {
    transform: rotate(180deg);
  }
  .modal-acc .acc-panel {
    display: none;
    padding: 8px 8px 18px;
    color: var(--muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 16px;
  }

  #productModel {
    width: 100%;
    height: 840px;
    display: block;
  }
}

@media (max-width: 1100px) {
  body {
    padding-bottom: 96px;
  }

  .dummy-div{
  display: block;
}

  .container_heist {
    margin: 0;
    padding: 20px 20px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stage {
    order: -1;
    width: 100%;
    height: 100%;
    scale: 1;
  }
  .stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .thumbs {
    margin-top: 18px;
    gap: 12px;
  }
  .thumb {
    width: 82px;
    height: 82px;
    border-radius: 10px;
  }
  .title {
    font-size: 36px;
    margin-top: 8px;
  }
  .lead {
    font-size: 17px;
    color: var(--text);
    opacity: 0.9;
  }

  .stack {
    display: block;
  }
  .stack > div:nth-child(1),
  .stack > div:nth-child(2) {
    display: inline-block;
    vertical-align: top;
  }
  .stack > div:nth-child(1) {
    width: calc(100% - 150px);
  }
  .stack > div:nth-child(2) {
    text-align: right;
    position: absolute;
    right: 5%;
  }
  .label {
    font-size: 14px;
  }
  .swatch {
    --size: 38px;
  }
  .qty .stepper {
    min-width: 128px;
  }
  .stepper button {
    background: var(--brand);
    color: #fff;
  }

  .accordion {
    margin-top: 18px;
  }
  .acc-item {
    width: 100%;
    border: none;
    background: transparent;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 600 18px/1.2 Montserrat;
    cursor: pointer;
    color: var(--text);
  }
  .acc-item .chev {
    color: #000;
    font-weight: 700;
    transition: transform 0.2s ease;
  }
  .acc-item.active .chev {
    transform: rotate(180deg);
  }
  .acc-panel {
    display: none;
    padding: 8px 8px 18px;
    color: var(--muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 16px;
  }

  .price,
  .btn-primary {
    display: none;
  }
  .buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 18px;
    align-items: center;
    padding: 10px 16px;
    background: #d1ff66;
    color: #fff;
    z-index: 999;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.12);
    font-family: "Montserrat";
  }
  .buybar .now {
    font-size: 23px;
    font-weight: 800;
  }
  .buybar .mrp {
    text-decoration: line-through;
    opacity: 0.85;
    font-size: 12px;
  }
  .buybar .tax {
    font-size: 10px;
    opacity: 0.9;
  }
  .buybar-btn {
    height: 56px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    background: #fff !important;
    color: #000 !important;
    cursor: pointer;
    box-shadow: var(--shadow);
    font-family: "Montserrat";
  }
  .story-wrap {
    grid-template-columns: 1fr;
  }
  .container_heist {
    grid-template-columns: 1fr;
    grid-template-areas:
      "middle"
      "left"
      "right";
  }

  .left-content .left-box {
    display: flex;
    flex-direction: column;
  }
  .left-content .left-box .thumbs {
    order: 1;
    margin-top: 0;
    margin-bottom: 12px;
  }
  .left-content .left-box .title {
    order: 2;
  }
  .left-content .left-box .lead {
    order: 3;
  }

  .left-content .left-box .btn-info {
    order: 4;
    align-self: flex-start;
  }
  .lead {
    font-size: 16px;
    margin-top: 12px;
  }

  .container_heist > section:nth-child(2) {
    order: 1;
  }
  .container_heist > section:first-child {
    order: 2;
  }
  .container_heist > aside {
    order: 3;
  }

  .container_heist > section:first-child {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .container_heist > section:first-child .btn-info {
    order: 4;
    align-self: flex-start;
  }
  .stack {
    margin-bottom: 0px;
  }
  .modal-overlay {
    display: none;
  }
  .price-div {
    display: none;
  }
  a#openInfo {
    display: none;
  }
  .title {
    font-size: 48px;
    line-height: 1.12;
    margin: 15px 0 0px;
  }

  #productModel {
    width: 100%;
    height: 450px;
    display: block;
  }
  .story-banner .story-content h2 {
    margin: 0 0 12px;
    font: 800 26px / 1.1 Montserrat, sans-serif;
    color: #000000;
  }

  .story-banner .story-content {
    position: absolute;
    top: 50%;
    left: 6.5%;
    transform: translateY(-50%);
    max-width: 40ch;
    color: #000000;
    z-index: 2;
  }
  .story-banner .story-content p {
    margin: 20px 0;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
  }
}

@media (max-width: 640px) {
  .thumb {
    width: 55px;
    height: 55px;
  }
  .title {
    font-size: 28px;
  }
  .lead {
    font-size: 16px;
  }
  .buybar {
    grid-template-columns: 1fr 160px;
  }
  .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-banner .story-content {
    top: clamp(25px, 7vw, 120px);
    left: 5%;
    right: 5%;
    transform: none;
    max-width: none;
    text-align: center;
    padding: 20px;
    margin: 7px 0;
  }
  .story-banner .story-content p {
    margin: 10px 0;
    font-size: 22px;
    color: #000000;
    font-weight: 500;
  }
  .story-banner .story-content h2 {
    font-size: 25px;
  }
  .story-banner .story-content p {
    font-size: 13px;
  }
  .mob-hide3 {
    display: none;
  }
}
