/* =========================================================
   ORDER PAGE (light) - depends on app-light.css
   ========================================================= */

.order-shell{ padding: 12px 12px 44px; }

.order-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 12px;
}
.order-title h2{
  margin:0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .2px;
}
.order-title p{
  margin: 3px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.order-search{
  flex: 1;
  max-width: 520px;
  position: relative;
}
.order-search .icon{
  position:absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(15,23,42,.50);
  pointer-events:none;
  font-size: 14px;
}
.order-search input{
  padding-left: 38px;
}

/* Sticky capsule categories header */
.cat-sticky{
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 0 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(247,248,252,.92), rgba(247,248,252,.62));
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.cat-row{
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 2px 4px;
  scrollbar-width: thin;
}
.cat-row::-webkit-scrollbar{ height: 6px; }
.cat-row::-webkit-scrollbar-thumb{ background: rgba(15,23,42,.18); border-radius: 999px; }

.cat-pill{
  flex: 0 0 auto;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.78);
  color: rgba(15,23,42,.86);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.cat-pill:hover{ transform: translateY(-1px); }
.cat-pill.active{
  border-color: rgba(245,158,11,.35);
  background: rgba(245,158,11,.12);
  box-shadow: 0 0 0 4px rgba(245,158,11,.14);
}

/* Layout */
.order-grid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 14px;
  align-items:start;
  margin-top: 12px;
}

/* Category sections */
.cat-section{
  scroll-margin-top: 86px;
  margin-bottom: 18px;
}
.cat-title{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin: 6px 0 10px;
  padding: 12px 12px;
}
.cat-title h5{
  margin:0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .2px;
}
.cat-title span{
  font-size: 12px;
  color: var(--muted);
}

/* Product cards */
.prod-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.prod-card{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  border-radius: 16px;
  padding: 10px;
  display:grid;
  grid-template-columns: 1fr 108px;
  gap: 10px;
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease, border-color .2s ease;
  position: relative;
  min-height: 106px;
  box-shadow: var(--shadow2);
}
.prod-card:hover{ transform: translateY(-1px); filter: brightness(1.01); }
.prod-card .name{
  margin:0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}
.prod-card .desc{
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
  max-height: 2.7em;
  overflow: hidden;
}
.prod-card .meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.prod-card .price{
  font-weight: 950;
  color: rgba(15,23,42,.92);
  font-size: 13px;
}
.prod-card .add{
  border: 0;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 950;
  font-size: 12px;
  cursor: pointer;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: #1b1303;
  box-shadow: 0 10px 24px rgba(217,119,6,.18);
  white-space: nowrap;
}
.prod-card .img{
  width: 108px;
  height: 86px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  overflow:hidden;
  background: rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
}
.prod-card .img img{ width: 100%; height: 100%; object-fit: cover; display:block; }
.prod-card.no-img{ grid-template-columns: 1fr; }
.prod-card .badge-unavailable{
  position:absolute;
  top: 10px;
  right: 10px;
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.22);
  color: rgba(15,23,42,.88);
  font-size: 11px;
  font-weight: 950;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Basket */
/* Basket (fixed-height sticky column; internal scroll) */
/* Desktop: grow naturally, but cap height and enable internal scroll */
@media (min-width: 995px){
  .basket{
    position: sticky;
    top: 86px;
    height: auto;                        /* <-- not fixed */
    max-height: calc(100vh - 86px);      /* <-- cap */
    min-height: 0;
  }

  #side_basket{
    height: auto;                        /* <-- not fixed */
    max-height: calc(100vh - 86px);      /* <-- cap matches container */
    min-height: 0;
    display: block;                      /* <-- IMPORTANT: stop forcing full height */
    color: var(--text);
  }

  /* Your basket layout wrapper should also respect the cap */
  .sb-wrap{
    max-height: calc(100vh - 86px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;                    /* <-- body scroll happens inside */
  }

  .sb-body{
    min-height: 0;
    overflow-y: auto;                    /* <-- scroll items only */
    -webkit-overflow-scrolling: touch;
  }

  .sb-header{ flex: 0 0 auto; }
  .sb-footer{ flex: 0 0 auto; }
}

/* MOBILE BASKET FIX */
@media (max-width: 994px){

  .order-grid .basket{
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
  }

  .basket .sb-wrap{
    width: 100%;
  }

  #side_basket{
    width: 100%;
  }

}

/* best-effort normalize basket output */
#side_basket .card,
#side_basket .basket_card,
#side_basket .panel,
#side_basket .table,
#side_basket .list-group,
#side_basket .list-group-item{
  background: rgba(255,255,255,.78) !important;
}
#side_basket *{ border-color: rgba(15,23,42,.12) !important; }
#side_basket .text-dark{ color: var(--text) !important; }
#side_basket .text-muted{ color: var(--muted) !important; }
#side_basket .btn{ border-radius: 14px !important; font-weight: 950 !important; }
#side_basket .btn-success,
#side_basket .btn-primary{
  border: 0 !important;
  background: linear-gradient(180deg, var(--accent), var(--accent2)) !important;
  color: #1b1303 !important;
}
#side_basket .btn-danger{
  border: 1px solid rgba(239,68,68,.22) !important;
  background: rgba(239,68,68,.10) !important;
  color: rgba(15,23,42,.92) !important;
}
#side_basket hr{ border-color: rgba(15,23,42,.10) !important; }

/* Mobile */
@media (max-width: 991px){
  .order-top{ flex-direction: column; align-items: stretch; }
  .order-search{ max-width: none; }
  .order-grid{ grid-template-columns: 1fr; }

  /* IMPORTANT: cancel desktop sticky sizing on mobile */
  .basket{ position: relative; top:auto; height: auto; min-height: 0; }
  #side_basket{ height: auto; min-height: 0; display: block; }

  .prod-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 767.98px){
  .sb-footer{
    visibility: hidden;
    opacity: 0;
  }

  .sb-mobilebar{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    z-index: 1060;
    transition: transform .18s ease, opacity .18s ease;
  }

  body{ padding-bottom: 74px; }

  /* when basket is in view: show footer + hide mobile bar */
  html.basket-in-view .sb-footer{ display:block; }
  html.basket-in-view .sb-mobilebar{
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }

  html.basket-in-view .sb-footer{
    visibility: visible;
    opacity: 1;
  }
}

/* ===== 4-column grid (responsive) ===== */
.products-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px; /* tighter gap */
}

@media (max-width: 1400px){
  .products-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1100px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px){
  .products-grid{ grid-template-columns: 1fr; }
}

/* ===== Smaller vertical product card ===== */
.product-card{
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
  display: flex;
  flex-direction: column;
  min-height: 300px; /* smaller */
}

.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(15,23,42,.12);
}

.product-img{
  width: 100%;
  aspect-ratio: 4 / 3;              /* square box */
  background: rgba(15,23,42,.04);
  border-bottom: 1px solid rgba(15,23,42,.08);
  overflow: hidden;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px; 
}

.product-img img{
  max-width: 85%;   /* 👈 controls image size */
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-img.no-img{
  background: radial-gradient(520px 180px at 30% 0%, rgba(245,158,11,.16), rgba(255,255,255,.90));
}

.img-fallback{
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(15,23,42,.30);
  font-size: 28px;
}

.product-body{
  padding: 12px 12px 14px; /* tighter padding */
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-name{
  font-size: 14px; /* smaller */
  font-weight: 950;
  color: rgba(15,23,42,.92);
  line-height: 1.2;

  /* keep name tidy */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}

.product-desc{
  font-size: 12px;
  color: rgba(15,23,42,.62);
  line-height: 1.35;
  flex: 1;

  /* clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* smaller card = fewer lines */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}

.product-bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.product-price{
  font-weight: 950;
  font-size: 13px;
  color: rgba(15,23,42,.92);
}

.product-add-btn{
  border: 0;
  border-radius: 999px;
  padding: 8px 12px; /* smaller */
  font-weight: 950;
  font-size: 12px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(217,119,6,.16);
}

.product-add-btn:active{
  transform: translateY(1px);
}

/* Unavailable badge stays compact */
.product-card .badge-unavailable{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(239,68,68,.12);
  border: 1px solid #ef444438;
  color: rgba(15,23,42,.90);
  font-size: 10.5px;
  font-weight: 950;
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Product detail card */

.modal-content {
    background: #f8f9fa;
}

.product-image-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.attribute-card {
    transition: all 0.2s ease;
}

.attribute-card:hover {
    transform: translateY(-2px);
}

.option-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-item:hover {
    background-color: #f1f3f5;
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.btn-success {
    box-shadow: 0 4px 14px rgba(25, 135, 84, 0.4);
}

/* navbar toggle button  */

/* Remove default bootstrap icon */
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
}

/* Custom Button Container */
.custom-toggler {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Hover effect */
.custom-toggler:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Hamburger lines */
.toggler-icon,
.toggler-icon::before,
.toggler-icon::after {
    width: 20px;
    height: 2px;
    background-color: #333;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.toggler-icon::before,
.toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.toggler-icon::before {
    top: -6px;
}

.toggler-icon::after {
    top: 6px;
}

/* Animate to X when open */
.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* .sb-wrap{
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sb-header{ flex: 0 0 auto; }
.sb-body{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sb-footer{ flex: 0 0 auto; } */

/* =========================================================
   AUTH (login/register)
   ========================================================= */

.auth-shell{ padding: 12px 12px 44px; }

.auth-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
  margin: 14px 0;
}

.auth-grid--register{
  grid-template-columns: 420px 1fr;
}

@media (max-width: 991px){
  .auth-grid,
  .auth-grid--register{ grid-template-columns: 1fr; }
}

.auth-card .ph h3{ font-size: 14px; }
.auth-card .ph .hint{ font-size: 12px; }

.auth-field{ margin-bottom: 12px; }
.auth-label{
  display:block;
  font-weight: 950;
  font-size: 12.5px;
  color: var(--text);
  margin: 0 0 6px;
}

.auth-rowline{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 12px;
}

.auth-check{ display:flex; align-items:center; gap:10px; margin:0; user-select:none; }
.auth-check__input{ width: 16px; height: 16px; }
.auth-check__text{ color: var(--muted); font-size: 13px; font-weight: 800; }

.auth-link{
  color: var(--danger);
  font-weight: 950;
  text-decoration: none;
}
.auth-link:hover{ text-decoration: underline; }

.auth-btn-block{
  display:block;
  width:100%;
  text-align:center;
  text-decoration:none;
}

.auth-text{ color: var(--muted); margin: 0 0 10px; }

.auth-perks{
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
}
.auth-perks li{
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: var(--text);
  font-weight: 800;
}
.auth-perks li::before{
  content:"\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position:absolute;
  left:0;
  top:2px;
  color: rgba(16,185,129,.95);
}

.auth-benefits{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 6px;
}
@media (max-width: 575px){
  .auth-benefits{ grid-template-columns: 1fr; }
}

.auth-benefit{
  display:flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.auth-benefit__ico{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.auth-benefit__ico i{ color: var(--accent2); }
.auth-benefit__title{ font-weight: 950; color: var(--text); line-height: 1.1; }
.auth-benefit__sub{ color: var(--muted); font-size: 12.5px; margin-top: 2px; }

/* Register form grid */
.reg-form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reg-form-grid .span-2{ grid-column: 1 / -1; }

@media (max-width: 575px){
  .reg-form-grid{ grid-template-columns: 1fr; }
  .reg-form-grid .span-2{ grid-column: auto; }
}

.reg-block{ margin-top: 10px; }
.small-note{ color: var(--muted); font-size: 12.5px; }

.select-address-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 10px;
}


/* ===== FORCE FULL-WIDTH ON AUTH PAGES (kills Bootstrap container max-width) ===== */
.auth-page .container,
.auth-page .container-sm,
.auth-page .container-md,
.auth-page .container-lg,
.auth-page .container-xl,
.auth-page .container-xxl{
  max-width: none !important;
  width: 100% !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

@media (min-width: 1400px){
  .auth-page .container,
  .auth-page .container-sm,
  .auth-page .container-md,
  .auth-page .container-lg,
  .auth-page .container-xl,
  .auth-page .container-xxl{
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}

/* Ensure auth shell itself doesn’t re-limit width */
.auth-shell{ max-width: none !important; width: 100%; }

/* Registration page proportions: info smaller, form bigger */
@media (min-width: 1200px){
  .auth-grid--register{
    grid-template-columns: 2fr 3fr;;
  }
}

.auth-benefits{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 6px;
}

@media (max-width: 575px){
  .auth-benefits{ grid-template-columns: 1fr; }
}

/* Inputs/selects always occupy full available width */
.auth-card .input,
.auth-card select.input{
  width: 100%;
}

/* =========================
   CONTACT PAGE (theme-aligned)
   ========================= */

.contact-page .container,
.contact-page .container-sm,
.contact-page .container-md,
.contact-page .container-lg,
.contact-page .container-xl,
.contact-page .container-xxl{
  max-width: none !important;
  width: 100% !important;
}

.contact-shell{
  padding-left: 28px !important;
  padding-right: 28px !important;
  padding-top: 12px;
  padding-bottom: 44px;
}

@media (min-width: 1400px){
  .contact-shell{
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}

.contact-grid{
  display: grid;
  grid-template-columns: 2fr 3fr; /* locations | form (60/40-ish) */
  gap: 14px;
  align-items: start;
  margin: 14px 0;
}

@media (max-width: 991px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-card{ width: 100%; }

.table-wrap{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: auto;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}

.contact-table thead th{
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 950;
  background: rgba(255,255,255,.9);
}

.contact-table td{
  color: var(--text);
  font-weight: 750;
  vertical-align: top;
}

.contact-empty{
  color: var(--muted);
  font-weight: 800;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.6);
}

.contact-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form-grid .span-2{ grid-column: 1 / -1; }

@media (max-width: 575px){
  .contact-form-grid{ grid-template-columns: 1fr; }
  .contact-form-grid .span-2{ grid-column: auto; }
}

.contact-textarea{
  min-height: 140px;
  resize: vertical;
}

.contact-btn{
  display: block;
  width: 100%;
  margin-top: 12px;
}


/* =========================
   OS ALERT (success card)
   ========================= */

.os-alert{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow2);
}

.os-alert__icon{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  flex: 0 0 auto;
}

.os-alert__content{ flex: 1 1 auto; min-width: 0; }

.os-alert__title{
  font-weight: 950;
  color: var(--text);
  font-size: 15px;
  margin-top: 1px;
}

.os-alert__text{
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
  margin-top: 6px;
}

.os-alert__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Success variant */
.os-alert--success{
  border-color: rgba(16,185,129,.25);
  background: linear-gradient(180deg, rgba(16,185,129,.10), rgba(255,255,255,.86));
}

.os-alert--success .os-alert__icon{
  border-color: rgba(16,185,129,.22);
  background: rgba(16,185,129,.10);
}

.os-alert--success .os-alert__icon i{
  color: rgba(16,185,129,.95);
}

/* Error variant */
.os-alert--danger{
  border-color: rgba(239,68,68,.26);
  background: linear-gradient(180deg, rgba(239,68,68,.10), rgba(255,255,255,.86));
}

.os-alert--danger .os-alert__icon{
  border-color: rgba(239,68,68,.22);
  background: rgba(239,68,68,.10);
}

.os-alert--danger .os-alert__icon i{
  color: rgba(239,68,68,.95);
}
/* Product add to basket animation  */

.flying-img {
  position: fixed;
  width: 180px;
  z-index: 9999;
  pointer-events: none;
  transition: transform 2s cubic-bezier(0.25, 0.8, 0.25, 1),
            opacity 2s ease;
  border-radius: 10px;
}

/*  missing info card   */

.modern-card {
    max-width: 520px;
    width: 100%;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-4px);
}

.logo-wrap img {
    max-width: 220px;
}

.info-box {
    background: #fff8e1;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #8a6d3b;
}

.modern-btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Prevent basket width collapse */
.basket,
.basket .sb-wrap{
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}