/* -------------------------------------------------------------------------
   Organeymart – theme (PC + Mobile)
   Loaded globally so header + footer stay identical across all pages.
   (Home page uses extra "don-*" blocks for the hero slider + product grid.)
------------------------------------------------------------------------- */

:root{
  --don-green:#8bc34a;
  --don-green-d:#7bb33f;
  --don-text:#1b1b1b;
  --don-muted:#6b7280;
  --don-border:#e5e7eb;
  --don-orange:#f57c00;
  --don-bg:#ffffff;
  --don-card:#ffffff;
}

body.don-home{
  background: var(--don-bg);
}

/* Make home header not inherit the red sticky header styling */
body.don-home .site-header,
body.don-home .infobar,
body.don-home .navrow,
body.don-home .topbar,
body.don-home .floating-cart,
body.don-home .bottom-nav{
  display:none !important;
}

/* Container a bit tighter like screenshot */
body.don-home .container{
  width: min(1240px, calc(100% - 28px));
}

/* -----------------------------
   Top bar
------------------------------ */

.don-topbar{
  background: var(--don-green);
  color:#fff;
}

.don-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 6px 0;
  font-weight:800;
  font-size: 13px;
}

.don-topbar-left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.don-topbar-phone{
  display:flex;
  align-items:center;
  gap: 6px;
  color:#fff;
  text-decoration:none;
}

.don-sep{ opacity:.8; }

.don-topbar-right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.don-social{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
}
.don-social svg{ width: 14px; height: 14px; fill:#fff; }

/* -----------------------------
   Header
------------------------------ */

/* Sticky wrapper so header/topbar stay fixed on scroll without overlapping content */
.don-sticky{
  position: sticky;
  top: 0;
  z-index: 999;
}

.don-header{
  background:#fff;
}

.don-header-inner{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 12px 0;
}

.don-hamburger{
  display:none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--don-border);
  background:#fff;
  cursor:pointer;
  padding: 10px;
}

.don-hamburger span{
  display:block;
  background:#fff;
  height: 2px;
  background: var(--don-text);
  border-radius: 999px;
}

.don-hamburger span + span{ margin-top: 6px; }

.don-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}

.don-brand img{
  height: 38px;
  width:auto;
  display:block;
  background:#fff;
}

.don-brand-fallback{
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 1000;
  color: var(--don-green);
}

.don-nav{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-left: 12px;
  flex: 1 1 auto;
}

.don-nav-link{
  font-weight: 900;
  font-size: 14px;
  color: #111;
  text-decoration:none;
  white-space:nowrap;
}

.don-nav-link:hover{ color: var(--don-green-d); }

.don-search{
  flex: 0 1 420px;
  display:flex;
  align-items:center;
  gap: 8px;
  background: var(--don-green);
  border-radius: 4px;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.05);
}

.don-search-ico svg{ width: 16px; height:16px; fill:#fff; opacity:.95; }

.don-search input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color:#fff;
  font-weight: 800;
  font-size: 13px;
}

.don-search input::placeholder{ color: rgba(255,255,255,.85); }

.don-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-left: auto;
}

.don-currency{
  font-weight: 1000;
  color:#111;
}

.don-cart{
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  border: 1px solid var(--don-border);
  background:#fff;
}

.don-cart svg{ width: 20px; height:20px; fill:#111; }

.don-cart-badge{
  position:absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background:#e11d48;
  color:#fff;
  font-size: 11px;
  font-weight: 1000;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* -----------------------------
   Mobile drawer
------------------------------ */

.don-drawer-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 100;
  display:none;
}

.don-drawer{
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 86vw);
  height: 100vh;
  background:#fff;
  z-index: 101;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  transform: translateX(-102%);
  transition: transform .18s ease;
}

body.drawer-open .don-drawer-backdrop{ display:block;
  background:#fff; }
body.drawer-open .don-drawer{ transform: translateX(0); }

.don-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px;
  border-bottom: 1px solid var(--don-border);
}

.don-drawer-title{ font-weight: 1000; }
.don-drawer-close{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--don-border);
  background:#fff;
  cursor:pointer;
  font-size: 16px;
}

.don-drawer-body{ padding: 10px; }

.don-drawer-link{
  display:block;
  background:#fff;
  padding: 12px 12px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration:none;
  color:#111;
}

.don-drawer-link:hover{ background: #f3f4f6; }

/* -----------------------------
   Hero
------------------------------ */

.don-hero{
  padding: 10px 0 4px;
}

.don-hero-grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.don-slider{
  position: relative;
  border-radius: 14px;
  overflow:hidden;
  background:#e5e7eb;
  height: 320px;
  min-height: 320px;
}

@media (min-width: 768px){
  .don-slider{ height: 360px; min-height: 360px; }
}


.don-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition: opacity .35s ease;
}

.don-slide.is-active{
  opacity:1;
  pointer-events:auto;
}

.don-slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  background: transparent;
}


.don-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.65);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.don-arrow svg{ width: 18px; height: 18px; fill:#111; }
.don-arrow.prev{ left: 10px; }
.don-arrow.next{ right: 10px; }

.don-dots{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display:flex;
  justify-content:center;
  gap: 6px;
}

.don-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.25);
  cursor:pointer;
}

.don-dot.is-active{ background: rgba(0,0,0,.55); }

.don-hero-ad{
  border-radius: 14px;
  overflow:hidden;
  background:#e5e7eb;
  height: 320px;
  min-height: 320px;
}

.don-hero-ad img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  background:#fff;
}

/* -----------------------------
   Popular products
------------------------------ */

.don-section-title{
  text-align:center;
  font-weight: 1000;
  color: var(--don-green);
  font-size: 20px;
  margin: 18px 0 14px;
}

.don-products-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 10px;
}

.don-product-card{
  background: var(--don-card);
  border: 1px solid var(--don-border);
  border-radius: 4px;
  overflow:hidden;
}

.don-product-media img{
  width:100%;
  height: var(--prod-img-h-sm);
  object-fit: contain;
  display:block;
  background:#fff;
}

.don-product-body{
  padding: 12px;
  text-align:center;
}

.don-product-title{
  font-weight: 900;
  font-size: 14px;
  line-height: 1.35;
  min-height: 40px;
}

.don-product-price{
  font-weight: 1000;
  margin-top: 8px;
  margin-bottom: 10px;
}

.don-product-old{
  margin-left: 8px;
  color: var(--don-muted);
  font-weight: 900;
  font-size: 13px;
  text-decoration: line-through;
}

.don-product-actions{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.don-btn{
  width:100%;
  border:none;
  border-radius: 4px;
  height: 38px;
  font-weight: 1000;
  cursor:pointer;
}

.don-btn-cart{
  background: var(--don-green);
  color:#fff;
}

.don-btn-order{
  background: var(--don-orange);
  color:#fff;
}

.don-product-card.in-cart .don-btn-cart{
  filter: brightness(.95);
}

/* -----------------------------
   Footer (with wave)
------------------------------ */

.don-footer{
  position:relative;
  margin-top: 26px;
  background: var(--don-green);
  color:#fff;
  padding-top: 90px;
}

.don-footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top: -1px;
  height: 120px;
  background-repeat:no-repeat;
  background-size: cover;
  background-position: center top;
  /* light wave */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23cfeab0' d='M0%2C96L60%2C80C120%2C64%2C240%2C32%2C360%2C37.3C480%2C43%2C600%2C85%2C720%2C96C840%2C107%2C960%2C85%2C1080%2C80C1200%2C75%2C1320%2C85%2C1380%2C90.7L1440%2C96L1440%2C0L1380%2C0C1320%2C0%2C1200%2C0%2C1080%2C0C960%2C0%2C840%2C0%2C720%2C0C600%2C0%2C480%2C0%2C360%2C0C240%2C0%2C120%2C0%2C60%2C0L0%2C0Z'/%3E%3C/svg%3E");
}

.don-footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.don-footer-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 1000;
  font-size: 34px;
  line-height: 1;
}

.don-footer-brand{ font-size: 34px; }

.don-footer-about{
  margin-top: 14px;
  line-height: 1.7;
  font-weight: 800;
  opacity: .95;
}

.don-footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 6px;
  background:#fff;
  color: var(--don-green);
  font-weight: 1000;
  text-decoration:none;
  border: 2px solid rgba(255,255,255,.55);
}

.don-footer-title{
  margin:0 0 12px;
  font-size: 28px;
  font-weight: 1000;
}

.don-footer-contact{
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-weight: 900;
}

.don-footer-line{
  display:flex;
  align-items:center;
  gap: 10px;
}

.don-footer-line a{ color:#fff; text-decoration:none; }
.don-footer-head{ margin-top: 10px; font-weight: 1000; font-size: 22px; }

.don-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.25);
  padding: 12px 0;
}

.don-footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  font-weight: 900;
  font-size: 12px;
}

.don-footer-links a{ color:#fff; text-decoration:none; }
.don-footer-links span{ opacity:.8; margin: 0 8px; }

/* -----------------------------
   Floating buttons
------------------------------ */

.don-float-wa{
  position: fixed;
  left: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #25D366;
  display:grid;
  place-items:center;
  z-index: 120;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.don-float-wa svg{ width: 26px; height: 26px; fill:#fff; }

.don-float-top{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #111;
  border: none;
  display:none;
  place-items:center;
  z-index: 120;
  cursor:pointer;
}

.don-float-top svg{ width: 22px; height: 22px; fill:#fff; }

.don-float-top.is-show{ display:grid; }

/* -----------------------------
   AJAX mini cart (floating bag + drawer)
------------------------------ */

.don-cart-fab{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid #eaeaea;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
}

.don-cart-fab svg{ width: 26px; height: 26px; }

.don-cart-badge{
  position:absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 12px;
  border: 2px solid #fff;
}

.don-mini-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}

.don-mini-overlay.is-open{ opacity: 1; pointer-events: auto; }

.don-mini-drawer{
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;
  z-index: 9999;
  transform: translateX(110%);
  transition: transform .18s ease;
  box-shadow: -18px 0 40px rgba(0,0,0,.18);
  display:flex;
  flex-direction: column;
}

.don-mini-drawer.is-open{ transform: translateX(0); }

.don-mini-topbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.don-mini-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  background:#fff;
  cursor:pointer;
  font-size: 18px;
  font-weight: 900;
}

.don-mini-body{
  padding: 14px;
  overflow:auto;
  flex: 1;
}

.don-mini-head{ margin-bottom: 10px; }
.don-mini-title{ font-weight: 900; font-size: 18px; }
.don-mini-sub{ color: #666; font-weight: 800; margin-top: 2px; }

.don-mini-empty{
  padding: 14px;
  border: 1px dashed #e8e8e8;
  border-radius: 14px;
  font-weight: 800;
  color: #666;
}

.don-mini-list{ display:flex; flex-direction: column; gap: 10px; }

.don-mini-item{
  display:grid;
  grid-template-columns: 52px 1fr 34px;
  gap: 10px;
  align-items:center;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 10px;
  background:#fff;
}

.don-mini-img img{
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background:#fafafa;
  display:block;
}

.don-mini-name{
  display:block;
  font-weight: 900;
  color: inherit;
  text-decoration:none;
  margin-bottom: 6px;
  line-height: 1.2;
  font-size: 14px;
}

.don-mini-meta{
  display:flex;
  gap: 8px;
  align-items:center;
  font-weight: 900;
  color:#111;
  flex-wrap: wrap;
}

.don-mini-qty{
  width: 66px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  padding: 0 10px;
  font-weight: 900;
}

.don-mini-remove{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid #eee;
  background:#fff;
  cursor:pointer;
  font-weight: 900;
}

.don-mini-footer{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.don-mini-total{
  display:flex;
  align-items:center;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 10px;
}

.don-mini-actions{ display:flex; gap: 10px; }
.don-mini-actions .don-btn{ flex: 1; justify-content:center; }

.don-toast{
  position: fixed;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.don-toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* -----------------------------
   Responsive
------------------------------ */

@media (max-width: 980px){
  .don-nav{ display:none; }
  .don-search{ display:none; }
  .don-hamburger{ display:block;
  background:#fff; }
  .don-header-inner{ gap: 12px; }
  /* Match mobile screenshot: show only one phone on the top bar */
  .don-topbar-left .don-sep,
  .don-topbar-left a:nth-of-type(2){
    display:none;
  }
  .don-hero-grid{ grid-template-columns: 1fr; }
  .don-slider{ height: 240px; min-height: 240px; }
  .don-hero-ad{ height: 240px; min-height: 240px; }
  .don-products-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .don-product-media img{ height: 200px; }
  .don-footer-inner{ grid-template-columns: 1fr; text-align:center; }
  .don-footer-logo{ justify-content:center; }
  .don-footer-line{ justify-content:center; }
  .don-footer-bottom-inner{ flex-direction:column; }
  .don-topbar-inner{ font-size: 12px; }
}

/* =====================================================================
   Organeymart – Product page (matches provided screenshot)
===================================================================== */

body.om-product{
  background:#fff;
}

.om-product-page .container{
  width: min(1240px, calc(100% - 28px));
}

.om-product-wrap{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items:start;
  padding-top: 10px;
}

.om-image-box{
  position:relative;
  border: 0;
  background:#fff;
}

.om-image-box img{
  width:100%;
  display:block;
  background:#fff;
}

.om-zoom-btn{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background:#fff;
  border: 1px solid #d1d5db;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.om-zoom-btn svg{ width: 14px; height: 14px; fill:#111; }

.om-thumbs{
  display:flex;
  gap: 12px;
  margin-top: 10px;
}

.om-thumb{
  width: 86px;
  height: 70px;
  border: 1px solid #d1d5db;
  background:#fff;
  padding: 0;
  cursor:pointer;
  overflow:hidden;
}

.om-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#fff;
}

.om-thumb.is-active{
  border-color:#111;
}

.om-prod-title{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.om-prod-price{
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.om-prod-availability{
  margin-top: 10px;
  font-size: 12px;
  color: var(--don-muted);
}

.om-buy-row{
  margin-top: 12px;
  display:flex;
  gap: 12px;
  align-items:center;
}

.om-qty{
  width: 44px;
  height: 32px;
  border: 1px solid var(--don-green);
  outline: none;
  padding: 0 8px;
  font-weight: 700;
  background:#fff;
}

.om-buy-row .don-btn{
  width: auto;
  height: 32px;
  border-radius: 3px;
  padding: 0 14px;
  flex: 0 0 auto;
}

/* Tabs (Description) */
.om-tabs{
  margin-top: 22px;
}

.om-tabbar{
  border-bottom: 1px solid #d1d5db;
  height: 34px;
}

.om-tab{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #111;
  border-bottom-color:#fff;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  background:#fff;
}

.om-tab-content{
  padding: 14px 0 6px;
  font-size: 13px;
  line-height: 1.8;
  color:#111;
}

.om-related-title{
  margin: 18px 0 12px;
  color: var(--don-green);
  font-weight: 700;
  font-size: 14px;
}

.om-related-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.om-rel-card{
  border: 1px solid #e5e7eb;
  background:#fff;
}

.om-rel-card img{
  width:100%;
  height: 190px;
  object-fit:cover;
  display:block;
  background:#fff;
}

.om-rel-name{
  padding: 10px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 980px){
  .om-product-wrap{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .om-buy-row{
    flex-wrap:wrap;
  }
  .om-buy-row .don-btn{
    flex: 1 1 150px;
  }
}


/* =====================================================================
   Organeymart – Checkout page (matches provided screenshot)
===================================================================== */

body.om-checkout{
  background:#fff;
}

.om-checkout-page .container{
  width: min(1240px, calc(100% - 28px));
}

.om-checkout-wrap{
  display:grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 46px;
  align-items:start;
  padding-top: 16px;
}

.om-checkout-title{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

.om-field{
  width:100%;
  height: 38px;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  outline:none;
  font-size: 13px;
  margin-bottom: 12px;
  background:#fff;
}


.om-section-title{
  margin: 18px 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.om-pay-box{
  border: 1px solid #d1d5db;
  background:#fff;
}
.om-section{
  margin-top: 18px;
}

.om-section h3{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.om-box{
  border: 1px solid #d1d5db;
  background:#fff;
}

.om-radio-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

.om-radio-row + .om-radio-row{
  border-top: 1px solid #d1d5db;
}

.om-radio-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.om-radio-left span{
  white-space:nowrap;
}

.om-radio-amount{
  white-space:nowrap;
  font-weight: 700;
}

.om-pay-head{
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.om-pay-desc{
  border-top: 1px solid #d1d5db;
  padding: 10px 12px;
  font-size: 12px;
  color: #374151;
}

.om-confirm-btn{
  margin-top: 16px;
  width:100%;
  height: 40px;
  border: none;
  background: var(--don-green);
  color:#fff;
  font-weight: 800;
  border-radius: 2px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
}

.om-confirm-btn svg{ width: 14px; height: 14px; fill:#fff; }

.om-checkout-right{
  border-left: 1px solid #d1d5db;
  padding-left: 26px;
}

.om-summary-item{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.om-summary-img{
  position:relative;
  width: 44px;
  height: 44px;
  border: 1px solid #d1d5db;
  background:#fff;
  overflow:hidden;
}

.om-summary-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#fff;
}

.om-summary-qty{
  position:absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--don-green);
  color:#fff;
  font-size: 11px;
  font-weight: 900;
  display:grid;
  place-items:center;
}

.om-summary-name{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
}

.om-summary-price{
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  white-space:nowrap;
}

.om-summary-lines{
  margin-top: 18px;
}

.om-summary-line{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  font-size: 12px;
  margin-top: 10px;
}

.om-summary-line span:last-child{
  text-align:right;
  white-space:nowrap;
}

.om-summary-total{
  font-weight: 800;
  font-size: 13px;
  margin-top: 14px;
}

/* Hide legacy bottom nav on checkout page */
body.om-checkout .bottom-nav,
body.om-checkout .bottom-menu,
body.om-checkout .mobile-bottom-nav,
body.om-checkout .bottom-navigation,
body.om-checkout .app-bottom-nav,
body.om-checkout .footer-bottom-nav,
body.om-checkout nav.bottom-nav,
body.om-checkout .tabbar,
body.om-checkout .bottom-tabbar,
body.om-checkout .bottomBar{
  display:none !important;
  visibility:hidden !important;
  height:0 !important;
  overflow:hidden !important;
}

@media (max-width: 980px){
  .om-checkout-wrap{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .om-checkout-right{
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #d1d5db;
    padding-top: 18px;
  }
}



@media (min-width: 992px){
  .don-product-media img{height: var(--prod-img-h);}
}
