/* Cart Page Styles */

/* Breadcrumb Section */
.ecomm-cart-breadcrumb-section {
  padding: 17px 0;
  margin-bottom: 25px;
}

.ecomm-cart-breadcrumb-nav {
  font-size: 14px;
  color: #6c757d;
}

.ecomm-cart-breadcrumb-link {
  color: #333333;
  text-decoration: none;
}

.ecomm-cart-breadcrumb-link:hover {
  color: #0E5AA7;
}

.ecomm-cart-breadcrumb-separator {
  margin: 0 8px;
  color: #6c757d;
}

.ecomm-cart-breadcrumb-current {
  color: #495057;
  font-weight: 500;
}
.ecomm-cart-empty{
  border-radius: 5px;
  background: rgba(75, 174, 79, .1);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
}
.ecomm-cart-empty-icon{
  width: 120px;
  margin-bottom: 20px;
}
.ecomm-cart-empty-icon img{
  width: 100%;
  display: block;
}
.ecomm-cart-empty h5{
  font-size: 18px;
  color: #333333;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 500;
}
.ecomm-cart-empty p{
  font-size: 13px;
  color: #333333;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.ecomm-cart-empty-link{
  background: #0E5AA7;
  color: #ffffff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
.ecomm-cart-empty-link:hover{
  background: #EE2527;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 37, 39, 0.3);
}
.ecomm-cart-savedlater{
  padding: 30px;
  padding-bottom: 0;
  border-radius: 10px;
  border: 1px solid #ECECEC;
}
.ecomm-cart-savedlater .ecommm-sa-header{
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-cart-savedlater .table{
  margin-bottom: 0;
}
.ecomm-cart-savedlater .ecomm-cart-item:last-of-type{
  border-bottom: 0;
}

/* Cart Header */
.ecomm-cart-header {
  margin-bottom: 25px;
}

.ecomm-cart-title {
  font-size: 26px;
  font-weight: bold;
  color: #0E5AA7;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Cart Section */
.ecomm-cart-section {
  background: #ffffff;
}
.ecomm-cart-notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E7EFF6;
  padding: 4px 14px;
  padding-right: 30px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
}

.ecomm-cart-notification-icon {
  margin-right: 10px;
}

.ecomm-cart-notification-text {
  flex: 1;
  font-size: 14px;
  color: #333333;
}
.ecomm-cart-notification-text span{
  font-weight: 500;
}

.ecomm-cart-notification-close {
  background: none;
  border: none;
  color: #0E5AA7;
  cursor: pointer;
  padding: 0;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.ecomm-cart-notification-close svg{
  width: 100%;
  height: 100%;
  display: block;
}

.ecomm-cart-notification-close:hover {
  background: rgba(25, 118, 210, 0.1);
  border-radius: 50%;
}

/* Cart Items */
.ecomm-cart-items-header th{
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-cart-items-header th:first-child{
  padding-left: 0;
}
.ecomm-cart-itemswrap .ecomm-cart-toggle-btn{
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(14, 90, 167,0.1);
  padding: 8px 14px;
  font-size: 14px;
  color: #0E5AA7;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 100%;
  border-radius: 5px;
}
.ecomm-cart-itemswrap .ecomm-cart-toggle-btn svg{
  width: 16px;
  transition: 0.5s all;
}
.ecomm-cart-itemswrap .ecomm-cart-toggle-btn.show svg{
  rotate: 180deg;
}

.ecomm-cart-item {
  vertical-align: middle;
  border-bottom: 1px solid #ECECEC;
}

.ecomm-cart-item td{
  padding: 30px 10px;
}
.ecomm-cart-item td:first-child{
  padding-left: 0;
}

/* Item Image */
.ecomm-cart-item-image {
  width: 126px;
  height: 126px;
  flex: 0 0 auto;
  background: #F6F5F8;
  border-radius: 10px;
  margin-right: 30px;
}

.ecomm-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Item Details */
.ecomm-cart-item-details-wrap{
  display: flex;
  align-items: center;
}

.ecomm-cart-item-name {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ecomm-cart-item-variant {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 5px 0;
}

.ecomm-cart-item-delivery {
  font-size: 13px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1;
}
.ecomm-cart-item-delivery span{
  font-weight: 600;
}

.ecomm-cart-item-availability {
  font-size: 13px;
  color: #333333;
}
.ecomm-cart-item-availability span{
  font-weight: 600;
}
.ecomm-cart-item-availability svg{
  width: 14px;
  height: 14px;
}
.whatsapp-warning{
  font-size: 12px;
  color: #f59e00;
  margin-top: 2px;
}

.ecomm-cart-item-price {
  text-align: center;
  min-width: 80px;
}

.ecomm-cart-price-label {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
}
.ecomm-cart-subtl{
  font-size: 13px;
  color: #333333;
  line-height: 1;
}

.ecomm-cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80px;
  border: 1px solid #E7E7E7;
  border-radius: 5px;
  padding: 7px 6px;
}

.ecomm-cart-qty-btn {
  width: 16px;
  height: 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 2px;
}

.ecomm-cart-qty-number {
  font-size: 13px;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
  color: #000;
}

.ecomm-cart-item-total {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
}

.ecomm-cart-total-label {
  font-size: 14px;
  color: #495057;
  font-weight: 600;
}

.ecomm-cart-item-remove {
  text-align: center;
}

.ecomm-cart-remove-btn {
  width: 12px;
  height: 12px;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0 auto;
}

.ecomm-cart-remove-btn:hover svg path {
  fill: #0056b3;
}

.ecomm-cart-totals {
  border-radius: 12px;
  padding: 35px 30px 20px;
  position: sticky;
  top: 20px;
  border: 1px solid #ECECEC;
}
.ecomm-cart-totals .ecomm-summary-total{
  padding-top: 0;
}

.ecomm-cart-totals-title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.ecomm-cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ecomm-cart-totals-label {
  font-size: 18px;
  color: #333333;
  font-weight: 500;
}

.ecomm-cart-totals-value {
  font-size: 18px;
  color: #333333;
  font-weight: 500;
}

.ecomm-cart-totals-note {
  margin-bottom: 18px;
}

.ecomm-cart-totals-note p {
  font-size: 15px;
  color: #333333;
  letter-spacing: 0.02em;
}

.ecomm-cart-total-btn-wrap{
  margin-bottom: 20px;
}
.ecomm-cart-checkout-btn {
  width: 100%;
  background: #0E5AA7;
  color: #ffffff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
.ecomm-cart-checkout-btn sub{
  all: unset;
}
.ecomm-cart-checkout-btn:hover {
  background: #EE2527;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 37, 39, 0.3);
}
.ecomm-cart-whatsapp-btn {
  width: 100%;
  background: #4CAF50;
  color: #ffffff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
.ecomm-cart-whatsapp-btn sub{
  all: unset;
}
.ecomm-cart-whatsapp-btn svg{
  width: 18px;
  margin-right: 8px;
}
.ecomm-cart-whatsapp-btn:hover {
  background: #4CAF50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, .3);
}


.ecomm-cart-continue-shopping {
  text-align: center;
}

.ecomm-cart-continue-link {
  color: #0E5AA7;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s ease;
}
.ecomm-cart-continue-link:hover {
  color: #0E5AA7;
  gap: 10px;
}

.ecomm-cart-checkout-mob-bottom {
  padding: 16px 0;
  position: sticky;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.08);
  display: none;
}
.ecomm-cart-checkout-mobwrap{
  display: flex;
  flex-direction: column;
}
.ecomm-cart-checkout-mobwrap.inline{
  flex-direction: row;
  align-items: center;
}
.ecomm-cart-chkmob-price{
  font-size: 14px;
  color: #333333;
  margin-bottom: 5px;
}
.ecomm-cart-chkmob-price span{
  display: block;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 600;
}
.ecomm-cart-checkout-mobwrap.inline .ecomm-cart-chkmob-price{
  flex: 0 0 auto;
  margin-right: 45px;
}
.ecomm-cart-chkmob-btns{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.mobshow{
  display: none !important;
}
.ecomm-order-complete-btns{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.ecomm-order-complete-btns .ecomm-submit-btn-stroke{
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.1em;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: 0.5s all;
  background: #fff;
  color: #0E5AA7;
  border: 1px solid #0E5AA7;
}
.ecomm-order-complete-btns .ecomm-submit-btn-stroke:hover {
  background: #0E5AA7;
  color: #fff;
  border-color: #0E5AA7;
}
.ecomm-order-complete-btns .ecomm-cart-continue-link{
  padding: 2px;
}
.ecomm-order-complete-btns .ecomm-cart-continue-link:hover{
  color: #EE2527;
}
.ecomm-order-complete-btns .ecomm-cart-continue-link:hover svg path{
  fill: #EE2527;
}
.ecomm-order-complete-btns .ecomm-submit-btn {
  font-size: 13px;
}
.additionalBox{
  display: none;
}
.additional-info-btn{
  font-size: 14px;
  color: #333333;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: none;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.mob-additional-info{
  display: none;
}

/* Create account */
.ecomm-account-section{
  padding: 60px 0;
}
.ecomm-create-account-box{
  max-width: 470px;
  margin: 0 auto;
  padding: 40px 30px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
}
.ecomm-create-account-box h4{
  font-size: 20px;
  color: #0E5AA7;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0.05em;
}
.ecomm-create-account-box p{
  font-size: 14px;
  color: #333333;
  margin-bottom: 0;
  text-align: center;
}
.ecomm-create-account-box p span{
  font-weight: 500;
}
.ecomm-ca-wrap{
  margin-top: 15px;
}
.ecomm-ca-wrap .ecomm-ca-label{
  text-align: right;
}
.ecomm-ca-wrap .ecomm-ca-label a{
  font-size: 14px;
  display: inline-block;
  color: #333333;
  text-decoration: underline;
  margin-bottom: 10px;
}
.ecomm-form-input{
  margin-bottom: 20px;
}
.ecomm-form-submitbtn-box{
  margin-top: 30px;
}
.ecomm-form-input .form-control{
  height: 40px;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 10px 14px;
  box-shadow: none;
}
.ecomm-form-input .iti {
  display: block;
}
.ecomm-form-input .iti--separate-dial-code .iti__selected-flag{
  background-color: transparent;
  border-right: 1px solid #E3E3E3;
  width: 80px;
}
.ecomm-form-input .iti--separate-dial-code .iti__selected-dial-code{
  font-size: 12px;
  color: #333333;
  letter-spacing: 0.5px;
}
.ecomm-form-input .iti__selected-flag .iti__flag{
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.ecomm-form-input .iti__arrow{
  width: 8px;
  height: 8px;
  border: 1px solid #333333;
  rotate: 45deg;
  border-top: 0;
  border-left: 0;
  margin-top: -5px;
}
.ecomm-ca-submit-btn{
  background: #0E5AA7;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  border-radius: 30px;
  border: 0;
  transition: 0.3s all;
}
.ecomm-ca-submit-btn:hover{
  background: #0E5AA7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.ecomm-codeinputs{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 30px;
}
.ecomm-codeinputs .form-control{
  width: 57px;
  height: 50px;
  text-align: center;
  color: #0E5AA7;
  font-size: 20px;
  font-weight: 500;
  padding: 5px;
  box-shadow: none;
  border: 1px solid #E3E3E3;
}
.ecomm-codeinputs .form-control.input-valid,
.ecomm-codeinputs .form-control:focus{
  border-color: #0E5AA7;
}
.ecomm-signuplink{
  margin-top: 20px;
  text-align: center;
}
.ecomm-signuplink p{
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.ecomm-signuplink p + .back-link{
  margin-top: 8px;
}
.ecomm-signuplink .back-link{
  font-size: 12px;
  color: #0E5AA7;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.5s all;
}
.ecomm-signuplink .back-link:hover{
  gap: 12px;
}
.ecomm-signuplink p + p{
  margin-top: 10px;
}
.ecomm-signuplink p a{
  text-decoration: underline;
  color: #0E5AA7;
  font-weight: 600;
}
.ecomm-signuplink-log{
  margin-top: 20px;
}
.ecomm-signuplink-log p{
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.ecomm-signuplink-log p a{
  text-decoration: underline;
  color: #0E5AA7;
  font-weight: 600;
}
.ecomm-inline-input{
  display: flex;
  justify-content: space-between;
}
.ecomm-form-group .checkbox{
  position: relative;
  display: inline-flex;
}
.ecomm-form-group .checkbox input{
  position: absolute;
  left: 0;
  display: none;
}
.ecomm-form-group .checkbox span {
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding-left: 24px;
  position: relative;
}
.ecomm-form-group .checkbox span::before {
  content: '';
  border-radius: 3px;
  border: 1px solid #0E5AA7;
  width: 18px;
  height: 18px;
  transition: 0.5s all;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.ecomm-form-group .checkbox span::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  border: 2px solid #fff;
  width: 10px;
  height: 6px;
  border-top: 0;
  border-right: 0;
  rotate: -45deg;
  opacity: 0;
  transition: 0.5s all;
}
.ecomm-form-group .checkbox input:checked ~ span::before{
  background: #0E5AA7;
}
.ecomm-form-group .checkbox input:checked ~ span::after {
  opacity: 1;
}
.ecomm-form-group .ecomm-ftpassword {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ecomm-form-group .ecomm-ftpassword span{
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 90, 167,.1);
  font-size: 12px;
  color: #0E5AA7;
  line-height: 1;
  border-radius: 50%;
  text-decoration: none;
  margin-right: 8px;
  font-weight: 500;
}
.ecomm-form-group .ecomm-ftpassword a{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: underline;
}
.ecomm-form-group .ecomm-ftpassword a:hover{
  color: #0E5AA7;
}
.password-input{
  position: relative;
}
.viewpass{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.viewpass svg{
  width: 16px;
}

/* Checkout */
.ecomm-user-numbox{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}
.ecomm-user-numbox p{
  font-size: 14px;
  color: #333333;
}
.ecomm-user-numbox p span{
  font-weight: 500;
  font-size: 16px;
}
.ecomm-user-numbox a{
  font-size: 13px;
  color: #0E5AA7;
  margin-left: 8px;
  text-decoration: underline;
}
.ecomm-user-numbox .dropdown-menu{
  transform: none !important;
  top: 100% !important;
  left: 0 !important;
  padding: 20px;
  border: 1px solid #ECECEC;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.ecomm-updatenum-box{
  display: flex;
}
.ecomm-user-numbox .dropdown-menu .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  opacity: 1;
  box-shadow: none;
}
.ecomm-user-numbox .dropdown-menu .form-label{
  font-size: 13px;
  color: #333333;
  display: block;
  margin-bottom: 0;
}
.ecomm-user-numbox .dropdown-menu .form-control{
  height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    color: #333333;
    background: rgba(14, 90, 167, 0.1);
    border: 0;
    border-radius: 30px 0 0 30px;
    box-shadow: none;
}
.ecomm-user-numbox .dropdown-menu .un-btn{
  height: 40px;
  width: 100px;
  border-radius: 0 30px 30px 0;
  background: #0E5AA7;
  display: flex;
  align-content: center;
  border: 0;
  color: #ffffff;
  font-size: 14px;
  flex: 0 0 auto;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ecomm-shipping-address-box{
  border-top: 1px solid #ECECEC;
  padding-top: 25px;
}
.ecommm-sa-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ecommm-sa-header h4{
  font-size: 15px;
  color: #333333;
  font-weight: 500;
}
.ecommm-sa-header .ecomm-an button,
.ecommm-sa-header .ecomm-an a{
  font-size: 14px;
  color: #0E5AA7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ecommm-sa-header .ecomm-an .mob-show{
  display: none;
}
.ecommm-sa-header .ecomm-an svg{
  width: 24px;
}
.ecommm-sa-header .ecomm-an button span,
.ecommm-sa-header .ecomm-an a span{
  text-decoration: underline;
}
.ecommm-sa-header .ecomm-an button:hover,
.ecommm-sa-header .ecomm-an a:hover{
  color: #EE2527;
}
.ecommm-sa-header .ecomm-an button:hover svg circle,
.ecommm-sa-header .ecomm-an a:hover svg circle{
  fill: #EE2527;
}
#addnewForm{
  display: none;
}
.ecomm-shipping-address-box .selectbox{
  position: relative;
}
.ecomm-shipping-address-box .form-group{
  margin-bottom: 20px;
  position: relative;
}
.form-sublabel{
  position: absolute;
  color: #333333;
  font-size: 14px;
  padding: 2px 5px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.5s all;
}
.ecomm-shipping-address-box .form-control{
  height: 40px;
  padding: 6px 20px;
  border-radius: 5px;
  border: 1px solid #E3E3E3;
  color: #333333;
  box-shadow: none;
  font-size: 14px;
}
.ecomm-shipping-address-box .form-control:focus{
  border-color: #0E5AA7;
}
.ecomm-shipping-address-box .form-control:focus ~ .form-sublabel{
  top: 0;
  background: #fff;
}
.ecomm-shipping-address-box textarea.form-control{
  height: auto;
  resize: none;
  padding-top: 14px;
}
.ecomm-shipping-address-box .form-control::placeholder{
  color: #333333;
}
.ecomm-shipping-address-box .selectitem{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
}
.ecomm-shipping-address-box .country-select{
  display: block;
}
.ecomm-shipping-address-box .country-select .form-control{
  padding-left: 20px !important;
  font-size: 14px;
}
.ecomm-shipping-address-box .country-select .flag {
  display: none !important;
}
.ecomm-shipping-address-box .country-select .selected-flag {
  padding-left: 0 !important;
}
.ecomm-shipping-address-box .country-select.inside .flag-dropdown{
  right: 0;
}
.ecomm-shipping-address-box .country-select.inside .selected-flag{
  width: 100%;
}
.ecomm-shipping-address-box .country-select.inside .selected-flag .arrow{
  display: none;
}
.ecomm-shipping-address-box .country-select .country-list .country-name{
  font-size: 14px;
}
.ecomm-shipping-address-box label.error{
  font-size: 13px;
  color: #EE2527;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.ecomm-shipping-address-box label.error svg{
  max-width: 14px;
}
.ecomm-radio-box{
  display: flex;
  align-items: center;
  gap: 40px;
}
.ecomm-radio-box .form-label{
  line-height: 1;
  margin-bottom: 0;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}
.ecomm-radio-box .ecomm-radio-wrap{
  display: flex;
  align-items: center;
  gap: 40px;
}
.ecomm-radio-wrap .radio{
  display: flex;
  align-items: center;
  gap: 10px;
}
.ecomm-radio-wrap .radio input{
  background: #EBEBEB;
  width: 16px;
  height: 16px;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 9999px;
}
.ecomm-radio-wrap .radio input:checked{
  background-color: #fff;
  box-shadow: inset 0 0 0 4px #0E5AA7;
}
.ecomm-radio-wrap .radio span{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
}
.button-group{
  display: flex;
  justify-content: flex-end;
}
.ecomm-shipping-address-box .ecomm-submit-btn{
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #0E5AA7;
  border-radius: 30px;
  letter-spacing: 0.1em;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: 0.5s all;
  text-align: center;
}
.ecomm-shipping-address-box .ecomm-submit-btn:hover{
  background-color: #EE2527;
  color: #ffffff;
}
.ecomm-saved-address{
  padding: 25px 30px;
  border-radius: 5px;
  border: 1px solid #E3E3E3;
  position: relative;
  cursor: pointer;
  background: #fff;
}
.ecomm-saved-address input{
  position: absolute;
  opacity: 0;
}
.ecomm-saved-address:has(input:checked),
.ecomm-saved-address.selected{
  border-color: #0E5AA7;
  box-shadow: 0 0 10px rgba(14, 90, 167, 0.1);
}
.ecomm-saved-address+.ecomm-saved-address{
  margin-top: 20px;
}
.ecomm-saved-address .radio{
  position: absolute;
  left: 5px;
  top: 5px;
}
.ecomm-saved-address .radio input{
  background: #EBEBEB;
  width: 16px;
  height: 16px;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 9999px;
}
.ecomm-saved-address .radio input:checked{
  background-color: #fff;
  box-shadow: inset 0 0 0 4px #0E5AA7;
}
.ecomm-saved-address .ecomm-addres-actions{
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.ecomm-saved-address .ecomm-sa-edit{
  font-size: 13px;
  color: #0E5AA7;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ecomm-saved-address .ecomm-sa-edit span{
  line-height: 1;
}
.ecomm-saved-address .ecomm-sa-edit svg{
  width: 14px;
}
.ecomm-saved-address .ecomm-sa-delete{
  font-size: 13px;
  color: #EE2527;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ecomm-saved-address .ecomm-sa-delete span{
  line-height: 1;
}
.ecomm-saved-address .ecomm-sa-delete svg{
  width: 14px;
}
.ecomm-saved-address h5{
  font-size: 15px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 6px;
}
.ecomm-saved-address address{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
}
.ecomm-saved-address .ecomm-sa-mail{
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ecomm-saved-address .ecomm-sa-mail svg{
  width: 15px;
}
.ecomm-saved-address .ecomm-sa-mail p{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
}
.ecomm-billing-address{
  margin-top: 35px;
}
.ecomm-billing-address-body .checkbox{
  position: relative;
  display: inline-flex;
}
.ecomm-billing-address-body .checkbox input{
  position: absolute;
  left: 0;
  display: none;
}
.ecomm-billing-address-body .checkbox span {
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding-left: 28px;
  position: relative;
}
.ecomm-billing-address-body .checkbox span::before {
  content: '';
  border-radius: 3px;
  border: 1px solid #0E5AA7;
  width: 18px;
  height: 18px;
  transition: 0.5s all;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.ecomm-billing-address-body .checkbox span::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  border: 2px solid #fff;
  width: 10px;
  height: 6px;
  border-top: 0;
  border-right: 0;
  rotate: -45deg;
  opacity: 0;
  transition: 0.5s all;
}
.ecomm-billing-address-body .checkbox input:checked ~ span::before{
  background: #0E5AA7;
}
.ecomm-billing-address-body .checkbox input:checked ~ span::after {
  opacity: 1;
}
.ecomm-order-summary{
  border: 1px solid #ECECEC;
  padding: 25px 30px;
  border-radius: 10px;
}
.ecomm-os-head{
  margin-bottom: 20px;
}
.ecomm-os-head .ecomm-os-toggle-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
  color: #333333;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: bold;
}
.ecomm-os-head .ecomm-os-toggle-btn svg {
  transition: 0.5s all;
}
.ecomm-os-head .ecomm-os-toggle-btn.show svg {
  rotate: 180deg;
}
.ecomm-order-summary-box{
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-order-summary-item{
  display: flex;
  align-items: center;
}
.ecomm-order-summary-item + .ecomm-order-summary-item{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
}
.ecomm-order-summary-item-left{
  width: 100%;
  display: flex;
  align-items: center;
}
.ecomm-order-summary-item .ecomm-cart-item-image{
  width: 96px;
  height: 96px;
  margin-right: 18px;
}
.ecomm-order-summary-item .ecomm-cart-item-name{
  font-size: 14px;
}
.ecomm-order-summary-item .ecomm-cart-item-quantity{
  width: 60px;
  padding: 4px 6px;
}
.ecomm-order-summary-item .ecomm-cart-chkmob-price{
  margin-bottom: 0;
}
.ecomm-order-summary-item .ecomm-cart-qty-btn{
  width: 10px;
  height: 10px;
  padding: 0;
}
.ecomm-order-summary-item .ecomm-cart-qty-number{
  min-width: 16px;
  font-size: 13px;
}
.ecomm-order-summary-item .ecomm-cart-chkmob-price span{
  font-size: 14px;
}
.ecomm-os-cart-dt{
  display: flex;
  align-items: center;
  gap: 20px;
}
.ecomm-order-summary-item .ecomm-cart-remove-btn{
  padding: 5px;
  width: 22px;
  height: 22px;
}
.ecomm-order-summary-showmore{
  margin-top: 16px;
}
.ecomm-order-summary-showmore a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333333;
}
.ecomm-order-summary-showmore a svg{
  width: 11px;
  transition: 0.5s all;
}
.ecomm-order-summary-showmore a.toggle svg{
  rotate: -180deg;
}
.ecomm-order-summary-showmore a span{
  line-height: 1;
}
.ecomm-coupen-sec{
  padding: 20px 0;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-coupen-sec p{
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 4px;
}
.ecomm-coupen-sec .viewcoupen{
  display: flex;
  align-items: center;
  gap: 5px;
}
.ecomm-coupen-sec .viewcoupen .dropdown-menu.dropdown-menu-right{
  inset: auto !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 450px;
}
.ecomm-coupen-sec .viewcoupen span{
  display: block;
  color: #333333;
  font-size: 14px;
}
.ecomm-coupen-sec .viewcoupen a{
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  display: block;
  color: #333333;
  font-size: 14px;
}
.ecomm-coupen-sec .viewcoupen .dropdown-menu{
  padding: 35px 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.ecomm-coupen-sec .viewcoupen .dropdown-menu h4{
  font-size: 18px;
  color: #0E5AA7;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
.ecomm-coupen-sec .viewcoupen ul li{
  position: relative;
  padding-right: 20px;
}
.ecomm-coupen-sec .viewcoupen ul li + li{
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
}
.ecomm-coupen-sec .viewcoupen .btn-close{
  position: absolute;
  right: 30px;
  top: 30px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  opacity: 1;
  box-shadow: none;
}
.ecomm-coupen-sec .viewcoupen .btn-close img{
  display: block;
  width: 100%;
  height: 100%;
}
.ecomm-coupen-sec .viewcoupen .coupon-code{
  padding: 0 10px;
  background: #0E5AA7;  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffff;
  text-transform: uppercase;
  font-weight: 500;
  height: 26px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  margin-bottom: 8px;
}
.ecomm-coupen-sec .viewcoupen ul li h6{
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.05em;
}
.ecomm-coupen-sec .viewcoupen ul li p{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-weight: 400;
}
.ecomm-coupen-sec .viewcoupen ul li .copy{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ecomm-cpn-box{
  margin-top: 20px;
}
.ecomm-cpn-input{
  display: flex;
}
.ecomm-cpn-box .form-control{
  height: 40px;
  padding: 8px 20px;
  font-size: 14px;
  color: #333333;
  background: rgba(14, 90, 167, 0.1);
  border: 0;
  border-radius: 30px 0 0 30px;
  box-shadow: none;
}
.ecomm-cpn-box .cpn-apply{
  height: 40px;
  width: 100px;
  border-radius: 0 30px 30px 0;
  background: #0E5AA7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  font-size: 14px;
  flex: 0 0 auto;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ecomm-cpn-box .error{
  font-size: 13px;
  color: #EE2527;
}
.ecomm-added-cpn{
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #4BAE4F;
}
.ecomm-added-cpn svg{
  width: 24px;
  height: 24px;
  margin-right: 20px;
}
.ecomm-added-cpn > div{
  margin-right: auto;
}
.ecomm-added-cpn h5{
  font-size: 15px;
  color: #333333;
  font-weight: 500;
}
.ecomm-added-cpn p{
  font-size: 12px;
  color: #666666;
  margin-bottom: 0;
}
.ecomm-added-cpn .remove-btn{
  font-size: 13px;
  color: #EE2527;
}
.ecomm-order-summary .ecomm-cart-total-btn-wrap{
  margin-top: 27px;
}
.ecomm-payment-option{
  padding: 20px 0;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-po-box{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;  
}
.ecomm-po-box .radio{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ececec;
  border-radius: 5px;
}
.ecomm-po-box .radio input{
  background: #EBEBEB;
  width: 16px;
  height: 16px;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 9999px;
}
.ecomm-po-box .radio input:checked{
  background-color: #fff;
  box-shadow: inset 0 0 0 4px #0E5AA7;
}
.ecomm-po-box .radio:has(input:checked){
  border-color: #0E5AA7;
}
.ecomm-po-box .radio span{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
}
.ecomm-po-box .radio span img{
  display: block;
  max-width: 100px;
  max-height: 25px;
}
.radiofull{
  width: 100%;
}
.ecomm-summary-total{
  padding-top: 20px;
}
.ecomm-summary-total table th{
  padding: 12px 0;
  font-size: 13px;
  color: #333333;
  font-weight: 600;
  width: 100%;
}
.ecomm-summary-total table td{
  padding: 5px 0;
  font-size: 13px;
  color: #333333;
}
.ecomm-summary-total table tfoot td{
  font-size: 22px;
  color: #333333;
  font-weight: 600;
}
.ecomm-sa-toggle-title .ecomm-sa-toggle-btn{
  display: none;
}
.ecomm-order-submitted{
  margin-bottom: 30px;
}
.ecomm-order-submitted-box{
  border-radius: 5px;
  background: rgba(75, 174, 79,.1);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ecomm-order-submitted-box .ecomm-submitted-icon{
  width: 78px;
  height: 78px;
  border-radius: 9999px;
  border: 7px solid rgba(75, 174, 79,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ecomm-order-submitted-box .ecomm-submitted-icon figure{
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #4BAE4F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 7px solid #56bb59;
  padding: 7px;
}
.ecomm-order-submitted-box .ecomm-submitted-icon svg{
  display: block;
  width: 27px;
  height: 27px;
}
.ecomm-order-submitted p{
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.05em;
}
.ecomm-order-submitted p span{
  font-weight: 600;
}
.loadable{
  position: relative;
}
.loading span {
  visibility: hidden;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Order History */
.ecomm-order-history table tr{
  border-top: 1px solid #ECECEC;
}
.ecomm-order-history table tr td{
  font-size: 14px;
  color: #333333;
  vertical-align: middle;
  padding: 30px 0;
  white-space: nowrap;
}
.ecomm-order-history table tr td:not(:first-child, :last-child){
  padding-left: 10px;
  padding-right: 10px;
}
.ecomm-order-history table tr td:first-child{
  width: 40%;
  padding-right: 15px;
}
.ecomm-order-history table tr td:last-child{
  width: 30%;
}
.ecomm-oh-product{
  display: flex;
  align-items: center;
}
.ecomm-oh-product figure{
  width: 126px;
  height: 126px;
  flex: 0 0 auto;
  background: #F6F5F8;
  border-radius: 10px;
  margin-right: 30px;
}
.ecomm-oh-product figure img{
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ecomm-oh-product .ecomm-oh-product-data h6{
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}
.ecomm-oh-product .ecomm-oh-product-data p{
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
}
.ecomm-oh-product .ecomm-oh-product-data p span{
  font-weight: 500;
}
.ecomm-mb2{
  margin-bottom: 10px;
}
.ecomm-order-history table tr td.items span{
  font-weight: 600;
}
.ecomm-order-history table tr td.price{
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  color: #333333;
}
.ecomm-order-history table tr td.status{
  font-weight: 500;
  font-size: 14px;
  color: #333333;
}
.ecomm-order-history table tr td.status.delivered{
  color: #4BAE4F;
}
.ecomm-order-history table tr td.status.pending{
  color: #FD7E14;
}
.ecomm-order-history table tr td.status span{
  font-weight: 400;
  color: #333333;
}
.ecomm-order-history .ecomm-submit-btn{
  background: #0E5AA7;
  color: #ffffff;
  border: 1px solid #0E5AA7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
.ecomm-order-history .ecomm-submit-btn:hover {
  background: #EE2527;
  border-color: #EE2527;
  transform: translateY(-2px);
}
.ecomm-order-history table .ecomm-oh-buttons{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.ecomm-order-history .ecomm-submit-btn.stroke-btn{
  background: #fff;
  color: #0E5AA7;
}
.ecomm-order-history .ecomm-submit-btn.stroke-btn:hover {
  background: #0E5AA7;
  color: #fff;
  border-color: #0E5AA7;
}

/* Order History Detail */
.ecomm-order-history-detail{
  border: 1px solid #ECECEC;
  border-radius: 5px;
}
.ecomm-order-history-detail .ecomm-oh-status{
  padding: 20px 30px 30px;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-oh-status-data p{
  font-size: 14px;
  color: #333333;
}
.ecomm-oh-status-data p span{
  font-weight: 500;
}
.ecomm-oh-status-data .delivered{
  color: #4BAE4F;
}
.ecomm-oh-status-data .pending{
  color: #FD7E14;
}
.ecomm-oh-status-data .canceled{
  color: #EE2527;
}
.ecomm-oh-download{
  background: none;
  color: #0E5AA7;
  border: 1px solid #0E5AA7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
.ecomm-oh-download:hover{
  background: #0E5AA7;
  color: #fff;
  border-color: #0E5AA7;
}
.ecomm-ohd-btns{
  margin-top: 17px;
}
.ecomm-oh-track{
  display: flex;
  text-align: center;
  margin-left: -10px;
  margin-right: -10px;
}
.ecomm-oh-track li{
  width: 100%;
  position: relative;
  padding: 0 10px;
}
.ecomm-oh-track h6{
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.ecomm-oh-track p{
  font-size: 14px;
  color: #333333;
}
.ecomm-oh-track .track-dot{
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  border: 5px solid #0E5AA7;
  background: #ffff;
  margin: 0 auto;
  margin-bottom: 10px;
  position: relative;
  z-index: 4;
}
.ecomm-oh-track li::before{
  content: '';
  position: absolute;
  top: 9px;
  height: 1px;
  background: #D9D9D9;
  left: 50%;
  width: 100%;
}
.ecomm-oh-track li.done::before{
  background: #0E5AA7;
}
.ecomm-oh-track li:last-child:before{
  display: none;
}
.ecomm-order-history-detail .ecomm-saved-address{
  margin-top: 0;
  border: 0;
  border-bottom: 1px solid #ECECEC;
  padding: 0;
  padding-bottom: 30px;
}
.ecomm-order-history-detail .ecomm-oh-detail-products{
  padding: 30px;
  padding-bottom: 0;
}
.ecomm-order-history-detail .ecomm-cart-itemtable table{
  margin: 0;
}
.ecomm-order-history-detail .ecomm-cart-item{
  border-bottom: 0;
}
.ecomm-order-history-detail .ecomm-cart-item+.ecomm-cart-item{
  border-top: 1px solid #ECECEC;
}
.ecomm-cart-itemdetailtable thead th{
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  border-bottom: 1px solid #ECECEC;
}
.ecomm-cart-itemdetailtable thead th:first-child{
  padding-left: 0;
}
.ecomm-cart-item-pricedetails{
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ecomm-cart-item-pricedetails span{
  font-weight: 600;
}
.ecomm-cart-item-totaldetails{
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ECECEC;
  margin-top: 20px;
  padding-top: 10px;
}
.ecomm-cart-item-totaldetails span{
  font-weight: 600;
}
.ecomm-order-history-detail .table tfoot tr{
  border-top: 1px solid #ECECEC;
}
.ecomm-order-history-detail .table tfoot td{
  font-size: 18px;
  color: #333;
  font-weight: 500;
  padding: 20px 0;
}
.ecomm-order-history-detail .table tfoot td:not(:first-child){
  padding: 20px 10px;
  text-align: right;
}
.ecomm-order-history-detail .ecomm-cart-itemdetailtable thead th{
  padding: 15px 0;
  font-size: 14px;
}
.ecomm-order-history-detail .ecomm-cart-itemdetailtable thead th:not(:first-child){
  width: 15%;
}
.ecomm-order-history-detail .ecomm-cart-item-image{
  width: 100px;
  height: 100px;
}
.ecomm-order-history-detail .ecomm-cart-itemdetailtable thead th:last-child{
  width: fit-content;
  text-align: right;
}
.ecomm-order-history-detail .ecomm-cart-itemdetailtable tbody td:last-child{
  text-align: right;
}
.ecomm-order-history-detail .ecomm-cart-itemdetailtable tbody td{
  font-size: 14px;
  font-weight: 500;
  padding: 20px 0;
}
.ordertotal-box{
  width: 36%;
  margin-left: auto;
}
.deletemodal .modal-content{
  width: 290px;
  margin: 0 auto;
  border: 0;
}
.deletemodal .btn-close{
  position: absolute;
  top: 16px;
  right: 18px;
  width: 8px;
  height: 8px;
}
.deletemodal .modal-body{
  padding: 30px 20px;
  text-align: center;
}
.deletemodal .modal-body p{
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.deletemodal .modal-footer{
  border-top: 1px solid #ECECEC;
  padding: 0;
  display: flex;
}
.deletemodal .modal-footer .delete-btn,
.deletemodal .modal-footer .cancel-btn{
  text-align: center;
  font-size: 14px;
  color: #0E5AA7;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin: 0;
  width: 50%;
  padding: 10px;
}
.deletemodal .modal-footer .delete-btn{
  color: #EE2527;
  border-left: 1px solid #ECECEC;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ecomm-cart-totals{
    padding: 30px 25px 20px;
  }
  .ecomm-radio-box{
    gap: 25px;
  }
  .ecomm-radio-box .ecomm-radio-wrap{
    gap: 25px;
  }
  .ecomm-cpn-box .cpn-apply{
    width: 75px;
  }
  .ecomm-os-cart-dt{
    gap: 12px;
  }
  .ecomm-order-summary-item .ecomm-cart-item-image{
    width: 66px;
    height: 66px;
  }
  .ecomm-order-history table .ecomm-oh-buttons{
    flex-wrap: wrap;
  }
  .ecomm-order-history table tr td:last-child{
    width: auto;
    padding-left: 10px;
  }
  .ecomm-order-history table tr td:not(:first-child, :last-child) {
    padding-left: 15px;
    padding-right: 15px ;
  }
  .ecomm-oh-track{
    margin-top: 30px;
  }
  .ecomm-added-cpn svg{
    margin-right: 12px;
  }
  .ecomm-order-summary{
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .ecomm-cart-checkout-mob-bottom {
    display: block;
  }
  .ecomm-cart-itemswrap table thead{
    display: none;
  }
  .ecomm-cart-itemswrap .ecomm-cart-toggle-btn{
    display: flex;
  }
  .ecomm-cart-item td {
    padding: 20px 0;
  }
  .ecomm-cart-item-image{
    width: 100px;
    height: 100px;
  }
  .ecomm-cart-itemswrap{
    margin-bottom: 20px;
  }
  .ecommm-sa-header{
    flex-direction: column;
    align-items: baseline;
  }
  .ecomm-sa-toggle-title h4{
    display: none;
  }
  .ecomm-sa-toggle-title{
    width: 100%;
  }
  .ecomm-sa-toggle-title .ecomm-sa-toggle-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 15px;
    color: #0E5AA7;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 5px;
    background: rgba(14, 90, 167, 0.1);
  }
  .ecomm-sa-toggle-title .ecomm-sa-toggle-btn svg{
    transition: 0.5s all;
  }
  .ecomm-sa-toggle-title .ecomm-sa-toggle-btn.show svg{
    rotate: 180deg;
  }
  .ecomm-shipping-address-box .form-group {
    margin-bottom: 12px;
  }
  .ecomm-radio-box {
    gap: 40px;
    margin-bottom: 18px;
  }
  .button-group{
    justify-content: flex-start;
  }
  .ecomm-order-summary{
    margin-top: 30px;
    padding: 0;
    border: 0;
  }
  .ecomm-os-head .ecomm-os-toggle-btn{
    font-size: 15px;
    color: #0E5AA7;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 5px;
    background: rgba(14, 90, 167, 0.1);
    text-transform: none;
    pointer-events: inherit;
  }
  .ecomm-os-head .ecomm-os-toggle-btn svg{
    transition: 0.5s all;
  }
  .ecomm-os-head .ecomm-os-toggle-btn.show svg{
    rotate: 180deg;
  }
  .ecomm-order-summary-item .ecomm-cart-item-image{
    width: 96px;
    height: 96px;
  }

  .ecomm-order-history table tr{
    display: flex;
    flex-wrap: wrap;
  }
  .ecomm-order-history table tr td:last-child,
  .ecomm-order-history table tr td:first-child,
  .ecomm-order-history table tr td{
    width: 100%;
  }
  .ecomm-order-history table .ecomm-oh-buttons{
    justify-content: center;
  }
  .ecomm-order-history table tr td{
    padding: 5px 0;
  }
  .ecomm-order-history table tr td:not(:first-child, :last-child){
    padding-right: 10px;
    padding-left: 0;
  }
  .ecomm-order-history table tr td:not(:first-child, :last-child, .status){
    padding-left: 156px;
  }
  .ecomm-order-history table tr td.price{
    width: 60%;
  }
  .ecomm-order-history table tr td.status{
    width: 40%;
  }
  .ecomm-order-history table tr td:first-child{
    padding-top: 20px;
    padding-bottom: 0;
  }
  .ecomm-order-history table tr td:last-child{
    padding: 30px 0 20px;
  }
  .ecomm-added-cpn svg{
    margin-right: 20px;
  }
  .mob-hideform,
  .ecommm-sa-header .ecomm-an .mob-hide{
    display: none !important;
  }
  .ecommm-sa-header .ecomm-an .mob-show{
    display: flex;
  }
  .addnewaddress-modal .modal-content{
    border: 0;
    border-radius: 8px 8px 0 0;
  }
  .addnewaddress-modal .modal-dialog{
    height: 100%;
    margin: 0;
    padding: 10px 10px 0;
    display: flex;
    align-items: flex-end;
    max-width: 100%;
  }
  .addnewaddress-modal .modal-header{
    border-bottom: 0;
    padding: 16px;
    padding-bottom: 5px;
  }
  .addnewaddress-modal .btn-close{
    padding: 0px;
    margin-right: 0;
  }
  .addnewaddress-modal .modal-title{
    font-size: 16px;
    color: #333333;
    line-height: 1;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .addnewaddress-modal .modal-title button{
    display: block;
    width: 16px;
    height: 14px;
    padding: 0;
  }
  .addnewaddress-modal .modal-title button svg{
    display: block;
  }
  .ecomm-shipping-address-box .form-label{
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
  }
  .mob-additional-info{
    display: block;
  }
  .additional-info-btn svg{
    transition: 00.5s all;
  }
  .additional-info-btn.open svg{
    rotate: 45deg;
  }
  .addnewaddress-modal .btn-close{
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    background-size: 33%;
    opacity: 1;
  }
  #addNewAddressModal .modal-dialog {
    transform: translateY(50%);
    transition: transform 0.6s ease-out;
  }
  #addNewAddressModal.show .modal-dialog {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .ecomm-cart-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .ecomm-cart-item td{
    order: 3;
    width: 33.3333%;
  }
  .ecomm-cart-item td:first-child{
    order: 1;
    width: calc(100% - 30px);
  }
  .ecomm-cart-item td:last-child{
    order: 2;
    width: 30px;
  }
  .mobshow{
    display: block !important;
  }
  .ecomm-cart-totals-title{
    margin-bottom: 10px;
  }
  .ecomm-create-account-box{
    padding: 30px 25px;
    max-width: 400px;
  }
  .ecomm-codeinputs .form-control{
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .ecomm-coupen-sec .viewcoupen .dropdown-menu.dropdown-menu-right{
    width: 100%;
  }
  .ecomm-oh-product figure{
    width: 100px;
    height: 100px;
  }
  .ecomm-order-history table tr td:not(:first-child, :last-child, .status) {
    padding-left: 130px;
  }
  .ecomm-oh-track p{
    font-size: 12px;
  }
  .ecomm-oh-status-data p + p{
    margin-top: 5px;
  }
  .ecomm-cart-title{
    font-size: 22px;
  }
  .ecomm-order-history-detail .ecomm-cart-itemdetailtable thead{
    display: none;
  }
  .ordertotal-box{
    width: 100%;
  }
  .ecomm-order-history-detail .ecomm-cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .ecomm-cart-item-pricedetails{
    font-size: 13px;
  }
  .ecomm-order-history-detail .ecomm-cart-itemdetailtable .ecomm-cart-item td:nth-child(2){
    order: 2;
    width: 30px;
  }
  .ecomm-order-history-detail .ecomm-cart-itemdetailtable .ecomm-cart-item td:last-child{
    order: 3;
    width: 33.3333%;
  }
}

@media (max-width: 575px) {
  .ecomm-cart-title{
    font-size: 20px;
  }
  .ecomm-cart-totals {
    padding: 25px 20px;
  }
  .ecomm-inline-input{
    flex-direction: column;
  }
  .ecomm-form-group .ecomm-ftpassword{
    justify-content: flex-start;
  }
  .ecomm-form-group+.ecomm-form-group{
    margin-top: 12px;
  }
  .ecomm-coupen-sec .viewcoupen .dropdown-menu.dropdown-menu-right{
    padding: 25px 20px;
  }
  .ecomm-coupen-sec .viewcoupen .btn-close{
    top: 25px;
    right: 20px;
  }
  .ecomm-coupen-sec .viewcoupen .dropdown-menu h4{
    font-size: 16px;
  }
  .ecomm-coupen-sec .viewcoupen ul li p{
    font-size: 12px;
  }
  .ecomm-coupen-sec .viewcoupen .coupon-code{
    font-size: 13px;
  }
  .ecomm-coupen-sec .viewcoupen ul li h6{
    font-size: 14px;
  }
  .ecomm-saved-address{
    padding: 25px 20px;
  }
  .ecomm-radio-box{
    gap: 25px;
  }
  .ecomm-oh-product figure{
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }
  .ecomm-order-history table tr td:not(:first-child, :last-child, .status) {
    padding-left: 110px;
  }
  .ecomm-order-history .ecomm-submit-btn{
    padding: 8px 16px;
  }
  .ecomm-order-history-detail .ecomm-oh-status{
    padding: 20px 25px;
  }
  .ecomm-order-history-detail .ecomm-oh-detail-products {
    padding: 25px;
    padding-bottom: 0;
  }
  .ecomm-cart-header {
    margin-bottom: 16px;
  }
  .ecomm-saved-address .ecomm-addres-actions{
    right: 15px;
    top: 15px;
    gap: 15px;
  }
  .ecomm-saved-address .ecomm-sa-delete span,
  .ecomm-saved-address .ecomm-sa-edit span{
    display: none;
  }
  .ecomm-cart-savedlater {
    padding: 20px;
    padding-bottom: 0;
  }
  .ecomm-cart-empty{
    padding: 30px 25px;
  }
  .ecomm-cart-empty-icon{
    width: 100px;
  }
  .ecomm-shipping-address-box .country-select .form-control{
    padding-left: 14px !important;
  }
  .ecomm-shipping-address-box .form-control{
    padding: 6px 14px;
  }
  .form-sublabel{
    left: 9px;
  }
  .ecomm-shipping-address-box .ecomm-submit-btn{
    width: 100%;
  }
}

@media (max-width: 380px){
  .ecomm-cart-checkout-mobwrap.inline .ecomm-cart-chkmob-price{
    margin-right: 30px;
  }
  .ecomm-cart-whatsapp-btn sub,
  .ecomm-cart-checkout-btn sub{
    display: none;
  }
}
