:root {
  --font-size: 14px;
  --bg-theme:#18ab61;
  --gradient-bg: linear-gradient(240deg, #18ab61, #35ad71, #7ab497);
  --lavender-mist: #7541ca;
  --lavender-haze: #F2EEFA;
  --white: #fff;
  --deepwine-red: #732F5D;
  --wine-brown: #a9615c;
  --lavender-white: #f2eefa9e;
  --gradient-bg: linear-gradient(240deg, #49356a, #8a79a7, #49356a);
  --deep-purple: #6e2880;
  --primary-color: #49356A;
  --secondary-color: #732F5D;
  --light-bg: #fff8f8;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --gradient-deep: linear-gradient(to bottom, #49356a 0%, #8a79a7 21%, #ededed 18%, #f2f0f0 39%);

}

/* Style for the promo controls section */
body {
  /* font-family: 'Open Sans', sans-serif !important; */
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.promo-controls-wrapper {
  flex-grow: 1;
  /* margin-top: 15px;  */
  align-items: center;
}

/* Style for the input group and buttons */
.promo-form .input-group {
  max-width: 220px;
  /* Max width for the promo input */
  margin-right: 15px;
  height:43px;
  margin-left: 5px;
  /* Add some margin on the right */
}
.promo-input {
  padding:0px 6px!important;
  font-size: 13px;
}

.applybtnde{
  border-right: 2px solid #d2d2d2!important;
  padding:8px 6px!important;

}
.removebtnde{
  padding:10px 6px!important;

}

/* Styling for the buttons */
.button-group button {
  margin-left: 10px;
  padding: 10px 15px;
  font-size: 13px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #b9986da8;
  transition: all 0.3s ease;
}

/* Change background color on hover */
.button-group button:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/* Adjust size of icons */
.fa {
  font-size: 18px;
  margin-right: 5px;
  /* Space between icon and text */
}

/* Additional styles for the promo input */
.promo-input {
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Apply button with Font Awesome icon */
.promo-controls .btn {
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  border-radius: 5px;
  font-size: 14px;
}

.promo-controls .btn:hover {
  background-color: #45a049;
}

/* Remove button with Font Awesome icon */
.promo-controls .btn-xs {
  padding: 8px;
  background-color: var(--bg-theme);
  color: white;
  border-radius: 50%;
}

.promo-controls .btn-xs:hover {
  background-color: #cfa7a1;
}

.pad028 {
  padding: 0px 28px !important;
}

.Dusty-rose {
  color: var(--lavender-mist);
}

.dark-dusty {
  color: var(--bg-theme);
}

.deep-maroon {
  color: var(--white);
}

.btn-bor {
  border: solid 1px rgb(201, 201, 201) !important;
}

/* dropdown */
/* General styling for the dropdown button */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
  color: #000;
}

.dropdown-toggle {
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

/* If you're using icons inside the dropdown, adjust icon sizes and spacing */
.dropdown-item i {
  margin-right: 8px;
}

.tab-body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navtabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  /* background: white; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  padding: 10px 20px;
  position: relative;
  /* background: var(--lavender-haze); */
}

.navtab {
  margin: 0 10px;
    padding: 6px 23px;
    cursor: pointer;
    color: #000;
    transition: color 0.3s;
    text-transform: capitalize;
    background: #fff;
    /* border: 1px solid; */
    border-radius: 9999px;
    box-shadow: 0px 0px 6px 0px #e2e2e2;

}

.navtab:hover {
  color: var(--lavender-mist);
}

.navtab.active {
  color: #fff;
  font-weight: 600;
  background: var(--bg-theme);
}

.underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--bg-theme);
  transition: left 0.3s ease, width 0.3s ease;
}

.content {
  display: none;

  text-align: center;
}

.content.active {
  display: block;
}

.footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  color: #000;
  transition: color 0.3s ease;
}

.footer a {
  background: linear-gradient(145deg, #007aff, #005bb5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer a:hover {
  color: linear-gradient(145deg, #007aff, #005bb5);
}

.dropdown-menu {
  border: 1px solid #b9986d96 !important;
}

/* flex card model pop up */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 4 items per row */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  /* Center grid container */
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    /* 1 item per row */
  }
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  flex-flow: column;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
  width: 100%;
  height: 230px;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.product-card:hover img {
  /* transform: scale(1.1); */
}

.product-info {
  padding: 15px 7px;
  background-color: white;
  text-align: center;
}

.product-info h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #d67364;
}

.product-info p {
  margin: 0;
  color: #777;
  font-size: var(--font-size);
  /* font-family: 'Open Sans', sans-serif; */
  font-family: "Inter", sans-serif;;
  font-weight: 500;
  text-align: left;
  height:150px;
}

/* Modal Styles */
.modal {
  display: none;
  /* Default hidden */
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow: scroll !important;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  margin: auto;

}

.modal-content h3 {
  margin: 20px 0px 11px 0px;
  color: var(--deepwine-red);
  font-size: 23px;
}

.modal-content p {
  margin-bottom: 0px;
  font-weight: normal;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dfd0d09c;
  /* Light background */
  border: none;
  border-radius: 50%;
  /* Ensure the button is round */
  width: 44px;
  height: 44px;
  /* Match the width and height for a perfect circle */
  text-align: center;
  display: flex;
  justify-content: center;
  /* Horizontally center the icon */
  align-items: center;
  /* Vertically center the icon */
  cursor: pointer;
}

.close-btn:hover {
  color: #e74c3c;
}

/* Hide hidden description initially */
.hidden-description {
  display: none;
}

.hidden-description.visible {
  display: inline;
}

.hed {
  color: var(--bg-theme);
  font-size: 29px;
  text-transform: capitalize;
}

.see-more {
  border: none;
  background: #f0f8ff00;
  color: #b61424;
  font-size: 14px;
}

/* Container for the options */
.option-container {
  margin: 7px 0;
  /* Add some space around the container */
}

/* Title text above the dropdown */
.option-title {
  display: block;
  /* Makes the title take up its own line */
  font-size: 14px;
  /* Set the font size */
  color: #7e7877;
  margin-bottom: 8px;
  /* Adds space below the title */
}

/* Styling for the dropdown */
.option-select {
  width: 100%;
  /* Make the select box span the full width of its container */
  padding: 10px;
  /* Add some padding for better click area */
  font-size: 14px;
  /* Set font size */
  color: #555;
  /* Medium gray color for text */
  border: 1px solid #ccc;
  /* Light gray border */
  border-radius: 4px;
  /* Rounded corners */
  background-color: #fff;
  /* White background */
  cursor: pointer;
  /* Change the cursor to pointer to indicate it's clickable */
  box-sizing: border-box;
  /* Ensures padding is included in the width calculation */
}

/* Option items style */
.option-select option {
  padding: 10px;
  /* Space inside the options */
  font-size: 14px;
  /* Font size for options */
}

.buy {
  background-color: var(--bg-theme);
  color: white !important;
  border: 1px solid var(--bg-theme);
  border-radius: 6px;
  padding: 5px 123px;
  display: flex;
  justify-content: center;
  /* Centers content horizontally */
  align-items: center;
  /* Centers content vertically */
}

.cancellation-policy {
  color: rgb(0 0 0);
  font-weight: normal;
  width: fit-content;
  padding-bottom: 1px;
  text-align: left;
  margin-top: 10px;
}

.buy i {
  margin-right: 8px;
  /* Adds space between the icon and text */
}

.ibuy {
  font-size: 14px;
}

/* Adjust the font size */
/* Promo popover container */
/* Flex container for product and promo */
.d-flex-x {
  display: block;
  justify-content: space-between;
  /* Space between title and promo */
  align-items: center;
  /* Vertically center content */
  gap: 15px;
  /* Space between h3 and promo-popover */
  width: 100%;
  /* Make sure the container is full width */
}

/* Product title styling */
.d-flex-x h3 {
  margin: 10px 3px 5px 3px;
  font-size: 16px;
  color: var(--deepwine-red);
  flex: 1;
  /* Allow it to take available space */
  /* white-space: nowrap;  */
  overflow: hidden;

  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-word;
  font-weight: 600;
  text-align: left;
}

.option-select {
  flex: 1;
  /* Allow it to take available space */
  /* white-space: nowrap;  */
  overflow: hidden;

  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-word;

}

.description {
  flex: 1;
  /* Allow it to take available space */
  /* white-space: nowrap;  */
  /* overflow: hidden; */

  /* -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-overflow: ellipsis; */
  /* word-break: break-word; */
}

/* Promo popover container */
.promo-popover {
  position: relative;
  /* padding: 6px 5px; */
  border-radius: 6px;
  font-size: 13px;
  width: 100%;
  text-align: center;
  float: right;
}

/* Arrow for the popover */
.arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

/* Popover content inline layout */
.popover-content {
  display: flex;
  /* Use flexbox layout */
  justify-content: space-between;
  /* Center horizontally (X-axis) */
  align-items: center;
  /* Center vertically (Y-axis) */
  text-align: center;
}

/* Save amount styling */
.save-amount {
  font-weight: bold;
  color: #18171a;
  /* margin-right: 320px; */
}

/* Percentage styling */
.percentage {
  font-size: 20px;
  color: #198754;
  font-weight: bold;
}

/* Original price styling */
.original-price {
  color: #666;
  text-decoration: line-through;
  font-size: 14px;
}

/* Discounted price styling */
.discounted-price {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 22px;
}

.discounted-price .currency-text {
  font-size: 14px;
}

.discounted-price .price-text {
  font-size: 50px;
  font-weight: bold;
}

/* Modal-specific price styling */
#product-modal .discounted-price {
  font-size: 45px;
  font-weight: bold;
  display: flex;
  margin-top: -14px;
}

#product-modal .original-price {
  color: #dc3545;
  text-decoration: line-through;
  font-size: 21px;
  margin-top: -9px;
  font-weight: 400;
}

#product-modal .discounted-price .currency-text {
  font-size: 21px;
  font-weight: BOLD;
}

#product-modal .discounted-price .price-text {
  font-size: 50px;
  font-weight: bold;
  margin-top: -12px;
}

/* .add-to-cart {
  background: var(--deepwine-red);
  color: white !important;
  border: 1px solid #b29d7a;
  border-radius: 6px;
  padding: 10px 123px;
  display: flex;
  justify-content: center;
  align-items: center;
} */
.add-to-cart {
  /* background: var(--deepwine-red); */
  color: var(--deepwine-red) !important;
  border: 1px solid var(--deepwine-red);
  background:none!important;
  border-radius: 6px;
  padding: 10px 123px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.g7 {
  gap: 7px;
}

.modal-description-heading {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #c11d2d;
  text-transform: capitalize;

}

.modal-extra-content {
  color: var(--wine-brown);
  margin-top: 15px;
}

.center {
  display: flex;
  /* Use flexbox layout */
  justify-content: center;
  /* Center horizontally (X-axis) */
  align-items: center;
  /* Center vertically (Y-axis) */
  text-align: center;
  /* Center text inside the element (optional, depending on content) */
  margin-right: 0;
}

#modal-description {
  color: var(--bg-theme);
}

#modal-image {
  width:100%;
  height:300px;
  object-fit: cover;
  /* max-height: 300px; */

}

.tab-wid {
  width: 100%;
}

.line-bottom {
  width: 200px !important;
  left: 225px !important;
}

.main-heading {
  margin-top: 10%;
  text-align: center;
  font-size: 32px;
  color: var(--bg-theme);
}

.img-br {
  width: 40%;
  margin-top: -14%;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: 31%;
}

.tab-body2 {
  margin: 0;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
}

.navtabs2 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background: white;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  padding: 10px 20px;
  position: relative;
  /* background: #d5877c17; */
}

.navtab2 {
  margin: 0 10px;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--bg-theme);
  transition: color 0.3s;
  justify-content: center;
  display: flex;
  align-items: center;
}

.navtab2.active {
  background-color: var(--bg-theme);
  color: #ffffff;
  background-image: var(--bg-theme);
  padding-bottom: 4px;
  position: relative;
}

.navtab2.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  /* Adjust this value to reduce the distance between background and border */
  height: 2px;
  /* Controls the thickness of the border line */
  background-color: var(--bg-theme);
  /* Border color */
}


/* new change */
.buy {
  padding: 5px 23px !important;
}

.buy_orginal_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.popover-content_popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.price-display {
  margin-bottom: 15px;
}

.popover-content_span_div_popup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency {
  font-size: 24px;
  vertical-align: top;
}

.popover-content_save {
  background: #d6f2e5;
  padding: 2px 100px;
  border-radius: 5px;
  margin-bottom: 10px;
  width: fit-content;
  color: #49356a;
  font-weight: bold;

}


/* cart stylrs */
/* cart */
.shopping-cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  width: 100%;
  margin-top: 5%;
}

.shopping-cart-summary_1 {
  gap: 20px;
  padding: 20px;
  width: 100%;
  margin-top: 5%;
}

.cart-item-box {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 8px;
  padding: 15px;
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.cart-item-box_1 {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-total-box {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 8px;
  padding: 15px;
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-total-box_1 {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 8px;
  padding: 4px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
}

.cart-item-details,
.cart-total-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.item-title {
  font-weight: bold;
  margin-bottom: 5px;
  flex: 1;
}

.remove-item {
  cursor: pointer;
  color: red;
  font-size: 20px;
}

.item-price,
.delivery-details {
  font-size: smaller;
}

.cart-total-details {
  font-size: 14px;
}

.cart-total-price {
  font-size: 19px;
  font-weight: bold;
}

.remove-icon {
  color: rosybrown;
}

.und {
  color: #6f524f;
}

/* image description buy */
.voucher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  padding: 16px;
  /* margin: 10px; */
  text-align: center;
  /* height: 1050px; */
}

.voucher-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}

.voucher-details h3 {
  font-size: 1.5rem;
  margin: 8px 0;
}

.voucher-details h6 {
  font-size: 1rem;
  color: #777;
  margin-bottom: 16px;
}

.voucher-pricing {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 16px 0;
}

.voucher-description {
  text-align: left;
}

.voucher-description ul {
  padding-left: 20px;
}

.voucher-delivery-card {
  border: 1px solid #e8d5d3;
  border-radius: 8px;
  padding: 10px;
  margin: 8px 5px;

}

.delivery-header {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.delivery-status .status-icon {
  width: 16px;
  height: 16px;
  background-color: green;
  border-radius: 50%;
  margin-right: 8px;
}

.delivery-options {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
  margin-top: 15px;
  text-align: left;
  /* background-image: linear-gradient(240deg, #b77c7a30, #f4d2cd54, #b688880a); */
  background: var(--lavender-white);
}

.delivery-option {
  margin-bottom: 15px;
  margin-right: 5px;
}

.delivery-option input {
  margin-right: 10px;
  vertical-align: middle;
}

.delivery-option label {
  font-weight: bold;
  color: #333;
}

.description {
  font-size: 14px;
  color: #666;
  margin-left: 25px;
  /* Aligns with the radio button */
}

.delivery-error {
  margin-top: 10px;
  font-size: 14px;
  color: red;
  display: none;
  /* Hidden by default */
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.custom-radio:hover {
  border-color: #4caf50;
  background: #f1f1f1;
}

.custom-radio input {
  display: none;
  /* Hide the default radio button */
}

.custom-radio span {
  font-size: 14px;
  color: #333;
}

.custom-radio input:checked+span {
  font-weight: bold;
  color: #4caf50;
  /* Highlight selected option */
}

/* Styling for the First Name Input */
.first-name-input {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Styling for the Last Name Input */
.last-name-input {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Styling for Labels */
.first-name-label,
.last-name-label,
.email-label {
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.radio-point {
  font-weight: 400;
  color: #676a6d;
}

/* Error text color */
.invalid-text {
  color: red;
}

/* Invalid input fields */
.invalid-input {
  border-color: red;
}

/* Form layout: Row with spacing between elements */
.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

/* Each input container in the form */
.input-container {
  width: 100%;
  /* Adjust for two items per row */
  padding: 0px 4px 0px;
}

/* Show the error message for invalid input */
.error-message {
  display: none;
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

/* Show error message when form is invalid */
.error-message.active {
  display: block;
}

/* Container for message */
.message-container {
  width: 100%;
  padding: 0px;
}

/* Label for message */
.message-label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

/* Styling for the textarea */
.message-textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Red color for invalid input */
.invalid-message {
  border-color: red;
}

.center {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-dust-gradient {
  background-image: var(--bg-theme);
  background-color: var(--bg-theme)!important;
  color: var(--white);
}

.navbar-header {
  background-color: var(--lavender-haze);
  background-image: url('https://assets.thedirectrate.com/vbe_new/images/giftv.jpg');
  /* Choose the background color you prefer */
  background-size: cover;
  background-position: initial;
  background-repeat: no-repeat;
  height:450px;
}

.promo-controls-wrapper {
  padding: 20px 0;
  /* Optional, to add space around the content */
}

.voucher-description ul li {
  padding: 3px 12px;
}

.payment-btn-wrapper {
  text-align: center;
  padding: 16px;
  /* Adjust padding as necessary */
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 101px;
  background-image: linear-gradient(240deg, #b77c7a, #f4d2cd, #b68888);
  color: white;
  border: 1px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
}

.payment-btn .glyphicon {
  margin-right: 8px;
  font-size: 18px;
  position: relative;
  top: 3px;
}

.payment-btn:hover {
  background-color: #218838;
  /* Darker green on hover */
}

.payment-btn:focus {
  outline: none;
  /* Remove outline on focus */
}

/* model view in cart */
/* General styles for the modal and button */
.voucher-button {
  display: block;
  /* Ensure the button is visible */
}

.voucher-modal {
  display: none;
  /* Hide the modal by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
  padding-top: 60px;
}

.voucher-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.voucher-close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  transition: 0.3s;
  cursor: pointer;
}

.voucher-close-btn:hover,
.voucher-close-btn:focus {
  color: black;
  text-decoration: none;
}

.voucher-table {
  width: 100%;
  border-collapse: collapse;
}

.voucher-table th,
.voucher-table td {
  padding: 10px;
  text-align: left;
}

.voucher-modal-image {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.voucher-header {
  text-align: center;
}

.voucher-main-heading {
  font-size: 35px;
  margin: 28px 0;
  color: #ca9797;
}

.voucher-footer {
  text-align: center;
  font-size: 14px;
}

.voucher-footer-text {
  margin-bottom: 10px;
  text-align: center;
}

.voucher-footer-contact {
  font-weight: bold;
  color: #444;
  text-align: center;
}

.wg-400 {
  font-weight: 400 !important;
}

.mt-10_ {
  margin-top: 4%;
}

.promo-form2 .input-group {
  /* max-width: 449px; */
  margin-right: 15px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.cart-item-box2 {
  box-shadow: 0 -3px 1px 0 rgba(0, 0, 0, -0.8), 0 0px 5px 0 rgba(0, 0, 0, 0.19);
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-box2_1 {
  box-shadow: 0 -3px 1px 0 rgba(0, 0, 0, -0.8), 0 0px 5px 0 rgba(0, 0, 0, 0.19);
  border-radius: 8px;
  width: 99%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-left: 5px;
}

.total-label {
  font-size: 19px;
  color: #6ec46e;
}

.total-price {
  font-size: 15px;
  font-weight: 500;
  margin-left: 8px;
}

.bg-rosegold {
  background-image: linear-gradient(240deg, #b68c8b, #f4d2cd, #b9acac);
}

/* Hide default checkbox */
.toggle-input {
  display: none;
}

.toggle-label {
  display: inline-block;
  width: 37px;
  height: 20px;
  background-color: #ccc;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
  top: 4px;
}

/* Toggle knob */
.toggle-label::after {
  content: "";
  width: 17px;
  height: 17px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.3s;
}

/* Checked state */
.toggle-input:checked+.toggle-label {
  background-color: var(--deepwine-red);
}

.toggle-input:checked+.toggle-label::after {
  left: 18px;
}

.fom-txt-label {
  display: flex;
  font-size: 14px;
  margin-left: 5px;
  color: var(--bg-theme);
  font-weight: 600;
}

.btn-brick {
  background-color: #9a424b;
  color: #ffffff;
}

/* Optional text alignment */
.delivery-option span {
  margin-left: 0px;
  vertical-align: middle;
}
.delivery-option_spans span{
  margin-left: 10px;

}

.b-top-all {
  margin-bottom: 50px;
}

#tab-container {
  margin: 20px 50px;
}

#modal-description,
#modal-cancelhead,
#modal-extra,
#modal-cancel {
  text-transform: capitalize;
}

.logins_new_btn {
  border: none !important;
}

.count_cart {
  margin-left: 6px;
  color: #7a4cc0;
  font-size: 19px;
  font-weight: 700
}

.cart-button {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 1px;
  right: 2px;
  background: red;
  color: white;
  font-size: 8px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 52%;
}

.padding_3 {
  padding: 10px;
}

.cart_items {
  display: flex;
}

.logins_new_btn {
  padding: 3px 7px !important;
}

.promo-controls-wrapper_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.col_md_6 {
  width: 50%;
}

@media screen and (min-width: 320px) and (max-width: 991px) {
  .shopping-cart-summary {
    display: block;
  }

  .cart-total-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
  }

  .cart-item-box2 {
    margin-top: 10px;
  }

  .cart_items {
    display: block;
  }

  .col_md_6 {
    width: 100%;
  }
}

@media screen and (min-width: 250px) and (max-width: 525px) {
  .promo-controls-wrapper_1 {
    /* display: block; */
  }

  .buy {
    padding: 0px !important
  }
}

@media screen and (min-width: 250px) and (max-width: 610px) {

  .navtabs2 {
    padding: 10px 10px !important;
  }

  .navtab2 {
    margin: 0px 3px;
    padding: 10px 10px !important;

  }
}

.dropdown_cs {
  position: relative;
}

.dropdown-menu_cs {
  height: 250px;
  overflow: scroll;
}

.popover-content_span_div {
  display: flex;
  align-items: center;
  float: right;
  padding: 2px 0px 4px 0px;
}

.nodatafoundclass img {
  width: 250px;
}

.ri-close-line:before {
  content: none !important;
}

.input-group-addon {
  z-index: unset !important;
}

.input-group-addon:hover {
  background-color: var(--lavender-mist) !important;
}

.input-group-addon:focus {
  box-shadow: none !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

.iti--separate-dial-code input {
  width: 100% !important;
}

.fa-trash {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.error {
  font-size: 12px;
}

/* .buy_orginal_price{
  display: flex;
} */
.padd450 {
  padding: 30px 0px !important;
}

/* cart new styles */
.button-g-flex {
  display: flex;
  gap: 10px;
}

.remove-btn {
  background: #fff;
  color: #7356a2;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  border: solid 1px #7255a1;
  align-items: center;
  justify-content: space-between;
  width: 120px;
  /* Adjust as needed */
}

.remove-btn i {
  margin-left: auto;
}

.currency-cart {
  font-size: 14px;
  /* Smaller size for AED */
  font-weight: bold;
}

.amount-cart {
  font-size: 19px;
  /* Larger size for the amount */
  font-weight: bold;
}

.currency-cart-total {
  font-size: 14px;
  /* Smaller size for AED */
  font-weight: bold;
  color: rgb(6 107 6);
}

.amount-cart-total {
  font-size: 19px;
  /* Larger size for the amount */
  font-weight: bold;
  color: rgb(6 107 6);
}

.currency-cart-sub {
  font-size: 15px;
  /* Smaller size for AED */
  color: rgb(146, 148, 146);
  font-weight: 500;
}

.amount-cart-sub {
  font-size: 18px;
  /* Larger size for the amount */
  font-weight: 500;
  color: rgb(136, 140, 136);
}

.lh {
  line-height: 16px;
  color: #888f96;
  font-size: 14px;
}

.cart-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
  /* border-top: solid 1px #eaeaeb; */
  padding: 25px 0px;
}

.cart-items {
  flex: 1 1 55%;
}

.cart-sidebar {
  flex: 1 1 30%;
  min-width: 300px;
}

.cart-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cart-item-content {
  display: flex;
  padding: 15px;
}

.cart-item-image {
  width: 190px;
  height: auto;
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  color: var(--deep-purple);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.cart-item-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 500;
}

.view-details-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
}

.view-details-btn i {
  margin-right: 5px;
}

.sidebar-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 27px 12px;
  margin-bottom: 15px;
}

.cart-summary {
  margin-bottom: 10px;
}

.cart-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  font-weight: bold;
  font-size: 19px;
  color: var(--primary-color);
}

.promo-code {
  display: flex;
  margin-top: 10px;
}

.promo-input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
}

.apply-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.delivery-options {
  margin-top: 15px;
}

.delivery-option {
  margin-bottom: 10px;
}

.delivery-option input {
  margin-right: 10px;
}

.delivery-option label {
  font-weight: bold;
}

.delivery-description {
  margin-left: 25px;
  font-size: 12px;
  color: #666;
}

.recipient-details {
  margin-top: 15px;
}

.form-row {
  display: flex;
  gap: 0px;
}

.form-row input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.message-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  resize: none;
  height: 80px;
  margin-top: 5px;
}

.proceed-btn {
  display: block;
  width: 100%;
  background: linear-gradient(to right, var(--primary-color), #9a3b3b);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 15px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: white !important;
  width: 50% !important;
  max-width: 800px !important;
  /* margin: auto !important; */
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  padding: 20px !important;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.voucher-header {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  margin-top:35px;
}

.voucher-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 4px;
}

.voucher-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: left;
}

.voucher-description {
  font-size: 14px;
  color: #666;
}

.voucher-content {
  padding: 15px 0;
}

.voucher-content ul {
  padding-left: 20px;
}

.voucher-content li {
  margin-bottom: 5px;
  text-align: left;
  font-weight: 300;
  list-style: none;
  margin-left: 10px;
}

.voucher-terms {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 13px;
  text-align: left;
}

.voucher-footer {
  font-size: 12px;
  color: #666;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  text-align: center;
  font-weight: 400;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .cart-wrapper {
    flex-direction: column;
  }

  .cart-item-content {
    flex-direction: column;
  }

  .cart-item-image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 150px;
  }

  .form-row {
    flex-direction: column;
  }
}

.cart-item-price b {
  font-weight: 500;
}

.cart-item-header .fa-trash {
  color: var(--bg-theme);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-item-header .fa-trash:hover {
  color: var(--deepwine-red);
}

.modal-content {
  margin-top: 20%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.payment-wrapper,
.confirmation-wrapper {

  margin: 30px auto;
  padding: 20px;
}

.confirmation-message {
  text-align: center;
  padding: 40px 20px;
}

.order-details {
  margin: 30px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* Payment Form Styles */
.payment-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-method {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  flex: 1;
}

.payment-method.active {
  border-color: #007bff;
  background-color: #f0f7ff;
}

.payment-method img {
  height: 40px;
  margin-bottom: 10px;
}

.card-element {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
}

.card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}



/* my style */
/* new change */
.buy {
  padding: 5px 23px !important;
}

.buy_orginal_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  clear: both;
}

.popover-content_popup {
  /* display: block; */
}

.popover-content_span_div_popup {
  justify-content: center;
}

.popover-content_save {
  background: #d6f2e5;
  display: inline-flex;
  padding: 2px 44px;
  margin-bottom: 6px;
  border-radius: 5px;
  margin-top: 3px;

}

/* .loader_vou {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #5534db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
} */
.loader_vou {
  position: relative;
  text-align: center;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  top: 40px;
}
.loader_vou::after ,
.loader_vou::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px var(--primary-color);
  border-style: dotted solid dotted solid;
  animation: turn-left 1.5s linear infinite;
}
.loader::before {
  /* left: calc(50% - 25px); */
  top: calc(50% - 25px);
  width: 150px;
  height: 150px;
  border-style: dotted dotted solid solid;
  animation: turn-right 1.5s linear infinite;
}
@keyframes turn-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes turn-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* 
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
} */

/* To hide/show loader */
.hidden {
  display: none;
}










/* Container styling with enhanced backdrop */
.swal2-container {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.4) !important;
}

/* Main popup styling with elegant design */
.swal2-popup {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 420px;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: "Inter", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

/* Enhanced success icon with subtle gradient */
.swal2-icon.swal2-success {
  border-color: #4CAF50;
  margin: 0rem auto .6em;

  /* margin: 1.5rem auto 2rem; */
  position: relative;
}

.swal2-icon.swal2-success:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #4CAF50;
  height: 0.25rem;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(76, 175, 80, 0.5);
  box-shadow: inset 0 0 10px rgba(76, 175, 80, 0.1);
}

.swal2-icon.swal2-success .swal2-success-circular-line-left,
.swal2-icon.swal2-success .swal2-success-circular-line-right,
.swal2-icon.swal2-success .swal2-success-fix {
  background-color: transparent;
}

/* Elegant title styling */
.swal2-title {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
  padding: 0px;
  margin-bottom: 0px !important;
  background: linear-gradient(135deg, #2c3e50, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Message styling with improved readability */
.swal2-html-container {
  color: #5a6268;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0.75rem 0 2rem;
  font-weight: 400;
}

/* Beautiful button styling */
.swal2-actions {
  margin-top: 1.5rem;
}

.swal2-styled.swal2-confirm {
  background: var(--bg-theme);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-transform: uppercase;
}

.swal2-styled.swal2-confirm:hover {
  background: var(--bg-theme);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.25);
}

/* Enhanced animation for the popup */
.swal2-show {
  animation: swal2-show-beautiful 0.5s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

@keyframes swal2-show-beautiful {
  0% {
    transform: translateY(25px) scale(0.9);
    opacity: 0;
  }

  50% {
    transform: translateY(-5px) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Beautiful "View Cart" button */
.view-cart-btn {
  background: transparent;
  color: #6C5CE7;
  border: 2px solid rgba(108, 92, 231, 0.5);
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  margin-left: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
}

.view-cart-btn:hover {
  background-color: rgba(108, 92, 231, 0.1);
  transform: translateY(-3px) scale(1.02);
  border: 2px solid rgba(108, 92, 231, 0.8);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.15);
}

/* Add a subtle pulse to the success icon */
@keyframes success-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.swal2-icon.swal2-success {
  animation: success-pulse 2s infinite ease-in-out;
}

/* Add a subtle glow effect to the popup */
.swal2-popup:after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(76, 175, 80, 0.2));
  border-radius: 25px;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.5;
}

/* cart empty */



.empty-cart-container_empty {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.empty-cart-container_empty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background:var(--lavender-mist)
}

.cart-icon_empty {
  width: 100px;
  height: 100px;
  background-color: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.cart-icon_empty svg {
  width: 50px;
  height: 50px;
  fill: var(--lavender-mist);
}

.empty-cart-container_empty h2 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.empty-cart-container_empty p {
  color: #7f8c8d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.shop-more-btn_empty {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(108, 92, 231, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-more-btn_empty:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.4);
}

.shop-more-btn_empty:active {
  transform: translateY(1px);
}

.decoration-circle_empty {
  position: absolute;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.05);
  z-index: -1;
}

.circle-1_empty {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: -30px;
}

.circle-2_empty {
  width: 80px;
  height: 80px;
  top: 30px;
  right: -20px;
}

@media (max-width: 576px) {
  .empty-cart-container_empty {
    padding: 30px 20px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }

  .shop-more-btn_empty {
    padding: 14px 28px;
    font-size: 14px;
  }
}

.error-label,
.error {
  color: red;
  font-size: 12px;

}

.del-d-flex {

  display: flex;

}


/* last change */
.avatar_pro {
  color: #ffffff !important;
  /* background-image: linear-gradient(240deg, #49356a, #8a79a7, #49356a) !important; */
  background-image: linear-gradient(240deg, var(--lavender-mist), var(--secondary-color), var(--bg-theme)) !important;

}

/* profile  */

.field_prof_pass {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.field_prof_chanage,
.field_prof_reset {
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}

.field_prof_chanage {
  color: #ffffff !important;
  background-image:var(--bg-theme) !important;
  background:var(--bg-theme) !important;

  border: none;
}

.field_prof_reset {
  background-color: #fff;
  color: var(--bg-theme);
  border: 1px solid var(--bg-theme);
}

.field_prof_chanage:hover {
  background-color: #3b1772;
}

.field_prof_reset:hover {
  background-color: #f8f4ff;
}

.field_prof_reset {
  color: var(--bg-theme) !important;
}

.edit-button_prof {
  color: #5b497b !important;
}

.menu-item_prof.active {
  background-color: #f2eefa !important;
  color: #37117a !important;
}

.sidebar_prof h2 {
  color: var(--deepwine-red);
}

body.logged-in .button-group button {
  background-color: #f2eefa !important;
  color: #ffffff;
}

.b_widget_login_field_head_new{
  font-size: 17px;
  color: red;
}
.overlay_vbe{
 position :fixed;
top : 0;
left :0;
 width : 100%;
 height : 100%;
  background :rgba(0, 0, 0, 0.7);
 display : flex;
  justify-content :center;
  align-items : center;
z-index : 9999;
}
.delivery-option p{
  font-size: 12px;
  color:#979b9b;
  margin-bottom: 10px;
  margin-left: 25px;
  font-weight:normal;
}
.delivery-option12{
  width:50%;
}
.recipient-description,.me-description{
display: none;
}
.pay_login_back{
  color: green;
  /* background-color: blanchedalmond; */
  width: 50px;
  /* text-align: center; */
  display: contents;
  cursor: pointer;
  /* display: table; */
  background: bisque;

}
#modal-description ul li{
  text-align: justify;
}


.header-logo-img.logo-landscape{
  /* height: 100%; */
  width: auto; 
}



.header-logo-img.logo-portrait {
  width: 100%;
  height: auto; 
}

.header-logo-img.logo-square{
  /* width: 100%;
  height: 100%; */
  width:60px;
  height:60px;
}
.ribbon_offer_save{
  position: absolute;
    top: 12px;
    left: 10px;
    background: #800020;
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 6px;
    text-transform: capitalize;

}
.popover-content_span_div_price{
  display: flex;
align-items: center;
position: absolute;
    background: #000000d9;
    bottom: 0px;
    right: 0;
    padding: 1px 15px;
    color: #fff;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0% 100%);
    transition: bottom 0.3s ease;

}
.popover-content_span_div_price .discounted-price
{
margin-left:8px;
font-weight: 700;
}






.accordion {
  width: 100%;
  /* border: 1px solid #ccc; */
  border-radius: 6px;
  /* background: #fff; */
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 7px;
  cursor: pointer;
  /* background: #f5f5f5; */
  font-weight: bold;
  transition: background 0.3s;
}

.accordion-header h3 {
font-size: 15px;
font-weight: 500;
margin: 0;
text-transform: capitalize;
}

.accordion-header:hover {
  /* background: #e9e9e9; */
}

.accordion-body {
  display: none;
  padding: 16px 7px;
  border-top: 1px solid #ddd;
  
}
.accordion-body.act{
  height:130px;
  overflow-y:scroll;
}
.acc_arrow {
  font-size: 16px;
  transition: transform 0.3s;
  margin-right:15px;
}

.acc_arrow.rotate {
  transform: rotate(180deg); /* arrow points up when open */
}
.underlines {
  border: 1px #dedede;
  border-bottom-style: solid;
}
.option-items {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  margin-bottom: 6px;
  cursor: pointer;
  justify-content: space-between;
}

.option-items input[type="radio"] {
  accent-color: #7B3391; /* purple or your theme color */
}

.option-titles {
  font-weight: 400;
    font-size: 13px;
    text-transform: capitalize;
}
.accrod_p{
  font-size: 13px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0px;
}
.btm_section{
  display: flex;
  margin: 20px 9px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
}
/* .product_section{
  border-left: 2px solid #eaeaea;
  border-right:2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

} */
.product_section{
  flex:1;
  display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.popover-conten-absolute{
  position:relative;
}
.c_white{
  
  color:#d6d6d6;
}
.c_whites{
  color:#ffffff;
}
.product-card:hover .popover-content_span_div_price{
/* bottom:-11px; */
}













.radio-and-details {
  /* Group the radio button and option details */
  display: flex;
  align-items: center;
}

.option-details-group {
  margin-left: 10px;
}



.option-description {
  font-size: 0.9em;
  color: #555;
  margin: 2px 0;
}

/* --- Counter Styling --- */
.count-widget-group {
  /* This will be shown/hidden by the JavaScript */
  display: none; 
  align-items: center;
  border-radius: 4px;
}

.count-btn {
  /* Styles for the '-' and '+' buttons */
  background: none;
  border: none;
  padding: 0 10px;
  font-size: 1.2em;
  cursor: pointer;
}

.option-count-input {
  /* The center number input */
  width: 30px;
  text-align: center;
  font-size: 12px;
  -moz-appearance: textfield; /* Hide arrows in Firefox */
}
.option-count-input::-webkit-outer-spin-button, 
.option-count-input::-webkit-inner-spin-button {
  /* Hide arrows in Chrome/Safari */
  -webkit-appearance: none;
  margin: 0;
}

.price-adder {
  /* The + AED XXX text */
  margin-left: 10px;
  font-weight: bold;
  color: #4CAF50; /* Example green color */
}

/* Price Information Styling */
.price-original {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}
.price-discounted {
  font-weight: bold;
}
.price-diff{
  font-size:12px;
  color:#555;
  font-weight: 500;
}







/* new design */
  /* Main Content */
  .add-to-crt-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
  }
  
  .add-to-crt-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  
  .add-to-crt-layout {
    display: flex;
    gap: 24px;
    flex-direction: column;
  }
  
  /* Left Column */
  .add-to-crt-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .add-to-crt-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .add-to-crt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E7E2E2;
    cursor: pointer;
  }
  
  .add-to-crt-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
  }
  
  .add-to-crt-chevron {
    width: 20px;
    height: 20px;
    color: #666;
  }
  
  /* Package Display */
  .add-to-crt-package {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    border-bottom: 1px solid #d2d2d2d2;
}
  .add-to-crt-package-img {
    width: 80px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .add-to-crt-package-info {
    flex: 1;
    min-width: 200px;
  }
  
  .add-to-crt-package-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
  }
  
  .add-to-crt-package-details {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }
  
  .ad-det-sm {
    font-size: 12px;
  }
  
  .add-to-crt-package-price {
    color: #003F88;
    font-size: 18px;
    font-weight: 700;
    text-align: end;
    width: 100%;
    margin-top: -8px;
    margin-bottom: 5px;
  }
  
  .add-to-crt-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
  }
  
  .add-to-crt-quantity-label {
    font-size: 14px;
    color: #666;
  }
  
  .add-to-crt-quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .add-to-crt-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #dddddd00;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
  }
  
  .add-to-crt-qty-number {
    font-size: 14px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
  }
  
  /* Form Fields */
  .add-to-crt-form-row {
    display: block;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  /* Default: stacked on mobile */
  .add-to-crt-flex-responsive {
    display: block;
  }
  
  /* Desktop: side-by-side layout */
  @media (min-width: 768px) {
    .add-to-crt-flex-responsive {
        display: flex;
        gap: 20px;
    }
  }
  
  .add-to-crt-form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
  }
  
  .icon-input {
    position: relative;
    margin-bottom: 0px!important;
  }
  
  .add-to-crt-rec-title {
  
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    flex: none;
    order: 0;
    flex-grow: 0;
    padding: 15px 0px;
  
  }
  
  .icon-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #B5AEA7;
    /* soft gray icon color */
    font-size: 16px;
  }
  
  .add-to-crt-input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    /* add left padding for icon */
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
  }
  
  .add-to-crt-input::placeholder {
    color: #B5AEA7;
  }
  
  
  .add-to-crt-input::placeholder {
    color: #989898;
    font-size: 14px;
    font-weight: 400;
  }
  
  .add-to-crt-input-icon {
    position: relative;
  }
  
  .add-to-crt-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    /* font-family: inherit; */
    font-family: "Inter", sans-serif;
  }
  
  .add-to-crt-char-count {
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-top: 4px;
  }
  
  .add-to-crt-note {
    font-size: 12px;
    color: #707070;
    line-height: 1.5;
  }
  
  /* Radio Options */
  .add-to-crt-radio-group {
    display: flex;
    gap: 12px;
  }
  
  .add-to-crt-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .add-to-crt-radio {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  
  .add-to-crt-radio-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    margin-bottom: 0px;
  }
  
  /* Right Column - Summary */
  .add-to-crt-right-column {
    width: 100%;
  }
  
  .add-to-crt-summary-card {
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* position: sticky; */
    top: 20px;
  }
  
  .add-to-crt-summary-header {
    padding: 16px 20px;
    border-bottom: 1px solid #E7E2E2;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
  }
  
  .add-to-crt-summary-content {
    padding: 20px;
  }
  
  .add-to-crt-package-summary {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .add-to-crt-summary-package-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
  }
  
  .add-to-crt-summary-list {
    list-style: none;
    font-size: 14px;
    color: #000000;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .add-to-crt-summary-package-details {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 20px;
  }
  
  .add-to-crt-summary-list li:before {
    content: "• ";
    color: #003F88;
    font-weight: bold;
    margin-right: 8px;
  }
  
  .add-to-crt-price-section {
    margin-bottom: 20px;
  }
  
  .add-to-crt-price-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .add-to-crt-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
  }
  
  
  
  .add-to-crt-mebr-dic {
    color: var(--color-primary);
  }
  
  .add-to-crt-price-value {
    font-weight: 400;
  }
  
  .add-to-crt-discount {
    color: #059a34;
  }
  
  /* .add-to-crt-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 16px 0;
  } */
  
  .add-to-crt-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  
  }
  
  .add-to-crt-total-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
  }
  
  .add-to-crt-total-value {
    font-weight: 700;
  }
  
  .add-to-crt-purchase-btn {
    width: 100%;
    background: var(--bg-theme);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .add-to-crt-purchase-btn:hover {
    background: var(--bg-theme);
  }
  
  .add-to-crt-disclaimer {
    font-size: 11px;
    color: var(--text-light-grey);
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
    font-weight: 300;
  }
  
  /* Terms Section */
  .add-to-crt-terms-content {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
  }
  
  .add-to-crt-terms-title {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 12px;
  }
  
  .add-to-crt-terms-text {
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 12px;
  
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .add-to-crt-layout {
        flex-direction: row;
    }
  
    .add-to-crt-right-column {
        width: 410px;
        flex-shrink: 0;
    }
  }
  
  @media (min-width: 1024px) {
    .add-to-crt-title {
        font-size: 32px;
    }
  
    .add-to-crt-main {
        padding: 32px 20px;
    }
  }
  
  @media (max-width: 767px) {
    .add-to-crt-header-content {
        gap: 12px;
    }
  
    .add-to-crt-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
  
    .add-to-crt-title {
        font-size: 19px;
    }
  
    .add-to-crt-package {
        flex-direction: column;
    }
  
    .add-to-crt-package-img {
        width: 100%;
        height: 200px;
    }
  
    .add-to-crt-summary-card {
        position: static;
    }
  }
  
  @media (max-width: 480px) {
    .add-to-crt-main {
        padding: 16px 12px;
    }
  
    .add-to-crt-section {
        padding: 16px;
    }
  
    .add-to-crt-form-group {
        min-width: 100%;
    }
  }
  
  .add-to-crt-link img {
    width: 13px;
    margin-right: 2px;
  }
  
  .add-to-crt-srch-bx::placeholder {
    color: #B5AEA7;
  }
  
  .add-to-crt-input::placeholder {
    color: #989898;
  }
  
  .add-to-crt-section-header {
    cursor: pointer;
    user-select: none;
  }
  
  /* Hide everything in the section except the header when collapsed */
  .add-to-crt-section.collapsed> :not(.add-to-crt-section-header) {
    display: none;
  }
  
  .add-to-crt-section.collapsed .add-to-crt-section-body {
    display: none; /* hide body when collapsed */
  }
  
  .add-to-crt-section .fa-chevron-up {
    transform: rotate(180deg); /* optional flip */
  }
  .mb-2 {
    margin-bottom: 20px;
  }
  
  .add-to-crt-radio {
    accent-color: var(--color-primary);
    /* Modern browsers (best way) */
  }
  
  
  .row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 16px; */
    /* spacing between boxes */
  }
  @media screen and (min-width: 1701px) and (max-width: 2000px) {}
  
  @media screen and (min-width: 1500px) and (max-width: 1700px) {}
  
  @media screen and (min-width: 1301px) and (max-width: 1499px) {}
  
  @media screen and (min-width: 1201px) and (max-width: 1300px) {}
  
  @media screen and (min-width: 1025px) and (max-width: 1200px) {}
  
  @media screen and (min-width: 1000px) and (max-width: 1024px) {}
  
  @media screen and (min-width: 768px) and (max-width: 999px) {
      .row-md {
          gap: 5px;
      }
  
      .add-to-crt-radio-group {
          display: block;
          line-height: 30px;
      }
  
      .add-to-crt-right-column {
          width: 350px;
      }
  
      .add-to-crt-package-img {
          width: 80px;
          height: 100px;
      }
  
      .add-to-crt-package-name {
          font-size: 14px;
      }
  }
  
  @media screen and (min-width: 641px) and (max-width: 767px) {
      .add-to-crt-header-content {
          gap: 10px 60px !important;
      }
  }
  
  @media screen and (min-width: 568px) and (max-width: 640px) {
      .add-to-crt-header-content {
          gap: 10px 60px !important;
      }
  }
  
  @media screen and (min-width: 481px) and (max-width: 567px) {
      .add-to-crt-header-content {
          gap: 10px 48px !important
      }
  }
  
  @media screen and (min-width: 340px) and (max-width: 480px) {
      .row-md {
          gap: 0px;
      }
  
      .add-to-crt-header-content {
          gap: 18px !important;
      }
  }
  
  
  /* mobile media from 768 */
  @media (max-width: 768px) {
  
  .option-items{
    /* justify-content:start; */
  }
      .add-to-crt-radio-group {
          display: block;
          line-height: 30px;
      }
  }
  /* .loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  } */
  /* .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px; height: 40px;
    animation: spin 1s linear infinite;
  } */
  .loader {
    position: relative;
    text-align: center;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    top: 40px;
  }
  .loader::after ,
  .loader::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px var(--primary-color);
    border-style: dotted solid dotted solid;
    animation: turn-left 1.5s linear infinite;
  }
  .loader::before {
    /* left: calc(50% - 25px); */
    top: calc(50% - 25px);
    width: 150px;
    height: 150px;
    border-style: dotted dotted solid solid;
    animation: turn-right 1.5s linear infinite;
  }
  @keyframes turn-right {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes turn-left {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  @keyframes spin { 100% { transform: rotate(360deg); } }
  .empty-cart-body{
    display: flex;
  }
  .error-msg {
    color: red;
    font-size: 12px;
    margin-top: 4px;
    display: block;
  }
  
.header-logo-img {
  width: 60px;
  /* height: 60px; */
}
.add-to-crt-qty-btn.remove {
  background-color: #e74c3c;
  color: #fff;
  margin-left: 3px;
  border: none;
  padding: 5px 5px;
  cursor: pointer;
  width:63px;
}
.add-to-crt-qty-btn.remove:hover {
  background-color: #c0392b;
}
.in-cart {
  background-color: var(--bg-theme)!important; /* green */
  cursor: default;
  color:green!important;
}
.in-cart:hover {
  background-color:  var(--bg-theme)!important;

}
.product-title{
  text-transform: capitalize;
}
input[type="date"] {
  appearance: auto;
  -webkit-appearance: auto;
  pointer-events: auto !important;
}
.icons_inputs{
  margin-bottom: 20px;
}
.add-to-crt-form-group .iti{
  width:100%;
}
.iti input{
  width:100%;
}
.card_details_input[type=tel] {
  padding-left: 85px!important;
  }
.iti__country-list{
  width:235px!important;
}
 
  


  


  .slider-wrapper {
    position: relative;
  }
  
  .product-images-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
  }
  
  .slide {
    flex: 0 0 100%; /* one image per view */
    scroll-snap-align: start;
  }
/*   
  .slide img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 4px;
  } */
  
  .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 10px; /* dots on left side */
  }
  
  .slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-dots .dot.active {
    background-color: #333;
  }
  

  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgb(0 0 0 / 93%);
    justify-content: center;
    align-items: center;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
  }
  
  /* Close button top-right */
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff!important;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    opacity: 1!important;
  }
  
  /* Prev/Next arrows vertically centered */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 8px;
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
  }
  
  .prev { left: 20px; }
  .next { right: 20px; }
  .iti{
    width:100%;
    display: inline-grid;
  }
  .option-details-group{
    text-align: left;
  }
  .language-dropdown button {
    background-color: #e8e8e8;
    padding: 1px 11px;
    background: white !important;
    border: 1px solid #d1bb9f !important;
    color: #000000!important;
    padding: 7px 9px !important;
    border-radius: 6px !important;
    /* font-weight: 600 !important; */
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-size: 14px !important;
    height: 44px;
}
.b_widget_dropdown-menu_lang, .b_widget_dropdown-menu_currency {
  height: 195px;
  overflow: scroll;
  margin-top: 5px !important;
  position: absolute;
  /* top: 27px; */
  z-index: 99999;
  background: #fcfcfc;
  border-radius: 5px;
  right: 0px;
  padding: 1px 20px;
  box-shadow: 0px 0px 3px 0px #d2d2d2;
  opacity: 1;
}
.b_widget_dropdown-menu_lang li, .b_widget_dropdown-menu_currency li {
  padding: 2px 1px;
  list-style: none;
}
.dropdown-item_lang {
  display: block;
  width: 100%;
  /* padding: .25rem 1rem; */
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}





.loader{
  display: flex;
  background: rgb(71 23 23 / 60%);
  position: fixed !important;
  top: -107px;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* z-index: 999999; */
  background: rgba(255, 255, 255, 0.6);
}
.loader::after, .loader::before {
  position: fixed !important;

}
.loader::after{
  top: calc(53% - 25px);
}
.toastalert {
  position: absolute;
  bottom: 29px;
  right: 20px;
  background: #333; 
  color: #fff; 
  padding: 12px 18px; 
  border-radius: 6px; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.4s ease; 
  font-size: 14px; 
  z-index: 9999; 
} 
.toastalert.show { 
  opacity: 1; 
}
.accordion_change_pack{
  position: relative;
}
.add-to-crt-quantity{
  position: relative;
}
 /* Member Discount Section */
 .discount-section {
  background: white;
  margin: -50px auto 0;
  max-width: 1000px;
  padding: 13px 19px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.discount-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height:50px;
  
}

.discount-label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.toggle-switch_n {
  position: relative;
  width: 82px;
  height: 32px;
  background: #e5e7eb;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  padding: 0 5px;
}

.toggle-switch_n.active {
  background: #10b981;
}

.toggle-labels_n {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.toggle-label_n {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  transition: color 0.3s;
}

.toggle-switch_n.active .toggle-label_n.on {
  color: white;
}

.toggle-switch_n:not(.active) .toggle-label_n.off {
  color: #374151;
}

.toggle-slider_n {
  position: absolute;
  width: 31px;
  height: 23px;
  background: white;
  border-radius: 20px;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  left: 5px;
}

.toggle-switch_n.active .toggle-slider_n {
  transform: translateX(36px);
}

.discount-tooltip {
  position: absolute;
  background: #222;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  display: none;
  z-index: 999;
  top: 20px; /* adjust */
  left: 0;   /* adjust */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: left;
  font-weight: 300;
}

.save-text {
  position: relative;
  display: inline-block;
}

.discount-info-icon {
  margin-left: 6px;
  cursor: pointer;
}
.member_loyalty{
  background-image: url("	https://assets.thedirectrate.com/widget/images/bg-widget-member-1.png");
  text-align: end;
  height: 100%;
  color: #ffff;
  /* display: flex; */
  justify-content: end;
  align-items: center;
  padding: 10px 2px 2px 3px;
  background-size: cover;
}
.discount-toggle_1{
  display: flex;
  justify-content: space-around;
}
.loyalty-title {
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  line-height: 6px;
  color: #ECD38A;
}
.member_loyalty p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #fff;
}





.b_widget_member_modal_content {
  /* height: 450px;
  overflow: scroll;
  text-align: left;
  border: 1px #e1e1e1; */
  height: 460px;
  overflow: scroll;
  text-align: left;
  border: 1px #e1e1e1;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 474px;
  border-radius: .3rem;

}
.b_widget_member_details_content {
  padding: 10px;
  margin: 10px;
}
.b_widget_memberdetails_pop_head {
  font-size: 17px;
  /* text-transform: uppercase; */
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 2px;
  color: #000000;
}
.b_widget_member-details_modal {
  /* max-width: 447px; */
}

.b_widget_memberdetails_all {
  margin: 11px 16px 0px 16px;
  padding: 5px 5px;
}
.b_widget_memberdetails_all h6 {
  font-weight: 500;
  font-size: 15px;
}
.b_widget_memberdetails_all button {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 28px;
  border-radius: 5px;
  border:none;
}
.b_widget_memberdetails_new {
}
.b_widget_memberdetails_new h6 {
  font-weight: 600;
  font-size: 14px;
}
#close-member-popup{
    border:none;
}
.b_widget_memberdetails_new button {
  background: #4fa687;
  color: #fff;
  padding: 4px 24px;
  border-radius: 5px;
  text-shadow: 1px 1px 4px #6c807c;
  border:none;
}
.b_widget_memberdetails_new p {
  margin: 2px;
  font-size: 12px;
  color: #6b6b6b;
}
.b_widget_memberdetails_other {
  padding: 5px;
  margin: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  color: #4e4d4d;
}
.b_widget_rate_right_visible {
  position: fixed;
  z-index: 99;
  right: 3px;
  top: 175px;
  transition: transform 0.3s ease;
  /* height: 437px; */
  overflow: scroll;
  border: 1px solid #dedede;
  border-radius: 7px;
  width: 270px;
}

.b_widget_rate_right_visible_rate {
  position: fixed;
  z-index: 99999;
  right: 3px;
  top: 180px;
  transition: transform 0.3s ease;
  height: 407px;
  overflow: scroll;
  border: 1px solid #dedede;
  border-radius: 7px;
  width: 270px;
}
.b_widget_rate_right_visible_cart {
  position: fixed;
  z-index: 99;
  right: 3px;
  top: 180px;
  transition: transform 0.3s ease;
  font-size: 31px;
  background: #000000;
  padding: 5px 8px;
  border-radius: 7px;
  /* width: 300px; */
}
.b_widget_rate_right_visible_arrows {
  position: fixed;
  right: 0px;
  /* background: black; */
  text-align: end;
  padding: 4px 14px 0px 1px;
}
.b_widget_rate_right_visible_arrows svg {
  background: #000;
  color: #fff;
  padding: 6px 6px;
  font-size: 30px;
}
.b_widget_rate_right_visible_rate.hidden {
  transform: translateX(100%);
  right: 0px;
  /* Move the element to the right to hide it */
}

.b_widget_rate_right_visible.hidden {
  transform: translateX(100%);
  right: 0px;
  /* Move the element to the right to hide it */
}
.b_widget_ofr_area_image_11 {
  border: 1px solid #d2d2d2;
  border-radius: 7px;
}
.b_widget_rate_right_visible_cart svg {
  color: #fff;
}
.b_widget_member_details_content_1 {
  box-shadow: 0px 2px 14px 5px #f1f1f1;
  padding: 15px 13px;
  border-radius: 5px;
}
.b_widget_member_details_content_1_img {
  width: 75px;
}
.b_widget_member_details_content_1_content {
  padding: 0px 16px;
}
.b_widget_memberdetails_new_contnet {
  margin-top: 7px;
  /* border: 1px dotted; */
  padding: 5px 0px;
  border: 1px dashed #e3e3e3;
  /* border-width: 2px; */
  border-radius: 5px;
}
.b_widget_memberdetails_new_contnet p {
  line-height: 15px;
}
.add-to-crt_witht{
    color: #8a8a8ad2;
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
}











/* ===== Mobile Toggle Button ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  color:#fff;
}

/* ===== Mobile Wrapper ===== */
.mobile-menu-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.button-group {

align-items: center;
display: flex;
}
#logins_btn{
      margin-left: 10px;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #b9986da8;
    transition: all 0.3s ease;
}
.mobile-menu-wrapper{
  justify-content: end;
}
.mobile-menu-wrapperindex{
  justify-content: space-between;
}
.user-wrap{
  margin-left:10px;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  .promo-controls-wrapper {
    width: 100%;
    justify-content: space-between;
    position: relative;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-wrapper {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
    width: 300px;
    /* background: aliceblue; */
    /* margin: 4px 9px -7px 12px; */
    position: absolute;
    right: 8px;
    top: 100px;
  }

  .navbar-header.nav-open .mobile-menu-wrapper {
    display: flex;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
    gap:6px;
    align-items: flex-start;
  }

  .button-group button,
  .promo-form {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 16px;
    /* margin-bottom: 12px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    transition: transform 0.3s ease;
    transform: translateY(0);
    margin-left: 0%;

  }
  .promo-form .input-group{
    display: flex;
    gap: 6px;
    max-width:none; 
    margin-right: 15px; 
     height: auto; 
    margin-left: 5px;
    border-radius: 5px!important;

  }
 .applybtnde{
    color: white;
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px!important;
    box-shadow: none;
    border-right:none!important;
 }
 .removebtnde{
 background: #f5f5f5;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 5px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border:none;
    padding: 10px 15px !important;
}
.cart-badge{
  right: 12px;
  top:3px;
}

}

.cart-button .cart-text
 { display: none;
}
 @media (max-width: 768px) {
  
 .cart-button .cart-text 
 { display: inline;
  font-weight: 300;
    font-size: 16px;
    cursor: pointer
} 
}
@media (max-width: 575px) {
.discount-toggle{
  display: block;
}
.discount-toggle_1{
  justify-content: left;
  gap: 8px;
}
.discount-section{
  height:120px;
}
.member_loyalty{
  margin-top:10px;
}
.loyalty-title{
  line-height: 10px!important;
}
}