/* ================= PeakFuel — design system ================= */
:root {
  --bg: #F8F4EA;
  --ink: #14231C;
  --ink-soft: #4C5A52;
  --green: #114B3C;
  --green-dark: #0E3A2D;
  --lime: #C9F24B;
  --flame: #E8481C;
  --card: #FFFFFF;
  --line: #14231C;
  --radius: 14px;
  --shadow: 4px 4px 0 rgba(20, 35, 28, .9);
  --shadow-sm: 3px 3px 0 rgba(20, 35, 28, .85);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  background-image: radial-gradient(rgba(20,35,28,.05) 1px, transparent 1.4px);
  background-size: 22px 22px;
  padding-bottom: 70px;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--font-display); }

/* ---------- Ticker ---------- */
.ticker { background: var(--green-dark); color: #F4F0E6; overflow: hidden; border-bottom: 2px solid var(--ink); }
.ticker__track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: tick 40s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { padding: 8px 34px; font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.ticker__item::after { content: "•"; color: var(--lime); margin-left: 34px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header { background: var(--card); border-bottom: 2px solid var(--ink); position: sticky; top: 0; z-index: 50; }
.header__inner { display: flex; align-items: center; gap: 22px; padding-top: 14px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.logo__bolt { font-size: 26px; filter: drop-shadow(2px 2px 0 var(--lime)); }
.logo__text { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; }
.logo__text em { font-style: normal; color: var(--green); }
.search-wrap { flex: 1; position: relative; }
.search { display: flex; border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm); }
.search input { flex: 1; border: 0; background: transparent; padding: 11px 18px; font-family: inherit; font-size: 14px; outline: none; }
.search__btn { border: 0; background: var(--lime); padding: 0 20px; border-left: 2px solid var(--ink); font-size: 15px; }

/* ---------- Search results dropdown ---------- */
.search__results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); max-height: 420px; overflow-y: auto; z-index: 70; display: none; }
.search__results.show { display: block; }
.search__result { display: flex; align-items: center; gap: 12px; padding: 9px 14px; cursor: pointer; border-bottom: 1px solid rgba(20,35,28,.1); }
.search__result:last-child { border-bottom: 0; }
.search__result:hover { background: var(--bg); }
.search__result img { width: 40px; height: 40px; object-fit: contain; background: #fff; border: 2px solid var(--ink); border-radius: 8px; flex-shrink: 0; }
.search__result-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.search__result-title { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search__result-price { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.search__empty { padding: 16px; text-align: center; font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.header__actions { display: flex; gap: 8px; }
.hact { display: flex; align-items: center; gap: 6px; background: none; border: 2px solid transparent; border-radius: 10px; padding: 8px 10px; font-size: 13px; font-weight: 600; color: var(--ink); position: relative; }
.hact:hover { border-color: var(--ink); background: var(--bg); }
.cart-count { position: absolute; top: -4px; right: -2px; background: var(--flame); color: #fff; font-size: 11px; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; border: 2px solid var(--card); }
.nav { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a { white-space: nowrap; font-weight: 700; font-size: 14px; padding: 7px 14px; border-radius: 999px; border: 2px solid transparent; }
.nav a:hover { border-color: var(--ink); background: var(--lime); box-shadow: var(--shadow-sm); }

/* ---------- Sections ---------- */
.section { margin: 34px 0; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; gap: 14px; }
.section__title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; position: relative; display: inline-block; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 10px; background: var(--lime); z-index: -1; transform: skewX(-12deg); }
.more-link { font-weight: 700; font-size: 14px; color: var(--green); border-bottom: 2px solid var(--green); padding-bottom: 1px; white-space: nowrap; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 2.1fr 1fr; gap: 18px; margin-top: 24px; }
.hero__slider { position: relative; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.hero__slide { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 46px 52px; opacity: 0; transition: opacity .6s; }
.hero__slide.on { opacity: 1; }
.hero__emoji { font-size: 54px; margin-bottom: 12px; }
.hero__title { font-size: clamp(34px, 4.6vw, 58px); font-weight: 800; line-height: .98; letter-spacing: -0.03em; color: #fff; max-width: 12ch; }
.hero__sub { color: rgba(255,255,255,.85); margin: 14px 0 22px; font-size: 16px; max-width: 42ch; font-weight: 500; }
.hero__cta { align-self: flex-start; background: var(--lime); border: 2px solid var(--ink); border-radius: 999px; padding: 12px 26px; font-weight: 800; font-size: 15px; box-shadow: var(--shadow-sm); transition: transform .15s; }
.hero__cta:hover { transform: translate(-2px,-2px); }
.hero__dots { position: absolute; bottom: 16px; left: 52px; display: flex; gap: 7px; z-index: 2; }
.hero__dots b { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.45); cursor: pointer; transition: .2s; }
.hero__dots b.on { background: var(--lime); width: 26px; }
.hero__side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.side-banner { border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px; color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 6px; transition: transform .15s; }
.side-banner:hover { transform: translate(-2px,-2px); }
.side-banner .e { font-size: 30px; }
.side-banner h3 { font-size: 24px; font-weight: 800; }
.side-banner p { font-size: 13px; opacity: .85; font-weight: 500; }

/* ---------- Category circles ---------- */
.cats { display: flex; gap: 20px; justify-content: space-between; overflow-x: auto; padding: 6px 2px 12px; }
.cat { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 108px; }
.cat__circle { width: 92px; height: 92px; border-radius: 999px; border: 2px solid var(--ink); background: var(--card); display: grid; place-items: center; font-size: 38px; box-shadow: var(--shadow-sm); transition: .18s; }
.cat:hover .cat__circle { background: var(--lime); transform: translate(-2px,-2px); }
.cat span { font-size: 13px; font-weight: 700; text-align: center; }

/* ---------- Product rows / cards ---------- */
.row-wrap { position: relative; }
.row { display: grid; grid-auto-flow: column; grid-auto-columns: 218px; gap: 16px; overflow-x: auto; padding: 6px 2px 14px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.row > * { scroll-snap-align: start; }
.arrow { position: absolute; top: 40%; z-index: 5; width: 40px; height: 40px; border-radius: 999px; border: 2px solid var(--ink); background: var(--lime); font-size: 17px; box-shadow: var(--shadow-sm); display: grid; place-items: center; }
.arrow--l { left: -14px; } .arrow--r { right: -14px; }
.arrow:hover { background: var(--ink); color: var(--lime); }

.card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: transform .16s, box-shadow .16s; cursor: pointer; }
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.card__imgbox { position: relative; aspect-ratio: 1; background: #fff; display: grid; place-items: center; border-bottom: 2px solid var(--ink); }
.card__imgbox img { width: 88%; height: 88%; object-fit: contain; }
.badge { position: absolute; top: 8px; left: 8px; background: var(--flame); color: #fff; font-weight: 800; font-size: 12px; padding: 4px 8px; border-radius: 8px; border: 2px solid var(--ink); z-index: 2; }
.badge--flash { left: auto; right: 8px; background: var(--ink); color: var(--lime); animation: pulse 1.2s infinite; }
@keyframes pulse { 50% { transform: scale(1.06); } }
.badge--label { top: auto; bottom: 8px; left: 8px; right: 8px; background: var(--lime); color: var(--ink); font-size: 11px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card__body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.rate { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.rate b { color: #E5A50A; letter-spacing: -1px; }
.card__title { font-size: 13px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 35px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price__cur { font-size: 11px; font-weight: 700; color: var(--ink-soft); }
.price__now { font-family: var(--font-display); font-size: 19px; font-weight: 800; }
.price__old { font-size: 13px; color: var(--ink-soft); text-decoration: line-through; }
.add { border: 2px solid var(--ink); background: var(--green); color: #fff; border-radius: 999px; padding: 9px 0; font-weight: 800; font-size: 13px; transition: .15s; }
.add:hover { background: var(--lime); color: var(--ink); }

/* combos: wider cards */
.row--combo { grid-auto-columns: 300px; }
.row--combo .card__title { -webkit-line-clamp: 3; min-height: 52px; }

/* ---------- Wide banners ---------- */
.wide-banner { border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); color: #fff; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; position: relative; overflow: hidden; }
.wide-banner::before { content: attr(data-emoji); position: absolute; right: 30px; bottom: -24px; font-size: 130px; opacity: .18; transform: rotate(-8deg); }
.wide-banner h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -0.02em; }
.wide-banner p { opacity: .85; font-weight: 500; margin-top: 6px; max-width: 52ch; }
.wide-banner .hero__cta { position: relative; z-index: 2; }

.banner-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.banner-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-banner { border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-sm); color: #fff; padding: 30px 28px; display: flex; flex-direction: column; gap: 6px; transition: transform .15s; }
.mini-banner:hover { transform: translate(-2px,-2px); }
.mini-banner .e { font-size: 32px; }
.mini-banner h3 { font-size: 22px; font-weight: 800; }
.mini-banner p { font-size: 13px; opacity: .85; }

/* ---------- Discount tiles ---------- */
.discounts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.disc-tile { border: 2px solid var(--ink); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); padding: 24px 20px; text-align: center; transition: .16s; }
.disc-tile:hover { background: var(--green); color: #fff; transform: translate(-2px,-2px); }
.disc-tile .pct { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--flame); }
.disc-tile:hover .pct { color: var(--lime); }
.disc-tile h3 { font-size: 17px; margin: 4px 0 2px; }
.disc-tile p { font-size: 12px; opacity: .7; font-weight: 600; }
.disc-tile .go { display: inline-block; margin-top: 10px; font-weight: 800; font-size: 13px; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab { border: 2px solid var(--ink); background: var(--card); border-radius: 999px; padding: 8px 18px; font-weight: 700; font-size: 13px; }
.tab.on { background: var(--ink); color: var(--lime); box-shadow: var(--shadow-sm); }

/* ---------- Stacks (banner + carousel) ---------- */
.stack-grid { display: grid; grid-template-columns: 300px 1fr; gap: 18px; align-items: stretch; }
.stack-banner { border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); color: #fff; padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.stack-banner .e { font-size: 44px; }
.stack-banner h3 { font-size: 32px; font-weight: 800; }
.stack-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s; }
.stack-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.stack-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-bottom: 2px solid var(--ink); }
.stack-card span { padding: 10px 12px; font-size: 12px; font-weight: 700; }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: #EAF3EC; margin-top: 60px; border-top: 3px solid var(--ink); }
.footer__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; padding: 46px 20px 30px; max-width: 1280px; margin: 0 auto; }
.footer h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: .08em; margin-bottom: 14px; color: var(--lime); }
.footer li { list-style: none; font-size: 13px; margin-bottom: 9px; opacity: .85; cursor: pointer; }
.footer li:hover { opacity: 1; text-decoration: underline; }
.footer__contact { font-size: 14px; font-weight: 600; line-height: 2; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.15); text-align: center; padding: 18px; font-size: 13px; opacity: .75; }
.store-badges { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.store-badges span { border: 1.5px solid rgba(255,255,255,.4); border-radius: 8px; padding: 6px 10px; font-size: 11px; }

/* ---------- Product modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,35,28,.55); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; }
.modal__close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 999px; border: 2px solid var(--ink); background: var(--lime); font-size: 15px; font-weight: 800; z-index: 3; }
.modal__body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.modal__imgbox { position: relative; aspect-ratio: 1; background: #fff; display: grid; place-items: center; border-bottom: none; border-right: 2px solid var(--ink); }
.modal__imgbox img { width: 82%; height: 82%; object-fit: contain; }
.modal__info { padding: 44px 26px 26px; display: flex; flex-direction: column; gap: 12px; }
.modal__info h2 { font-size: 20px; font-weight: 800; line-height: 1.3; }
.modal__qty { display: flex; align-items: center; gap: 14px; }
.modal__qty button { width: 34px; height: 34px; border-radius: 999px; border: 2px solid var(--ink); background: var(--bg); font-size: 16px; font-weight: 800; }
.modal__qty span { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(20,35,28,.5); z-index: 190; opacity: 0; pointer-events: none; transition: opacity .25s; }
.cart-overlay.show { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; background: var(--bg); border-left: 2px solid var(--ink); box-shadow: var(--shadow); z-index: 195; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s ease; }
.cart-drawer.show { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 2px solid var(--ink); background: var(--card); }
.cart-drawer__head h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.cart-drawer__close { width: 32px; height: 32px; border-radius: 999px; border: 2px solid var(--ink); background: var(--lime); font-weight: 800; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; padding: 40px 10px; font-weight: 700; color: var(--ink-soft); }
.cart-item { display: flex; gap: 10px; align-items: center; background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); padding: 10px; }
.cart-item img { width: 56px; height: 56px; object-fit: contain; background: #fff; border: 2px solid var(--ink); border-radius: 8px; flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cart-item__info h4 { font-size: 12.5px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item__price { font-size: 13px; font-weight: 800; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty button { width: 24px; height: 24px; border-radius: 999px; border: 2px solid var(--ink); background: var(--bg); font-size: 13px; font-weight: 800; line-height: 1; }
.cart-item__qty span { font-size: 13px; font-weight: 700; min-width: 14px; text-align: center; }
.cart-item__remove { align-self: flex-start; width: 26px; height: 26px; border-radius: 999px; border: 2px solid transparent; background: none; font-size: 12px; color: var(--ink-soft); }
.cart-item__remove:hover { border-color: var(--ink); background: var(--bg); }
.cart-drawer__foot { border-top: 2px solid var(--ink); background: var(--card); padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 12px; }
.cart-drawer__subtotal { display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 15px; }
.cart-drawer__subtotal b { font-family: var(--font-display); font-size: 19px; }
.cart-drawer__checkout { border: 2px solid var(--ink); background: var(--green); color: #fff; border-radius: 999px; padding: 13px 0; font-weight: 800; font-size: 14px; }
.cart-drawer__checkout:hover { background: var(--lime); color: var(--ink); }

/* ---------- Toast & bottom nav ---------- */
.toast { position: fixed; bottom: 86px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: var(--lime); font-weight: 700; padding: 12px 22px; border-radius: 999px; border: 2px solid var(--lime); opacity: 0; pointer-events: none; transition: .25s; z-index: 99; font-size: 14px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.bottomnav { position: fixed; bottom: 0; left: 0; right: 0; background: var(--card); border-top: 2px solid var(--ink); display: flex; justify-content: space-around; padding: 8px 0 10px; z-index: 60; }
.bottomnav a { display: flex; flex-direction: column; align-items: center; font-size: 16px; gap: 2px; }
.bottomnav a span:last-child { font-size: 10px; font-weight: 700; }
.bottomnav .on { color: var(--green); }
.bi { font-size: 16px; }

/* ---------- Arabic / RTL ---------- */
html[lang="ar"] body,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] .price__now, html[lang="ar"] .hero__title, html[lang="ar"] .section__title,
html[lang="ar"] .disc-tile .pct {
  font-family: "Cairo", var(--font-body);
}
html[lang="ar"] .hero__title { letter-spacing: 0; line-height: 1.15; }
html[lang="ar"] .section__title { letter-spacing: 0; }
html[dir="rtl"] .ticker__track { animation-direction: reverse; }
html[dir="rtl"] .arrow--l { left: auto; right: -14px; }
html[dir="rtl"] .arrow--r { right: auto; left: -14px; }
html[dir="rtl"] .hero__dots { left: auto; right: 52px; }
html[dir="rtl"] .cart-count { right: auto; left: -2px; }
html[dir="rtl"] .badge { left: auto; right: 8px; }
html[dir="rtl"] .badge--flash { right: auto; left: 8px; }
html[dir="rtl"] .badge--label { left: 8px; right: 8px; }
html[dir="rtl"] .wide-banner::before { right: auto; left: 30px; transform: rotate(8deg); }
html[dir="rtl"] .search__btn { border-left: 0; border-right: 2px solid var(--ink); }
html[dir="rtl"] .modal__imgbox { border-right: none; border-left: 2px solid var(--ink); }
html[dir="rtl"] .modal__close { right: auto; left: 12px; }
html[dir="rtl"] .cart-drawer { right: auto; left: 0; border-left: none; border-right: 2px solid var(--ink); transform: translateX(-100%); }
html[dir="rtl"] .cart-drawer.show { transform: translateX(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .discounts { grid-template-columns: repeat(3, 1fr); }
  .banner-trio { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .hact span { display: none; }
}
@media (max-width: 620px) {
  .header__inner { flex-wrap: wrap; }
  .search { order: 3; min-width: 100%; }
  .hero__slide { padding: 30px 26px; }
  .hero__dots { left: 26px; }
  .hero__side { grid-template-columns: 1fr; }
  .discounts { grid-template-columns: repeat(2, 1fr); }
  .banner-duo { grid-template-columns: 1fr; }
  .row { grid-auto-columns: 170px; }
  .wide-banner { padding: 28px 24px; }
  .modal__body { grid-template-columns: 1fr; }
  .modal__imgbox { border-right: none; border-bottom: 2px solid var(--ink); }
  html[dir="rtl"] .modal__imgbox { border-left: none; }
  .cart-drawer { width: 100%; max-width: 100%; }
}
