/*Mobile menu */

.bzb-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

/* ✅ Show offcanvas */
.bzb-offcanvas.active {
  left: 0;
}


/*  Close button  */
.bzb-close {
  display: none;
  position: fixed;
  top: 16px;
  left: 310px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  font-size: 18px;
  font-weight: bold;
  color: #721717;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: center;
  line-height: 1;      
  padding: 0;          
}

.bzb-close.active {
  display: flex;
}

.bzb-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}

.bzb-overlay.active {
  display: block;
}


/* =========================================
   OFF CANVAS MENU - COMPLETE REPLACEMENT
========================================= */

/* Main menu wrapper */
.bzb-main-menu{
    padding:0;
}

/* Remove default list styles */
#offcanvas-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* Menu items */
#offcanvas-menu li{
    position:relative;
    margin:0;
    border-bottom:1px solid #ececec;
}

/* Main links */
#offcanvas-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:18px 22px;
    text-decoration:none;
    color:#2d2d2d;
    font-size:13px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:all .2s ease;
    box-sizing:border-box;
}

/* Hover */
#offcanvas-menu a:hover{
    background:#f8f8f8;
    color:#721717;
}

#offcanvas-menu .bzb-account-box a.bzb-account-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:auto;
    padding:6px 2px;
    gap:5px;
    color:#222;
    font-size:9px;
    line-height:1.1;
    font-weight:500;
    letter-spacing:.4px;
    text-transform:uppercase;
    box-sizing:border-box;
}

#offcanvas-menu .bzb-account-box a.bzb-account-item:hover{
    background:transparent;
    color:#721717;
    padding-left:2px;
}

#offcanvas-menu .bzb-account-box .bzb-account-icon{
    width:20px;
    height:20px;
    line-height:20px;
    font-size:16px;
    color:#721717;
}

/* Hide Astra default icons */
#offcanvas-menu .ast-icon.icon-arrow{
    display:none;
}

/* Parent items */
#offcanvas-menu .menu-item-has-children > a{
    padding-right:50px;
}

/* Right arrow */
#offcanvas-menu .menu-item-has-children{
    position:relative;
}

#offcanvas-menu .menu-item-has-children > a{
    position:relative;
}

#offcanvas-menu .menu-item-has-children > a::after{
    content:'+';
    position:absolute;
    right:22px;
    top:18px;
    font-size:18px;
    font-weight:300;
    line-height:1;
    color:#777;
    transition:all .2s ease;
}

/* Expanded state */
#offcanvas-menu .menu-item-has-children.active > a::after{
    content:'−';
}

/* Submenus */
#offcanvas-menu .sub-menu{
    display:none;
    background:#fafafa;
    border-top:1px solid #efefef;
}

/* Expanded submenu */
#offcanvas-menu .menu-item-has-children.active > .sub-menu{
    display:block;
}

/* Submenu items */
#offcanvas-menu .sub-menu li{
    border-bottom:1px solid #f2f2f2;
}

/* Submenu links */
#offcanvas-menu .sub-menu a{
    padding:15px 22px 15px 38px;
    font-size:12px;
    font-weight:400;
    letter-spacing:.8px;
    color:#555;
}

/* =========================================
   SEARCH BAR
========================================= */

.bzb-offcanvas-search{
    padding: 12px 15px;
    border-bottom: 1px solid #c1c1c1;
    background: #f9f9f9;
}


.bzb-offcanvas-search form{
    position:relative;
    margin:0;
}

.bzb-offcanvas-search input.search-field{
    width:100%;
    height:42px;
    border:1px solid #ddd;
    background:#fff;
    padding:0 46px 0 14px;
    font-size:12px;
    box-sizing:border-box;
    color:#333;
}

.bzb-offcanvas-search input.search-field:focus{
    outline:none;
    border-color:#721717;
}

.bzb-offcanvas-search .search-submit{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:1px;
    right:1px;
    width:40px;
    height:40px;
    border:0;
    border-left:1px solid #eee;
    background:#fff;
    cursor:pointer;
}

.bzb-offcanvas-search .search-submit::before{
    content:"\2192";
    font-size:18px;
    color:#721717;
}

/* =========================================
   ACCOUNT ICON MENU
========================================= */

.bzb-account-box{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    padding:12px 6px;
    border-bottom:1px solid #c1c1c1;
    background:#fff;
}

.bzb-account-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:4px 2px;
    text-align:center;
    text-decoration:none;
    color:#222;
    min-width:0;
}

.bzb-account-icon{
    width:20px;
    height:20px;
    line-height:18px;
    font-size:16px;
    font-weight:400;
    color:#721717;
    text-align:center;
}

.bzb-account-item span:last-child{
    font-size:9px;
    line-height:1.1;
    font-weight:500;
    letter-spacing:.4px;
    text-transform:uppercase;
    white-space:nowrap;
}

.bzb-account-item:hover{
    color:#721717;
}

/* =========================================
   OFFCANVAS PANEL
========================================= */

#offcanvas-menu{
    background:#fff;
}

/* Close button 
.bzb-close{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border:none;
    background:#fff;
    font-size:28px;
    color:#333;
    z-index:999;
    cursor:pointer;
} */

/* Language switcher */
#offcanvas-menu .wpml-ls-item a{
    font-size:12px;
}

/* Remove extra spacing */
#offcanvas-menu .menu{
    margin:0;
    padding:0;
}


/* =========================================
PRODUCT FILTER WIDGET
========================================= */    

/* Sidebar wrapper */
.woocommerce-MyAccount-navigation {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.woocommerce-MyAccount-content h4 {
  font-size: 24px;
  font-weight: 400;
}

.ast-modern-woo-account-page h2 {
  font-size: 24px;
}

/* Remove Astra offcanvas padding */
.astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar,
.woocommerce-page .astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar {
  padding: 0 !important;
  background: #fff !important;
}

/* Product Filter */
.woocommerce-js ul.product-categories > li {
  padding: 0 !important;
}

.widget_layered_nav_filters {
  display: none;
}

.bb-custom-active-filters {
  display: block !important;
}

.bb-custom-active-filters .widgettitle {
  font-size: 1em !important;
}

/* Unified Product Filter */
.bb-unified-filter-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background: #fff;
}

.widget_bb_widget_unified_filter {
  background: #fff;
  height: 100%;
  overflow: hidden;
  margin: 0 !important;
}

.widget_bb_widget_unified_filter .bb-filter-scroll-area {
  flex-grow: 1;
  padding: 18px 20px 10px !important;
  overflow-y: auto;
}

.bb-filter-main-title {
  margin: 0 0 18px !important;
  color: #721717;
  font-family: inherit !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.widget_bb_widget_unified_filter .bb-filter-section {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.widget_bb_widget_unified_filter .bb-filter-section.is-collapsed {
  padding-bottom: 0 !important;
}

.bb-filter-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-bottom: 0;
}

.widget_bb_widget_unified_filter .widget-title,
.widget_bb_widget_unified_filter .bb-filter-section-heading .widget-title {
  margin: 0 !important;
  color: #721717 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2.5px !important;
}

.bb-section-toggle,
.bb-category-toggle {
  border: 0 !important;
  background: transparent !important;
  color: #721717 !important;
  padding: 0 !important;
  cursor: pointer;
  font-size: 14px !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.bb-category-list,
.bb-subcategory-list,
.bb-brand-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bb-category-item {
  margin: 0 !important;
  padding: 0 !important;
}

.bb-category-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-radius: 0;
  border-bottom: 1px solid #f0f0f0;
}

.bb-category-item.is-open > .bb-category-main-row,
.bb-category-item.current-cat > .bb-category-main-row,
.bb-category-main-row:hover {
  background: #fafafa;
}

.bb-category-main-link {
  flex: 1;
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #2e2523 !important;
  text-decoration: none !important;
  padding: 12px 6px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bb-category-item.current-cat > .bb-category-main-row .bb-category-main-link,
.bb-category-item.is-open > .bb-category-main-row .bb-category-main-link {
  color: #721717 !important;
  font-weight: 700 !important;
}

.bb-category-icon {
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bb-category-icon-bags {
  background-image: url('../images/filter-icons/bag.svg');
}

.bb-category-icon-shoes {
  background-image: url('../images/filter-icons/shoe.svg');
}

.bb-category-icon-sunglasses {
  background-image: url('../images/filter-icons/sunglasses.svg');
}

.bb-category-icon-accessories {
  background-image: url('../images/filter-icons/accessories.svg');
}

.bb-category-icon-default {
  background-image: url('../images/filter-icons/default.svg');
}

.bb-category-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 6px;
}

.bb-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f2f2f2 !important;
  color: #555 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.bb-category-item.is-open > .bb-category-main-row .bb-filter-count,
.bb-category-item.current-cat > .bb-category-main-row .bb-filter-count {
  background: #721717 !important;
  color: #fff !important;
}

.bb-subcategory-list {
  display: none;
  padding: 0 6px 0 38px !important;
}

.bb-category-item.is-open > .bb-subcategory-list {
  display: block;
}

.bb-subcategory-item {
  margin: 0 !important;
  padding: 0px 0px 0px 16px !important;
  border-bottom: 1px solid #f3f3f3;
}

.bb-subcategory-item a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #2e2523 !important;
  text-decoration: none !important;
  padding: 12px 0 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  border-radius: 0;
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bb-subcategory-item a:hover,
.bb-subcategory-item.current-cat a {
  color: #721717 !important;
  background: transparent !important;
}

.bb-category-toggle {
  width: 18px;
  height: 18px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.bb-category-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #721717;
  border-bottom: 1.5px solid #721717;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.2s ease;
}

.bb-category-item.is-open > .bb-category-main-row .bb-category-chevron {
  transform: rotate(-135deg);
}


.bb-price-values {
  display: flex;
  justify-content: space-between;
  margin: 2px 0 16px;
}

.bb-price-pill {
  background: #f7f7f7 !important;
  color: #2e2523;
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 13px !important;
  line-height: 1 !important;
}

.widget_bb_widget_unified_filter .price_slider_wrapper {
  padding: 0 3px 16px;
}

.widget_bb_widget_unified_filter .widget_price_filter .ui-slider {
  margin: 0 9px 18px !important;
  height: 4px !important;
}

.widget_bb_widget_unified_filter .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #721717 !important;
}

.widget_bb_widget_unified_filter .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #eeeeee !important;
}

.widget_bb_widget_unified_filter .widget_price_filter .ui-slider .ui-slider-handle {
  width: 16px !important;
  height: 16px !important;
  top: -6px !important;
  background-color: #721717 !important;
  border: 0 !important;
  border-radius: 50% !important;
}

.widget_bb_widget_unified_filter .price_label {
  display: block !important;
  color: #2e2523;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.widget_bb_widget_unified_filter .price_label .from,
.widget_bb_widget_unified_filter .price_label .to {
  font-weight: 700;
}

.bb-brand-search-wrap {
  position: relative;
  margin-bottom: 14px;
}

.bb-brand-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c8581;
  font-size: 16px;
  pointer-events: none;
}

.bb-brand-search {
  width: 100%;
  height: 42px !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 0 12px 0 38px !important;
  color: #2e2523 !important;
  font-size: 13px !important;
  line-height: 42px !important;
  box-shadow: none !important;
}

.bb-brand-search:focus {
  border-color: #721717 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(114,23,23,0.08) !important;
}

.bb-brand-list {
  max-height: 245px !important;
  overflow: hidden !important;
  padding-right: 8px !important;
}

.bb-brand-list.is-expanded {
  max-height: 300px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-right: 8px !important;
}

.bb-brand-item {
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.wc-brand-list-layered-nav-product_brand.bb-brand-list label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
  color: #2e2523 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.wc-brand-list-layered-nav-product_brand.bb-brand-list input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  border: 1px solid #c9beba !important;
  border-radius: 3px;
  background: #fff;
  margin: 0 !important;
  display: inline-grid;
  place-content: center;
}

.wc-brand-list-layered-nav-product_brand.bb-brand-list input[type=checkbox]:checked {
  background: #721717;
  border-color: #721717 !important;
}

.wc-brand-list-layered-nav-product_brand.bb-brand-list input[type=checkbox]::before {
  content: '';
  width: 8px;
  height: 8px;
  transform: scale(0);
  background: #fff;
  clip-path: polygon(14% 44%, 0 59%, 39% 100%, 100% 19%, 84% 6%, 37% 68%);
}

.wc-brand-list-layered-nav-product_brand.bb-brand-list input[type=checkbox]:checked::before {
  transform: scale(1);
}

.bb-brand-name {
  flex: 1;
}

.bb-show-more-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 7px 0 12px;
  border: 0 !important;
  background: transparent !important;
  color: #721717 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  cursor: pointer;
  box-shadow: none !important;
}

.bb-show-more-brands.is-expanded span {
  transform: rotate(180deg);
}

.widget_bb_widget_unified_filter .bb-filter-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 10px;
  padding: 12px 20px 14px !important;
  border-top: 1px solid #eeeeee;
  background: #fff !important;
  z-index: 100;
}

.widget_bb_widget_unified_filter .bb-filter-footer .button {
  flex: 1;
  min-height: 44px;
  border-radius: 4px !important;
  border: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px !important;
}

.widget_bb_widget_unified_filter .bb-filter-footer .bb-btn-clear {
  background: #f2f2f2 !important;
  color: #721717 !important;
}

.widget_bb_widget_unified_filter .bb-filter-footer .bb-btn-apply {
  background: #721717 !important;
  color: #fff !important;
}

.bb-btn-icon {
  display: inline-flex;
  margin-right: 6px;
  font-size: 14px;
}

/* Astra close button */
.ast-shop-filter-close {
  top: 18px !important;
  right: 18px !important;
  color: #721717 !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12) !important;
}

/* Collapse filter sections */
.bb-filter-section.is-collapsed > *:not(.bb-filter-section-heading) {
  display: none !important;
}

.bb-filter-section.is-collapsed .bb-section-toggle {
  transform: rotate(180deg);
}


/* Desktop */
@media (min-width: 769px) {
  .astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar,
  .woocommerce-page .astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar {
    width: 380px !important;
    max-width: 380px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .woocommerce .astra-off-canvas-sidebar-wrapper,
  .woocommerce-page .astra-off-canvas-sidebar-wrapper {
    z-index: 600 !important;
  }

  .astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar,
  .woocommerce-page .astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar {
    width: 320px !important;
    max-width: 320px !important;
    padding: 0 !important;
    background: #fff !important;
    z-index: 600 !important;
  }

  .widget_bb_widget_unified_filter .bb-filter-scroll-area {
    padding: 16px 18px 8px !important;
  }

  .bb-filter-main-title {
    font-size: 22px !important;
    margin-bottom: 16px !important;
  }

  .widget_bb_widget_unified_filter .widget-title,
  .widget_bb_widget_unified_filter .bb-filter-section-heading .widget-title {
    font-size: 12px !important;
    letter-spacing: 2.5px !important;
  }

  .bb-category-main-link {
    font-size: 12px !important;
    gap: 9px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
  }

  .bb-category-icon {
    width: 21px;
    min-width: 21px;
    font-size: 14px;
  }

  .bb-filter-count {
    min-width: 26px;
    height: 20px;
    font-size: 11px !important;
  }

  .bb-subcategory-list {
    padding-left: 36px !important;
  }

  .bb-subcategory-item a {
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.7px !important;
    min-height: 38px;
  }

  .wc-brand-list-layered-nav-product_brand.bb-brand-list label {
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  .widget_bb_widget_unified_filter .price_label {
    font-size: 13px !important;
  }

  .widget_bb_widget_unified_filter .bb-filter-footer {
    padding: 12px 18px 14px !important;
  }

  .widget_bb_widget_unified_filter .bb-filter-footer .button {
    min-height: 42px;
    font-size: 13px !important;
  }
}


/* ==========================================================
   Bombazar Add To Cart Modal
   ========================================================== */

.bbz-cart-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bbz-cart-modal {
    position: relative;
    width: 100%;
    max-width: 496px;
    background: #fff;
    border-radius: 8px;
    padding: 27px 37px 32px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
}

.bbz-cart-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 27px;
    line-height: 1;
    color: #111;
    cursor: pointer;
    padding: 0;
}

.bbz-cart-modal-close:hover {
   background-color: transparent !important;
   color: #721717;
}

.bbz-cart-modal-check {
    width: 53px;
    height: 53px;
    border: 1.5px solid #721717;
    border-radius: 50%;
    color: #721717;
    font-size: 34px;
    line-height: 48px;
    text-align: center;
    margin: 0 auto 18px;
    font-weight: 300;
}

.bbz-cart-modal h2 {
    margin: 0 0 22px;
    text-align: center;
    color: #721717;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
}

.bbz-cart-modal-top-summary {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    background: #faf7f4;
    border-radius: 5px;
    padding: 16px 19px;
    margin-bottom: 22px;
}

.bbz-cart-modal-summary-box {
    text-align: center;
}

.bbz-cart-modal-summary-box span {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    color: #222;
    font-weight: 600;
    margin-bottom: 6px;
}

.bbz-cart-modal-summary-box strong {
    display: block;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    color: #721717;
}

.bbz-cart-modal-summary-box:nth-child(3) strong {
    color: #111;
    font-size: 21px;
    font-weight: 600;
}

.bbz-cart-modal-summary-separator {
    width: 1px;
    height: 46px;
    background: #ddd4cf;
}

.bbz-cart-modal-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 22px 0;
}

.bbz-cart-modal-product {
    display: flex;
    align-items: center;
    gap: 21px;
}

.bbz-cart-modal-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;
}

.bbz-cart-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bbz-cart-modal-info {
    flex: 1;
    min-width: 0;
}

.bbz-cart-modal-info h3 {
    margin: 0 0 6px;
    color: #111;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.bbz-cart-modal-savings {
    font-size: 13px;
    line-height: 1.45;
    color: #721717;
    font-weight: 700;
    margin-bottom: 13px;
}

.bbz-cart-modal-savings span {
    color: #666;
    font-weight: 400;
}

.bbz-cart-modal-payment-mode {
    font-size: 13px;
    color: #111;
    margin-bottom: 14px;
    font-weight: 700;
}

.bbz-cart-modal-payment-details {
    max-width: 288px;
    font-size: 13px;
    color: #444;
}

.bbz-cart-modal-payment-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 8px;
    line-height: 1.8;
}

.bbz-cart-modal-payment-row span:first-child {
    color: #444;
}

.bbz-cart-modal-payment-row span:first-child::after {
    content: "";
    display: inline-block;
}

.bbz-cart-modal-payment-row::before {
    content: "";
    order: 2;
    border-bottom: 1px dotted #c9c9c9;
    transform: translateY(-4px);
}

.bbz-cart-modal-payment-row strong {
    order: 3;
    color: #721717;
    font-weight: 700;
    white-space: nowrap;
}

.bbz-cart-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bbz-cart-modal-view,
.bbz-cart-modal-continue {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
    cursor: pointer;
    border-radius: 2px;
}

.bbz-cart-modal-view {
    background: #9d1f27;
    border: 1px solid #9d1f27;
    color: #fff !important;
}

.bbz-cart-modal-view:hover {
    background: #7d1717;
    border-color: #7d1717;
    color: #fff !important;
}

.bbz-cart-modal-continue {
    background: #fff;
    border: 1px solid #9d1f27;
    color: #9d1f27;
}

.bbz-cart-modal-continue:hover {
    background: #9d1f27;
}

body.bbz-cart-modal-open {
    overflow: hidden;
}

/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 768px) {

    .bbz-cart-modal-overlay {
        padding: 14px;
        align-items: center;
    }

    .bbz-cart-modal {
        max-width: 94vw;
        padding: 20px 18px 22px;
        max-height: 88vh;
        overflow-y: auto;
    }

    .bbz-cart-modal-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 30px;
    }

    .bbz-cart-modal-check {
        width: 48px;
        height: 48px;
        line-height: 43px;
        font-size: 31px;
        margin-bottom: 12px;
    }

    .bbz-cart-modal h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .bbz-cart-modal-top-summary {
        grid-template-columns: 1fr 1px 1fr;
        gap: 0;
        padding: 14px 10px;
        margin-bottom: 18px;
    }

    .bbz-cart-modal-summary-separator {
        width: 1px;
        height: 46px;
    }

    .bbz-cart-modal-summary-box span {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .bbz-cart-modal-summary-box strong {
        font-size: 24px;
    }

    .bbz-cart-modal-summary-box:nth-child(3) strong {
        font-size: 21px;
    }

    .bbz-cart-modal-divider {
        margin: 18px 0;
    }

    .bbz-cart-modal-product {
        gap: 12px;
        align-items: flex-start;
    }

    .bbz-cart-modal-image {
        width: 90px;
        height: 90px;
    }

    .bbz-cart-modal-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .bbz-cart-modal-savings {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .bbz-cart-modal-payment-mode {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .bbz-cart-modal-payment-details {
        font-size: 13px;
        max-width: 100%;
    }

    .bbz-cart-modal-payment-row {
        gap: 8px;
        line-height: 1.55;
    }

    .bbz-cart-modal-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bbz-cart-modal-view,
    .bbz-cart-modal-continue {
        height: 46px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {

    .bbz-cart-modal-product {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .bbz-cart-modal-image {
        width: 82px;
        height: 82px;
    }

    .bbz-cart-modal-payment-details {
        width: 100%;
        text-align: left;
    }

    .bbz-cart-modal-summary-box span {
        font-size: 11px;
    }

    .bbz-cart-modal-summary-box strong {
        font-size: 22px;
    }

    .bbz-cart-modal-summary-box:nth-child(3) strong {
        font-size: 19px;
    }
}