footer.footer {
    display: none;
  }
  .ordersummary td {
  border:none!important;
  padding: 5px!important;
  }
  .table-responsive {
      box-shadow: none !important;
  }
  .bottom-total{
  position: fixed;
  width: 100%;
  min-height: 6rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 98;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  flex-wrap: nowrap;
  }
  .bottom-total .total {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  }
  #addToCartBtnTwo {
    background-color: #275ee5 !important;
    padding: 10px 20px;
  }
  #addToCartBtnTwo:hover {
    background-color: #0f4bcc !important;
  }
  .btn.active { 
  z-index: 0 !important; 
  }
.price-display {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.price-title {
  font-size: 16px;
  color: #333;
  margin-right: 5px;
}

.discount-info {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}

.price-note {
  font-size: 12px;
  color: #999;
  margin-top: -10px;
  line-height: 1.5;
  width: 100%;
  flex-basis: 100%;
  order: 999;
}
.order-summary-panel .price-note {
  font-size: 12px;
  padding: 5px !important;
}
.original-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.discount-tag {
  font-size: 12px;
  color: #f70302;
  padding: 0 4px;
  border-radius: 2px;
}
.actual-price {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  display: flex;
  align-items: baseline;
}

.actual-price .currency {
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
  margin-right: 2px;
}

.actual-price .amount {
  font-size: 28px;
  font-weight: 700;
  color: #ff0000;
}
.summary-toggle {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}
.summary-toggle i {
  transition: transform 0.3s;
}
.summary-toggle.active i {
  transform: rotate(180deg);
}
.order-summary-panel {
  position: fixed;
  bottom: 6.25rem;
  right: 25px;
  transform: translateY(100%);
  background: #fff;
  padding: 15px;
  box-shadow: 0px -2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, opacity 0.3s;
  z-index: 2147483647;
  max-height: 60vh;
  overflow-y: auto;
  min-width: 300px;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
}
.order-summary-panel.show {
  transform: translateY(0);
  opacity: 0.9;
  visibility: visible;
}
.load-tip {
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.load-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #165dff;
  background-color: transparent;
  border-top: 3px solid transparent;
  display: inline-block;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
  .order-summary-panel {
    bottom: calc(6.25rem + 74px);
  }
  .bottom-total {
    bottom: 74px;
    padding: 10px;
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
  .price-display {
    width: 100%;
    margin-bottom: 10px;
    justify-content: center;
  }
  .price-actions {
    width: 100%;
    justify-content: center;
  }
  .price-note {
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
  }
  .price-title, .summary-toggle {
    font-size: 14px;
  }
 .discount-tag, .original-price {
    font-size: 14px;
  }
 .actual-price .amount {
    font-size: 20px;
  }
 .actual-price .currency {
    font-size: 14px;
  }
  #addToCartBtnTwo {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (min-width: 768px) {
  .order-summary-panel {
    right: calc(25px);
    max-width: calc(100% - var(--vertical-menu-width) - 25px);
  }
}
.price-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}