/* ============================================================
   Burger Co. — OrderArt Theme v30 (bun-2)
   Base: Theme 27 (smartsbee) · Social: Duffs stories
   Titan One + Montserrat
   ============================================================ */

:root {
  --b-dark:      #181818;
  --b-card:      #222222;
  --b-card2:     #303030;
  --b-lime:      #d7ff00;
  --b-lime-soft: rgba(215,255,0,0.12);
  --b-secondary: #9b80d7;
  --b-yellow:    #FFD100;
  --b-white:     #ffffff;
  --b-gray:      #999;
  --b-font:      'Titan One', cursive;
  --b-body:      'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--b-dark); color: var(--b-white); font-family: var(--b-body); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────────────── */
.b-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 18px 0; background: rgba(24,24,24,0.88); backdrop-filter: blur(18px); border-bottom: 1px solid var(--b-lime-soft); transition: box-shadow .3s; }
.b-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.7); }
.b-nav-inner { max-width: 1390px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.b-logo { font-family: var(--b-font); font-size: 22px; letter-spacing: .5px; text-transform: uppercase; color: var(--b-white); display: inline-flex; align-items: center; gap: 10px; transition: color .2s; }
.b-logo:hover { color: var(--b-lime); }
.b-logo img { height: 50px; width: auto; }
.b-brand-icon { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(180deg, var(--b-lime) 0%, #8aa900 100%); box-shadow: 0 0 20px rgba(215,255,0,.35); position: relative; }
.b-brand-icon::before, .b-brand-icon::after { content: ''; position: absolute; left: 5px; right: 5px; height: 2px; background: var(--b-dark); border-radius: 8px; }
.b-brand-icon::before { top: 9px; }
.b-brand-icon::after { bottom: 9px; }
.b-nav-links { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; align-items: center; }
.b-nav-links a { font-size: 14px; font-weight: 800; letter-spacing: 1px; color: var(--b-white); padding: 8px 0; position: relative; transition: color .2s; }
.b-nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--b-lime); transition: width 280ms ease; }
.b-nav-links a:hover { color: var(--b-lime); }
.b-nav-links a:hover::after { width: 100%; }
.b-nav-links a.b-nav-btn, .b-nav-links a.b-nav-btn:hover { color: #181818; }
.b-nav-btn { font-family: var(--b-body); font-size: 13px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 13px 24px; background: var(--b-lime); color: var(--b-dark); border: 2px solid var(--b-lime); border-radius: 4px; box-shadow: 0 12px 26px rgba(215,255,0,.22); transition: background .2s; }
.b-nav-btn:hover { background: #eeff62; border-color: #eeff62; color: var(--b-dark); }

/* ── NAV: cart / auth / mobile sidebar (functional additions) ──────────── */
.b-nav-actions { display: flex; align-items: center; gap: 16px; }
.b-cart-link { position: relative; display: inline-flex; color: var(--b-white); transition: color .2s; }
.b-cart-link:hover { color: var(--b-lime); }
.b-cart-count { position: absolute; top: -8px; right: -10px; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 8px; background: var(--b-lime); color: var(--b-dark); font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.b-auth-link { font-size: 13px; font-weight: 700; color: var(--b-white); }
.b-auth-link:hover { color: var(--b-lime); }
.b-auth-sep { color: rgba(255,255,255,.3); }
.b-user-menu { position: relative; }
.b-user-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; color: var(--b-white); font-family: var(--b-body); font-size: 13px; font-weight: 700; cursor: pointer; }
.b-user-drop { position: absolute; top: calc(100% + 12px); right: 0; min-width: 200px; background: var(--b-card); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 8px; display: none; flex-direction: column; box-shadow: 0 20px 50px rgba(0,0,0,.4); z-index: 50; }
.b-user-drop.open { display: flex; }
.b-user-drop a { padding: 8px 10px; font-size: 13px; color: rgba(255,255,255,.75); border-radius: 6px; }
.b-user-drop a:hover { background: rgba(255,255,255,.06); color: var(--b-white); }
.b-toggler { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 6px; cursor: pointer; }
.b-toggler span { width: 22px; height: 2px; background: var(--b-white); border-radius: 2px; }
.b-nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 210; }
.b-nav-backdrop.open { opacity: 1; pointer-events: auto; }
.b-nav-sidebar { position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background: var(--b-card); padding: 28px 22px; transition: right .3s ease; z-index: 220; display: flex; flex-direction: column; gap: 18px; }
.b-nav-sidebar.open { right: 0; }
.b-nav-sidebar-close { align-self: flex-end; background: none; border: none; color: var(--b-white); font-size: 26px; cursor: pointer; }
.b-nav-sidebar-logo img { height: 26px; margin-bottom: 10px; }
.b-nav-sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.b-nav-sidebar-nav a { padding: 10px 4px; font-size: 14px; font-weight: 700; color: var(--b-white); border-bottom: 1px solid rgba(255,255,255,.06); }
.b-nav-sidebar-nav a.active, .b-nav-links a.active { color: var(--b-lime); }

/* ── HERO ────────────────────────────────────────────────── */
.b-hero { min-height: 100vh; padding: 120px 0 54px; position: relative; isolation: isolate; overflow: hidden; background: var(--b-dark); }
.b-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; z-index: -4; opacity: 0.48; filter: saturate(0.92) contrast(1.12) brightness(0.68); }
.b-hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -2; background: radial-gradient(circle at 50% 42%, rgba(215,255,0,.14), transparent 34%), linear-gradient(180deg, rgba(10,10,10,.62), rgba(10,10,10,.28) 42%, rgba(10,10,10,.92)); }
.b-hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.b-hero-content { width: 100%; max-width: 1060px; margin: 0 auto; text-align: center; animation: bFadeUp 800ms ease both; }
.b-hero-h1 { font-family: var(--b-font); font-weight: 400; line-height: .98; text-transform: uppercase; margin: 0 auto 32px; max-width: 980px; overflow-wrap: break-word; text-shadow: 0 6px 0 #070707, 0 9px 0 rgba(0,0,0,.35); -webkit-text-stroke: 1px rgba(0,0,0,.18); }
.b-hero-h1 .line1 { display: block; font-size: clamp(72px, 9vw, 112px); color: var(--b-lime); animation: bTitlePaint 420ms cubic-bezier(.77,0,.18,1) 80ms both; }
.b-hero-h1 .line2 { display: block; font-size: clamp(52px, 6.5vw, 80px); color: var(--b-white); animation: bTitlePaint 420ms cubic-bezier(.77,0,.18,1) 180ms both; }
.b-hero-h1 .line3 { display: block; font-size: clamp(72px, 9vw, 112px); color: var(--b-white); animation: bTitlePaint 420ms cubic-bezier(.77,0,.18,1) 280ms both; }
.b-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; position: relative; z-index: 6; }
.b-btn-pri { font-family: var(--b-body); font-size: 13px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 14px 38px; background: var(--b-lime); color: var(--b-dark); border: 2px solid var(--b-lime); border-radius: 4px; display: inline-block; box-shadow: 0 12px 26px rgba(215,255,0,.22); transition: background .2s; }
.b-btn-pri:hover { background: #eeff62; border-color: #eeff62; color: var(--b-dark); }
.b-btn-out { font-family: var(--b-body); font-size: 13px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 14px 38px; background: transparent; color: var(--b-white); border: 2px solid rgba(255,255,255,0.38); border-radius: 4px; display: inline-block; transition: border-color .2s, color .2s; }
.b-btn-out:hover { color: var(--b-lime); border-color: var(--b-lime); }
.b-burger-stage { position: relative; display: flex; align-items: flex-end; justify-content: center; width: 100%; max-width: 1180px; min-height: 280px; margin: -14px auto 0; animation: bFloat 5200ms ease-in-out infinite; pointer-events: none; overflow: visible; }
.b-burger-stage::before, .b-burger-stage::after { content: ''; position: absolute; top: 84px; width: 180px; height: 170px; background-repeat: no-repeat; background-position: center; background-size: contain; opacity: 0.92; pointer-events: none; }
.b-burger-stage::before { left: -52px; background-image: url("data:image/svg+xml,%3Csvg width='180' height='170' viewBox='0 0 180 170' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 84C21 142 42 142 44 82C47 -8 72 -10 72 83C72 168 100 168 108 84C117 -8 154 -9 164 84' stroke='%23b5aa71' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.b-burger-stage::after { right: -52px; background-image: url("data:image/svg+xml,%3Csvg width='180' height='170' viewBox='0 0 180 170' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 84C21 142 42 142 44 82C47 -8 72 -10 72 83C72 168 100 168 108 84C117 -8 154 -9 164 84' stroke='%239b80d7' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* Foreground composition — up to 3 independently dynamic images rendered as flex siblings
   (bottom-aligned, DOM order left → center → right). Flex naturally re-centers whichever
   slots survive, so missing images just close the gap — no slot-count CSS needed.
   SCALE NOTE: the container (.b-burger-stage, max-width 1180px) was never the bottleneck —
   it already matches .b-hero-inner's own cap. The real bottleneck was the child width
   percentages: at 34/40/34% with -22% overlap, gross-minus-overlap only nets ~64% of the
   container actually visible (~740px of an available ~1130px) — far short of the original
   composite's measured ~1060px visible width. Percentages below are solved to hit that
   target width while preserving the same overlap-to-width ratio (~60%) and the same
   center:side dominance ratio (~1.18×) as the previous pass — this is the SAME system
   scaled up, not a redesign. */
.b-burger-img { position: relative; display: block; width: auto; height: auto; max-height: clamp(320px, 40vw, 520px); object-fit: contain; filter: drop-shadow(0 28px 48px rgba(0,0,0,.45)); pointer-events: none; z-index: 2; }
/* Overlap as a PERCENTAGE of the composition container. The blank-canvas-cancelling
   threshold sits around 55-60% of a side image's own width (see the images used — plain
   rectangular product photos where the visible burger occupies only ~45-47% of the
   canvas). -50% (≈80% of own width) bridged that but then buried roughly HALF of each
   side burger behind center — more than intended. Backed off to ≈68% of own width: still
   safely past the blank-margin threshold (won't reopen the gap), but leaves clearly more
   of each side burger visible — a light, ~20%-of-burger overlap rather than a ~50% one. */
.b-burger-stage .b-burger-img:not(:first-child) { margin-left: -37%; }

/* Center is only MODERATELY dominant (~1.18× a side, same ratio as before). */
.b-burger-stage .b-burger-center { max-width: 74%; max-height: clamp(360px, 44vw, 580px); z-index: 3; }
.b-burger-stage .b-burger-left,
.b-burger-stage .b-burger-right { max-width: 62%; }

/* 1 image present (any slot): centered by the flex row automatically, no overlap needed.
   Higher specificity than the slot rules above, so it wins regardless of which slot survived. */
.b-burger-stage.has-1-image .b-burger-img { max-width: 66%; max-height: clamp(360px, 44vw, 580px); }

/* 2 images present (any pair of slots): only ONE adjacent pair exists (not two), so only one
   overlap is subtracted — net = 2W − overlap. Same lighter overlap ratio as the 3-image
   state above. Equal prominence, no assumption about which slot is missing. */
.b-burger-stage.has-2-images .b-burger-img { max-width: 79%; max-height: clamp(340px, 42vw, 560px); }
.b-burger-stage.has-2-images .b-burger-img:not(:first-child) { margin-left: -47%; }

/* Long dynamic middle line: step down so multi-word headings stay contained */
.b-hero-h1 .line2.line2--long { font-size: clamp(30px, 3.8vw, 46px); line-height: 1.08; }
@media (max-width: 640px) {
  .b-burger-stage { min-height: 220px; margin-top: -10px; }
  .b-burger-img { max-height: 250px; }
  .b-burger-stage .b-burger-center { max-width: 74%; max-height: 280px; }
  .b-burger-stage .b-burger-left,
  .b-burger-stage .b-burger-right { max-width: 62%; }
  .b-burger-stage .b-burger-img:not(:first-child) { margin-left: -35%; }
  .b-burger-stage.has-1-image .b-burger-img { max-width: 72%; max-height: 300px; }
  .b-burger-stage.has-2-images .b-burger-img { max-width: 79%; max-height: 270px; }
  .b-burger-stage.has-2-images .b-burger-img:not(:first-child) { margin-left: -45%; }
}
@keyframes bFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes bFadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes bTitlePaint { from{opacity:0;clip-path:inset(0 100% 0 0);transform:translateY(14px)} to{opacity:1;clip-path:inset(0 0 0 0);transform:translateY(0)} }

/* ── TICKER ──────────────────────────────────────────────── */
.b-ticker { background: #3476bb; height: 42px; display: flex; align-items: center; overflow: hidden; }
.b-ticker-track { display: inline-block; white-space: nowrap; animation: bTick 22s linear infinite; font-family: var(--b-font); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: #fff; }
@keyframes bTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HOUSE SPECIAL ───────────────────────────────────────── */
.b-special { background: var(--b-card); padding: 90px 2rem; }
.b-special-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.b-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--b-lime); margin-bottom: 14px; }
.b-special-h2 {
  font-family: var(--b-font); font-size: clamp(44px, 6vw, 80px);
  line-height: .93; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
}
.b-special-desc { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.52); max-width: 400px; margin-bottom: 32px; }
.b-special-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }

/* ── POPULAR MENU ────────────────────────────────────────── */
.b-menu { background: #f5f4f0; padding: 90px 2rem; }
.b-menu .b-sec-head { color: #3476bb; }
.b-sec-head {
  text-align: center; font-family: var(--b-font);
  font-size: clamp(42px, 6vw, 68px); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 56px; display: flex; align-items: center; justify-content: center; gap: 18px;
}
.b-menu-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.b-card {
  background: #ffffff; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.08); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.b-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.14); }
.b-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.b-card-body { padding: 20px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.b-card-name { font-family: var(--b-font); font-size: 22px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; color: #181818; }
.b-card-desc { font-size: 14px; color: #777; line-height: 1.65; flex: 1; margin-bottom: 22px; }
.b-cart-btn {
  font-family: var(--b-font); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 22px; background: transparent; color: #181818;
  border: 2px solid rgba(0,0,0,.5); border-radius: 4px; cursor: pointer;
  align-self: flex-start; transition: background .2s, color .2s;
}
.b-cart-btn:hover { background: #181818; color: #ffffff; }

/* ── SOCIAL STORIES (Duffs-style) ────────────────────────── */
.b-stories {
  position: relative; background: #f6f6f6; overflow: hidden;
  padding: 80px 40px 110px; display: flex; flex-direction: column; align-items: center;
}
.b-stories-label {
  font-family: var(--b-font); font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #3476bb; margin-bottom: 56px; position: relative; z-index: 10;
}
.b-stories-marquee-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; display: flex; align-items: center;
}
.b-stories-marquee-wrap { position: absolute; left: -10%; width: 120%; transform: rotate(-6deg); white-space: nowrap; }
.b-stories-marquee-inner {
  display: inline-block; white-space: nowrap;
  animation: bMarquee 24s linear infinite;
  font-family: var(--b-font); font-size: clamp(80px, 11vw, 160px);
  letter-spacing: 4px; text-transform: uppercase; color: #141414; opacity: .06;
  line-height: 1; padding: 10px 0; user-select: none;
}
@keyframes bMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.b-stories-cards {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center; gap: 22px; max-width: 1100px; width: 100%;
}
.b-story-card {
  flex-shrink: 0; width: 214px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.35); background: #111;
  position: relative; cursor: pointer; transition: box-shadow .3s;
}
.b-story-card::after { content: ''; display: block; padding-top: 177.78%; }
.b-story-card:hover { box-shadow: 0 36px 90px rgba(0,0,0,.55); z-index: 20; }
.b-story-card:nth-child(1) { transform: rotate(-5deg) translateY(28px); }
.b-story-card:nth-child(1):hover { transform: rotate(-5deg) translateY(28px) scale(1.05); }
.b-story-card:nth-child(2) { transform: rotate(-1.5deg) translateY(-20px); }
.b-story-card:nth-child(2):hover { transform: rotate(-1.5deg) translateY(-20px) scale(1.05); }
.b-story-card:nth-child(3) { transform: rotate(2deg) translateY(14px); }
.b-story-card:nth-child(3):hover { transform: rotate(2deg) translateY(14px) scale(1.05); }
.b-story-card:nth-child(4) { transform: rotate(5.5deg) translateY(-24px); }
.b-story-card:nth-child(4):hover { transform: rotate(5.5deg) translateY(-24px) scale(1.05); }
.b-story-inner { position: absolute; inset: 0; }
.b-story-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 100%);
  z-index: 3; pointer-events: none;
}
.b-story-inner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  z-index: 3; pointer-events: none;
}
.b-story-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; background: #000; }
.b-story-header { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; align-items: center; gap: 8px; z-index: 5; }
.b-story-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--b-yellow); background: var(--b-lime); flex-shrink: 0; }
.b-story-handle { font-size: 11px; font-weight: 700; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.9); letter-spacing: .2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.b-story-caption {
  position: absolute; bottom: 16px; left: 14px; right: 14px; z-index: 5;
  font-family: var(--b-font); font-size: 15px; line-height: 1.25; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.9); text-transform: uppercase; letter-spacing: .5px;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.b-gallery {
  background: #0e0e0e; padding: 100px 2rem 110px;
  position: relative; overflow: hidden;
}
.b-gl-ambient {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--b-font); font-size: clamp(120px, 20vw, 260px);
  letter-spacing: 12px; color: var(--b-lime); opacity: 0.035;
  white-space: nowrap; pointer-events: none; user-select: none;
}
.b-gl-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.b-gl-label {
  display: block; font-family: var(--b-body); font-size: 10px;
  letter-spacing: 6px; text-transform: uppercase; color: var(--b-lime); margin-bottom: 12px;
}
.b-gl-title {
  font-family: var(--b-font); font-size: clamp(40px, 6vw, 66px);
  letter-spacing: 4px; text-transform: uppercase; color: var(--b-lime); margin: 0;
}
.b-gl-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  grid-template-rows: 280px 240px 260px;
  gap: 10px; position: relative; z-index: 1;
}
.b-gl-item {
  position: relative; border-radius: 10px; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.b-gl-item.gl-in { opacity: 1; transform: translateY(0); }
.b-gl-item:nth-child(1) { transition-delay: 0s;    grid-column: 1; grid-row: 1 / 3; }
.b-gl-item:nth-child(2) { transition-delay: 0.12s; grid-column: 2; grid-row: 1; }
.b-gl-item:nth-child(3) { transition-delay: 0.22s; grid-column: 3; grid-row: 1; }
.b-gl-item:nth-child(4) { transition-delay: 0.32s; grid-column: 2 / 4; grid-row: 2; }
.b-gl-item:nth-child(5) { transition-delay: 0.12s; grid-column: 1 / 3; grid-row: 3; }
.b-gl-item:nth-child(6) { transition-delay: 0.24s; grid-column: 3; grid-row: 3; }
.b-gl-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s ease;
}
.b-gl-item:hover .b-gl-img { transform: scale(1.08); }
.b-gl-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(215,255,0,0); transition: background 0.4s ease;
}
.b-gl-item:hover::before { background: rgba(215,255,0,0.13); }
.b-gl-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.04) 52%, transparent 100%);
  display: flex; align-items: flex-end; padding: 18px 20px;
}
.b-gl-caption {
  font-family: var(--b-font); font-size: 16px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--b-white);
  opacity: 0.65; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.b-gl-item:hover .b-gl-caption { opacity: 1; transform: translateY(0); }
@media (max-width: 860px) {
  .b-gl-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px 220px; }
  .b-gl-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .b-gl-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .b-gl-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .b-gl-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .b-gl-item:nth-child(5) { grid-column: 1; grid-row: 4; }
  .b-gl-item:nth-child(6) { grid-column: 2; grid-row: 4; }
}
@media (max-width: 520px) {
  .b-gl-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 220px); }
  .b-gl-item:nth-child(n) { grid-column: auto; grid-row: auto; }
}

/* ── DIAGONAL MARQUEE BAND ───────────────────────────────── */
.b-marquee-section { position: relative; overflow: hidden; height: 180px; display: flex; align-items: center; background: #3476bb; }
.b-marquee-band { position: absolute; left: -10%; width: 120%; padding: 28px 0; transform: rotate(-5deg); display: flex; overflow: hidden; white-space: nowrap; background: var(--b-white); }
.b-marquee-text { font-family: var(--b-font); font-size: clamp(40px, 6vw, 80px); letter-spacing: 2px; color: #3476bb; text-transform: uppercase; animation: bMarquee 18s linear infinite; display: inline-block; padding-right: 60px; }

/* ── GOOGLE REVIEWS ──────────────────────────────────────── */
.b-google-revs { background: var(--b-white); padding: 100px 2rem 120px; color: var(--b-dark); }
.b-google-revs-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.b-revs-label { font-family: var(--b-font); font-size: 11px; letter-spacing: 4px; color: #aaa; text-transform: uppercase; margin-bottom: 16px; }
.b-revs-g-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.b-revs-g-logo { width: 30px; height: 30px; flex-shrink: 0; }
.b-revs-g-wordmark { font-family: var(--b-font); font-size: 38px; letter-spacing: -1px; color: #1a1a1a; line-height: 1; }
.b-revs-score-row { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 28px; }
.b-revs-number { font-family: var(--b-font); font-size: clamp(110px, 14vw, 170px); line-height: .85; color: #181818; letter-spacing: -5px; }
.b-revs-right-stack { padding-bottom: 10px; }
.b-revs-stars { color: #FBBC04; font-size: 26px; letter-spacing: 3px; line-height: 1; }
.b-revs-outof { font-family: var(--b-font); font-size: 20px; color: #aaa; margin-top: 4px; letter-spacing: -.5px; }
.b-revs-count { font-family: var(--b-font); font-size: 11px; letter-spacing: 2px; color: #bbb; text-transform: uppercase; margin-top: 4px; }
.b-revs-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; max-width: 260px; }
.b-revs-bar-row { display: flex; align-items: center; gap: 10px; }
.b-revs-bar-label { font-family: var(--b-font); font-size: 12px; color: #888; width: 22px; text-align: right; flex-shrink: 0; }
.b-revs-bar-track { flex: 1; height: 5px; background: #eee; border-radius: 3px; overflow: hidden; }
.b-revs-bar-fill { height: 100%; border-radius: 3px; background: var(--b-lime); }
.b-revs-bar-fill.lower { background: #FFD100; }
.b-revs-bar-fill.lowest { background: #ddd; }
.b-revs-bar-pct { font-size: 11px; color: #bbb; width: 28px; flex-shrink: 0; text-align: right; }
.b-revs-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--b-font); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #1a1a1a; border-bottom: 2px solid #1a1a1a; padding-bottom: 3px; transition: color .2s, border-color .2s; }
.b-revs-cta:hover { color: var(--b-lime); border-color: var(--b-lime); }
.b-rev-cards { display: flex; flex-direction: column; gap: 18px; }
.b-rev-card { background: #0F2610; border-radius: 16px; padding: 26px 28px 22px; position: relative; box-shadow: 0 12px 40px rgba(0,0,0,.14); transition: transform .25s, box-shadow .25s; }
.b-rev-card:nth-child(1) { transform: rotate(-1.2deg) translateX(-4px); }
.b-rev-card:nth-child(2) { transform: rotate(.7deg) translateX(6px); }
.b-rev-card:nth-child(3) { transform: rotate(-.5deg) translateX(-2px); }
.b-rev-card:hover { box-shadow: 0 20px 56px rgba(0,0,0,.2); transform: rotate(0) translateX(0) translateY(-4px) !important; }
.b-rev-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.b-rev-stars { color: #FBBC04; font-size: 17px; letter-spacing: 2px; }
.b-rev-g-icon { width: 22px; height: 22px; opacity: .7; }
.b-rev-text { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.b-rev-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px; }
.b-rev-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--b-secondary); color: #fff; font-family: var(--b-font); font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.b-rev-name { font-family: var(--b-font); font-size: 13px; letter-spacing: .5px; color: #fff; text-transform: uppercase; }
.b-rev-via { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.b-footer { background: var(--b-card); padding: 60px 2rem 32px; border-top: 1px solid rgba(255,255,255,.05); }
.b-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; margin-bottom: 40px;
}
.b-footer-logo { font-family: var(--b-font); font-size: 28px; letter-spacing: 2px; margin-bottom: 12px; color: var(--b-white); }
.b-footer-logo span { color: var(--b-lime); }
.b-footer-logo img { max-height: 40px; margin-bottom: 12px; }
.b-footer-tagline { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.65; max-width: 240px; }
.b-footer-col h4 { font-family: var(--b-font); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; color: var(--b-white); }
.b-footer-links { list-style: none; margin: 0; padding: 0; }
.b-footer-links li { margin-bottom: 9px; color: rgba(255,255,255,.4); }
.b-footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.b-footer-links a:hover { color: var(--b-white); }
.b-footer-hours { font-size: 13px; color: rgba(255,255,255,.4); line-height: 2; }
.b-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.b-footer-social-btn { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); color: var(--b-white); transition: background .2s, color .2s; }
.b-footer-social-btn:hover { background: var(--b-lime); color: var(--b-dark); }
.b-footer-sub-desc { font-size: 13px; color: rgba(255,255,255,.38); margin-bottom: 14px; }
.b-footer-sub-row { display: flex; gap: 8px; }
.b-footer-sub-row input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px; padding: 10px 14px; color: var(--b-white); font-size: 13px; outline: none;
}
.b-footer-sub-row input::placeholder { color: rgba(255,255,255,.28); }
.b-footer-sub-row button {
  font-family: var(--b-font); font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 18px; background: var(--b-lime); color: var(--b-white); border: none; border-radius: 4px; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.b-footer-sub-row button:hover { background: #7c52e0; }
.b-footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center;
}
.b-footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.b-powered { font-size: 12px; color: rgba(255,255,255,.22); }
.b-powered a { color: var(--b-lime); }

/* ── MODALS (login / register / OTP / forgot-password / opening-hours) ──── */
.modalNewstyle .modal-content {
  background: var(--b-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; color: var(--b-white);
}
.modalNewstyle .modal-header { padding: 1.5rem 2rem 1rem; border-bottom: none; }
.modalNewstyle .modal-body   { padding: .5rem 2rem 2rem; }
.modalNewstyle .modal-title,
.modalNewstyle .mdTitle {
  font-family: var(--b-font); font-size: 22px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--b-white);
}
.modalNewstyle .btn-close { filter: invert(1) brightness(1.6); opacity: .7; }
.modalNewstyle .btn-close:hover { opacity: 1; }
.modalNewstyle label,
.modalNewstyle .labelStyle,
.modalNewstyle .form-label { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 6px; display: block; }

/* Social / outline buttons */
.modalNewstyle .btnDarkOutline {
  background: transparent; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.85);
  font-family: var(--b-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 16px; border-radius: 4px; transition: background .2s, border-color .2s;
  text-align: center; cursor: pointer; display: block; text-decoration: none;
}
.modalNewstyle .btnDarkOutline:hover { background: var(--b-lime-soft); border-color: var(--b-lime); color: var(--b-lime); }

/* Primary button — same recipe as .b-btn-pri */
.modalNewstyle .btnPrimary {
  font-family: var(--b-body); font-size: 13px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  background: var(--b-lime); color: var(--b-dark); border: 2px solid var(--b-lime); border-radius: 4px;
  padding: 12px 20px; transition: background .2s;
}
.modalNewstyle .btnPrimary:hover { background: #eeff62; border-color: #eeff62; color: var(--b-dark); }

/* OR divider */
.modalNewstyle .sideLinesDivider { overflow: hidden; text-align: center; position: relative; }
.modalNewstyle .sideLinesDivider .dividerText {
  display: inline-block; position: relative; padding: 0 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35);
}
.modalNewstyle .sideLinesDivider .dividerText::before,
.modalNewstyle .sideLinesDivider .dividerText::after {
  content: ""; position: absolute; top: 50%; width: 100vw; margin-top: -1px; border-top: 1px solid rgba(255,255,255,.1);
}
.modalNewstyle .sideLinesDivider .dividerText::before { right: 100%; }
.modalNewstyle .sideLinesDivider .dividerText::after  { left: 100%; }

/* Form controls scoped to modal */
.modalNewstyle .form-control,
.modalNewstyle .form-select {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  border-radius: 4px; padding: 10px 14px; font-family: var(--b-body); font-size: 14px;
}
.modalNewstyle .form-control::placeholder { color: rgba(255,255,255,.35); }
.modalNewstyle .form-control:focus,
.modalNewstyle .form-select:focus {
  background: rgba(255,255,255,.09); border-color: var(--b-lime);
  box-shadow: 0 0 0 2px var(--b-lime-soft); color: var(--b-white); outline: none;
}

/* Links */
.modalNewstyle .simpleLink { color: var(--b-lime); text-decoration: none; font-size: 13px; transition: color .2s; }
.modalNewstyle .simpleLink:hover { color: #eeff62; text-decoration: underline; }
.modalNewstyle .linkStyle2 { color: var(--b-lime); font-size: 12px; font-weight: 600; text-decoration: none; transition: color .2s; }
.modalNewstyle .linkStyle2:hover { color: #eeff62; }
.modalNewstyle .textPrimary { color: var(--b-lime) !important; }

/* Checkboxes */
.modalNewstyle .form-check-label { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.5; }
.modalNewstyle .form-check-input { background-color: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.modalNewstyle .form-check-input:checked { background-color: var(--b-lime); border-color: var(--b-lime); }

/* Error / OTP */
.modalNewstyle .errorMsg { color: #ff6b6b; font-size: 12px; min-height: 1.2em; }
.modalNewstyle #timer { font-size: 13px; color: rgba(255,255,255,.55); }

/* Opening-hours content */
.modalNewstyle .openingHourModalContent .titleLbl { font-family: var(--b-font); font-size: 14px; letter-spacing: .5px; text-transform: uppercase; color: var(--b-lime); }
.modalNewstyle .openingHourModalContent .simpleList { list-style: none; padding: 0; margin: 0 0 1rem; color: rgba(255,255,255,.75); }
.modalNewstyle .openingHourModalContent .hrs { margin-top: 1.25rem; }
.modalNewstyle .openingHourModalContent p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }
.modalNewstyle .infoIcon { color: var(--b-lime); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.b-fade { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.b-fade.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .b-nav-links { display: none; }
  .b-special-inner { grid-template-columns: 1fr; gap: 40px; }
  .b-menu-grid { grid-template-columns: 1fr 1fr; }
  .b-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .b-reviews-grid { grid-template-columns: 1fr 1fr; }
  .b-footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .b-menu-grid { grid-template-columns: 1fr; }
  .b-stories { padding: 60px 20px 90px; }
  .b-stories-cards {
    overflow-x: auto; padding-bottom: 24px;
    justify-content: flex-start; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .b-stories-cards::-webkit-scrollbar { display: none; }
  .b-story-card { scroll-snap-align: center; }
  .b-story-card:nth-child(1),
  .b-story-card:nth-child(2),
  .b-story-card:nth-child(3),
  .b-story-card:nth-child(4) { transform: none; }
  .b-story-card:nth-child(1):hover,
  .b-story-card:nth-child(2):hover,
  .b-story-card:nth-child(3):hover,
  .b-story-card:nth-child(4):hover { transform: scale(1.04); }
  .b-gallery-grid { grid-template-columns: 1fr 1fr; }
  .b-google-revs-inner { grid-template-columns: 1fr; gap: 48px; }
  .b-footer-inner { grid-template-columns: 1fr; }
  .b-nav-phone, .b-nav-status { display: none; }
  .b-nav-actions { gap: 10px; }
  .b-toggler { display: flex; }
}

/* ============================================================
   Floating cart tape — copied from newthemechangeui.css so it loads on the
   homepage (main.php), which does NOT register Main_innerAsset, yet
   footer-main.php still renders <div class="mobile_footer_tape"> via the
   shared cart_tape.php partial. Every new theme's style.css needs this same
   block for the same reason — check an existing theme (this file itself, or
   e.g. web_v27/web_v18) and copy it verbatim; it's theme-agnostic (white-card
   cart-drawer UI, not the theme's own dark palette) except for
   var(--primary-theme-color), which every theme's layout already defines.
   ============================================================ */

/* --- Global rules --- */
.btn.payBtn {
  font-size: 14px;
  line-height: 1.3;
  border: 2px solid var(--primary-theme-color);
  color: #fff;
  background: var(--primary-theme-color);
}
.floatingCart {
    padding: 15px 20px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px 30px 0 0;
    z-index: 7;
}
.floatingCart .cartPrice {
    font-size: 18px;
    font-weight: bold;
}
.floatingCart .cartPrice > span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.floatingCart .cartPrice > span + span {
    margin-left: 5px;
}
.floatingCart .cartPrice > span > img {
    display: block;
}
.mobile_footer_tape {
    display: none;
}
.floatingCart .cartPrice svg path {
    fill: var(--primary-theme-color) !important;
}
.floatingCartFixBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}
.floatingCartFixBtn .fixBtnCol {
    flex: 0 0 50%;
    border-radius: 10px;
    padding: 10px;
}
.floatingCartFixBtn .fixBtnCol span.cartPrice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.fixBtnCol .cartPrice svg {
    width: 18px;
    display: block;
}
.cartRightText.viewCartItems.btn_primary.btn {
    margin-bottom: 0px;
    padding: 10px;
}
.nwCartTitle.text-center > h2 {
    color: black;
}

/* --- @media (max-width: 1199px) --- */
@media (max-width: 1199px) {
    .sidebarright {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        background-color: transparent;
        z-index: 11;
        margin: 0;
        overflow-y: inherit;
        transition: all 300ms ease-in-out 0s;
        transform: translateY(200%) !important;
    }
    .cartSlide .sidebarright {
        transform: translateY(0%) !important;
    }
    .mobile_footer_tape .nwCartInner {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px 0 100px;
    }
    .mobile_footer_tape .nwCartMain {
        background-color: #ffffff;
        box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
        border-radius: 30px 30px 0 0;
        padding: 15px;
    }
    .cartBackIcon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -6px;
    }
    .cartBackIcon > img {
        display: block;
    }
    html.cartSlide {
        position: relative;
        overflow: hidden;
    }
    html.cartSlide::before {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all 300ms ease-in-out 0s;
        background-color: rgba(19, 15, 38, 0.8);
        z-index: 10 !important;
    }
    .mobile_footer_tape {
        display: block;
    }
    .cartSlide .productDetailPage .sidebarright {
        top: auto;
    }
    .sidebarright {
        width: 100% !important;
    }
    .mobile_footer_tape .pageContent.mobilePageContent {
        padding: 0;
    }
    .b-footer {
        margin-bottom: 50px;
    }
}

/* --- @media (max-width: 767px) --- */
@media (max-width: 767px) {
    .floatingCart {
        padding: 10px 15px;
        border-radius: 20px 20px 0 0;
    }
    .floatingCart .cartPrice svg {
        width: 20px;
    }
    .floatingCart {
        padding: 8px 15px;
    }
    .floatingCart .cartPrice {
        font-size: 16px;
    }
    .cartRightText.viewCartItems a {
        font-size: 14px;
    }
}

/* --- @media (max-width: 575px) --- */
@media (max-width: 575px) {
    .cartBackIcon {
        left: 0;
    }
    .cartBackIcon > img {
        max-width: 18px;
    }
    .floatingCart .cartPrice > span + span {
        margin-left: 2px;
    }
}

.mobile_footer_tape {
    position: relative;
    z-index: 999;
    color: #1B2126;
}
.mobile_footer_tape .pageContent {
    padding: 0;
    position: relative;
}
.mobile_footer_tape .nwaddDetailInner {
    margin-top: 25px;
}
.mobile_footer_tape .nwaddDetail {
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.mobile_footer_tape .nwaddDetail h2 {
    font-size: 14px;
    margin: 0;
}
.mobile_footer_tape .nwaddDetail p {
    margin: 0 0 2px;
    font-size: 14px;
    line-height: 1.2;
    color: #130F26;
}
.mobile_footer_tape .textandwordWrap span {
    font-size: 10px;
    display: inline-block;
}
.mobile_footer_tape .sizeCol > p {
    font-size: 12px;
    margin: 0;
}
.mobile_footer_tape .edRMainCol {
    padding-top: 10px;
}
.mobile_footer_tape .rEdCol ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
}
.mobile_footer_tape .rEdCol ul li + li {
    margin-left: 15px;
}
.mobile_footer_tape .rEdCol ul li span {
    display: inline-block;
    vertical-align: middle;
}
.mobile_footer_tape .rEdCol ul li span img {
    display: block;
}
.mobile_footer_tape .cart-inc-dec .quantity {
    border: 1px solid #dddddd;
    width: 84px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mobile_footer_tape .cart-inc-dec .quantity .minus {
    border: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDExIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTAuNSAxSDEwLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
    height: 100%;
    width: 26px;
    flex: 0 0 auto;
    border-radius: 30px 0px 0px 30px;
    box-shadow: none;
}
.mobile_footer_tape .cart-inc-dec .quantity .qty {
    font-size: 14px;
    font-weight: 400;
    width: 25px;
    height: 100%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #000;
    flex: 1 0 0;
    text-align: center;
}
.mobile_footer_tape .cart-inc-dec .quantity .plus {
    border: 0;
    background-color: transparent;
    box-shadow: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMVYxMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDZIMTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
    height: 100%;
    width: 26px;
    flex: 0 0 auto;
    border-radius: 0px 30px 30px 0px;
    box-shadow: none;
}
.mobile_footer_tape .addchilliSelect {
    position: relative;
    transition: all 300ms ease-in-out 0s;
}
.mobile_footer_tape a.removeStyle {
    color: #d33315;
}
.mobile_footer_tape .nwaddText h3 {
    font-size: 16px;
    color: #130F26;
    font-weight: 700;
    margin: 0;
}
@media (max-width: 1199px) {
    .mobile_footer_tape .sidebarright {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        background-color: transparent;
        z-index: 11;
        margin: 0;
        overflow-y: inherit;
        transition: all 300ms ease-in-out 0s;
        transform: translateY(200%);
    }
    .cartSlide .mobile_footer_tape .sidebarright {
        transform: translateY(0%);
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle {
        position: relative;
        padding: 0 0 15px;
        border-bottom: 1px solid #E3E3E3;
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -6px;
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon img {
        display: block;
    }
    .mobile_footer_tape .cartCardImg {
        width: 50px;
    }
    .mobile_footer_tape .cartCardImg img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
    }
    .p2pCol {
        padding: 20px 15px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #FFFFFF;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 20px 20px 0 0;
        z-index: 9999;
    }
    .priceLgText {
        font-size: 22px;
        font-weight: bold;
    }
}

/* .btn_primary is not loaded on the homepage (its shared stylesheet doesn't reach
   main.php), and Bootstrap 5 resets .btn to transparent — restore the theme
   button for the cart tape / Proceed To Pay */
.btn.btn_primary,
.cartRightText.btn_primary.btn {
    background-color: var(--primary-theme-color) !important;
    color: #181818 !important;   /* dark text — neon primary bg makes white invisible */
    border: 0 !important;
}
.btn.btn_primary:hover,
.btn.btn_primary:focus {
    color: #181818 !important;
    opacity: 0.85;
}
.btn.btn_primary a,
.cartRightText.btn_primary.btn a {
    color: #181818 !important;
    text-decoration: none;
}

/* Proceed To Pay button — sizing copied from newthemechangeui.css mobile rules */
@media (max-width: 1199px) {
    .btn.btn_primary.payBtn {
        text-align: left;
        position: relative;
        font-weight: 700;
        min-width: 145px;
        border-radius: 14px;
        text-transform: capitalize;
        font-size: 13px;
        padding: 11px 45px 11px 15px;
    }
    .btn.btn_primary.payBtn > span {
        line-height: 1;
    }
}
