.logout-button-link {
  display: block;
}

.no-logout-button-link {
  display: none;
}

.no-login-button-link {
  display: none;
}

.product-block:hover {
  /* box-shadow: 10px 20px 30px ; */
  /* padding: 10px; */
  /* animation: mymove 5s infinite; */
}
.product-block:hover .add-to-cart-button {
  display: flex;
  /* animation: mymove 5s infinite; */
}

.add-to-cart-button {
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  display: none;
  background-color: #d66536;
  color: white;
  /* border: 1px solid #d66536; */
  padding: 10px;
  margin: 8px 0 8px 15px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-width: 100%;
  height: 45px;
}

/* .add-to-cart-button:hover {
  background-color: #d66536;
  color: white;
 
} */
/* alt logo */
.alt-logo {
  /* font-size: 20px; */
  font-family: PlayfairDisplay-Bold;
  color: #d66536;
  font-weight: bolder;
  padding: 10px;
  box-shadow: 0 4px 8px 0 #d66536;
}

/* Adjustments for tablets */
@media (max-width: 768px) {
  .alt-logo {
    font-size: 18px;
    padding: 8px;
    box-shadow: 0 3px 6px 0 #d66536;
  }
}

/* Adjustments for mobile phones */
@media (max-width: 480px) {
  .alt-logo {
    font-size: 13px;
    padding: 6px;
    box-shadow: 0 2px 4px 0 #d66536;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* .product-block:hover {
    margin-bottom: 10px;

  } */
}

/* css style for the text links in login page */
.link-containerR {
  /* display: flex;
  justify-content: space-between; */
  margin-top: 10px;
}

.left-link {
  float: left;
}

.right-link {
  float: right;
}

/* css style for cart page adjustments */
.wrap-table-shopping-cartt {
  display: flex;
  flex-direction: column;
}

.card-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  padding: 10px;
  /* border-radius: 5px; */
  background-color: #fff;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

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

.card-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-image {
  width: 100px; /* Adjust image size */
  height: auto;
  margin-right: 15px;
}

.product-details {
  flex: 1;
}

.product-name {
  color: #d66536;
  font-size: 16px; /* Adjust font size */
  margin-bottom: 5px;
}

.product-size {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #d66536;
}

.product-description {
  /* color: #d66536; */
}

/* .btn-remove {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.btn-remove:hover {
  background-color: #f44336;
} */

.quantity {
  display: flex;
  align-items: center;
}

.product-num {
  width: 50px;
  text-align: center;
  margin: 0 10px;
  border: 1px solid #ccc;
  padding: 5px;
  background-color: #f7f7f7;
  height: 100%;
  border-radius: 30px;
}

.btn-product-up {
  background-color: white;
  color: #d66536;
  border: none;
  padding: 5px 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.btn-product-up:hover {
  background-color: #d66536;
  color: white;
}

.btn-product-down {
  background-color: white;
  color: #d66536;
  border: none;
  padding: 5px 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.btn-product-down:hover {
  background-color: #d66536;
  color: white;
}

.btn-product-down.disabled {
  pointer-events: none;
  opacity: 0.6; /* Reduce opacity to indicate disabled state */
  cursor: not-allowed; /* Change cursor to indicate non-clickable */
}

.btn-product-up.disabled {
  pointer-events: none;
  opacity: 0.6; /* Reduce opacity to indicate disabled state */
  cursor: not-allowed; /* Change cursor to indicate non-clickable */
}

.cart-update-loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #d66536;
  margin: 0 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

.btn-remove {
  background-color: white;
  color: #d66536;
  border: none;
  padding: 5px 10px;
  /* cursor: pointer; */
}

.btn-remove:hover {
  background-color: #d66536;
  color: white;
  border-radius: 50px;
}
.btn-remove i {
  margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-item-header,
  .card-item-footer {
    flex-direction: row;
  }

  .product-details {
    margin-bottom: 10px;
  }
  .product-name,
  .product-size,
  .product-price {
    margin: 5px 0px 5px;
  }

  /* .alt-logo {
    font-size: 17px;
    padding: 2px;
    margin: 20px 0 0px 0;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
  } */

  /* .btn-remove,.quantity{
    margin: 5px 0px 5px;
  } */
}

/* Checkout Summary Cards */
.checkout-summary {
  margin-bottom: 30px; /* Adjust as needed */
}

.checkout-summary .card {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.checkout-summary .card header {
  background-color: #d4c6ba;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-summary .card header .ic-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 10px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%; */
}

.checkout-summary .card header .ic-bg .fa-check {
  color: #4caf50; /* Green color */
  border-radius: 50%;
  font-size: 15px;
}

.checkout-summary .card header a .fa-arrow-right {
  margin-left: 5px;
}

.checkout-summary .card header h2 {
  margin: 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
}

.checkout-summary .card header a {
  color: #d66536; /* Blue color */
  text-decoration: none;
  display: flex;
  align-items: center;
}

.checkout-summary .card header a._more {
  color: #d66536;
  font-size: 14px;
  text-decoration: none;
}

.checkout-summary .card header a._more:hover {
  box-shadow: 0 2px 4px 0 #d66536;
  padding: 5px;
  color: #d66536;
}

.checkout-summary .card .-hr {
  padding: 10px 20px;
}

.checkout-summary .card .-hr p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.checkout-summary .card .card-b {
  background-color: #f9f9f9;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.checkout-summary .card .card-b .-df {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-summary .card .card-b .-df .-df {
  flex: 1;
}

.checkout-summary .card .card-b .-df .-df p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.checkout-summary .card .card-b .-df .-df .bdg {
  background-color: #4caf50;
  color: white;
  padding: 3px 6px;
  border-radius: 2px;
  margin-right: 5px;
}

.checkout-summary .card .card-b .-df .-df .-b {
  font-weight: bold;
  margin-top: 5px;
}

.checkout-summary .card .card-b .-df .-df .markup {
  font-size: 12px;
  color: #666;
}

.checkout-summary .card .card-b .-df .-df a._more {
  color: #666;
  font-size: 12px;
  text-decoration: none;
  margin-left: auto;
}

.checkout-summary .card .row {
  padding: 20px;
}

.checkout-summary .card .row .col8 {
  width: 50%;
  padding-right: 10px;
}

.checkout-summary .card .row .col16 {
  width: 100%;
  padding-right: 10px;
}

.checkout-summary .card .row .col8:last-child {
  padding-right: 0;
}

.checkout-summary .card .row .col16:last-child {
  padding-right: 0;
}

.checkout-summary .card .row .col8 h3 {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}

.checkout-summary .card .row .col8 .card-b {
  margin-bottom: 10px;
}

.checkout-summary .card .row .col8 .card-b header {
  border-bottom: none;
  padding-bottom: 5px;
}

.checkout-summary .card .row .col8 .card-b .-df.-pas {
  padding-top: 5px;
}

.checkout-summary .card .row .col8 .card-b img {
  margin-right: 10px;
}

.btn-remove {
  background-color: white;
  color: #d66536;
  border: none;
  padding: 5px 10px;
}

.btn-remove:hover {
  background-color: #d66536;
  border-radius: 50px;
  color: white;
}

.checkout-summary .card .row .col16 a.btn {
  display: block;
  width: 100%;
  max-width: 200px; /* Adjust as needed */
  margin: 0 auto;
  background-color: white;
  color: #d66536;
  text-decoration: none;
  text-align: center;
  padding: 5px 0;
  border: none;
}

.checkout-summary .card .row .col16 a.btn:hover {
  background-color: #d66536;
  border-radius: 50px;
  color: white;
}

.checkout-summary .card:last-child {
  margin-bottom: 0;
}

/* Custom CSS for Delivery Details - Tile-like Table */
.checkout-summary .card .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.checkout-summary .card .col16 {
  flex: 1 1 calc(100% - 10px);
  max-width: calc(100% - 10px);
  margin-bottom: 10px;
  box-sizing: border-box; /* Ensures padding is included in width calculation */
  margin-right: 2px; /* Aligns to the right */
  margin-left: 10px; /* Aligns to the left */
}

.checkout-summary .card .col16 .card-b {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
}

.checkout-summary .card .col16 .card-b .-df.-pas {
  align-items: center;
}

.checkout-summary .card .col16 .card-b img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 10px;
}

.checkout-summary .card .col16 .card-b .-fs12.-oh.-pls {
  flex: 1;
}

.checkout-summary .card .col16 .card-b .-fs12.-oh.-pls p {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.checkout-summary .card .col16 .card-b .-fs12.-oh.-pls p:first-child {
  font-weight: bold;
}

.checkout-summary .card .col16 .card-b .-fs12.-oh.-pls p.-ptxs {
  margin-top: 5px;
}

/* CSS for the accordion functionality */
/* CSS for the expandable content */
.accordion-content {
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 10px;
  border: 1px solid #ddd; /* Optional: Adds a border around the content */
  border-radius: 4px; /* Optional: Rounds the corners */
}

.accordion-content.expanded {
  display: block;
  max-height: 1000px; /* Adjust this value as needed */
}

/* Styling for radio box options */
.accordion-content .option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd; /* Adds a line between options */
  padding-bottom: 10px; /* Space below each option */
}

.accordion-content .option:last-child {
  border-bottom: none; /* Removes the line from the last option */
}

.accordion-content .option input[type="radio"] {
  margin: 0 10px 0 0; /* Adjust margin as needed */
  align-self: flex-start; /* Aligns the radio button at the top */
}

.accordion-content .option .details {
  flex: 1;
  display: flex;
  flex-direction: column; /* Stack heading on top of subheading */
}

.accordion-content .option .details .heading {
  font-weight: bold;
  margin-bottom: 5px;
}

.accordion-content .option .details .subheading {
  color: #666;
}

/* Styling for buttons */
.accordion-content .buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.accordion-content .buttons button {
  padding: 8px 16px;
  border: 1px;
  background-color: #d66536;
  color: white;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.accordion-content .buttons button:hover {
  background-color: #d66536;
  color: white;
}

.accordion-content .buttons .cancel {
  background-color: white; /* Example cancel button color */
  color: #d66536;
}

.accordion-content .buttons .cancel:hover {
  background-color: white; /* Example cancel button color */
  color: #d66536;
}

/* General Styles */
.full-height {
  height: 100%;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 1.5rem;
}

.padding-horizontal {
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-vertical-small {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.padding-top-small {
  padding-top: 0.5rem;
}

.padding-top-medium {
  padding-top: 1rem;
}

.margin-none {
  margin: 0;
}

.margin-horizontal-medium {
  margin-left: 1rem;
  margin-right: 1rem;
}

.margin-left-extra-small {
  margin-left: 0.25rem;
}

.margin-right-small {
  margin-right: 0.5rem;
}

.margin-vertical-small {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.border-bottom {
  border-bottom: 1px solid #ccc;
}

.border-none {
  border: none;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.justify-between {
  justify-content: space-between;
}

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

.text-large {
  font-size: 1.25rem;
}

.small-title {
  font-size: 0.875rem;
}

.grey-text {
  color: #757575;
}

.word-break {
  word-break: break-all;
}

.uppercase {
  text-transform: uppercase;
}

.icon {
  font-size: 1.5rem;
}

.center-icon {
  align-self: center;
}

.list {
  list-style-type: none;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-align: center;
}

.default {
  /* background-color: #d66536; */
  background-color: rgb(214 101 54 / 40%); /* 80% opacity */
  color: #fff;
}

.default:hover {
  background-color: #d66536;
  color: #fff;
}

.rounded {
  border-radius: 0.25rem;
}

/* Card Styles */

.title {
  font-size: 1.5rem;
  font-weight: bold;
}

.card-body {
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #fff;
  overflow: hidden;
}

.card-header {
  background-color: #fff;
  border-bottom: 2px solid #e0e0e0;
  padding: 5px;
}

.default-address {
  padding-top: 14px;
  color: green;
}

.btn-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-right button {
  margin: 10px;
  padding: 5px 10px;
  font-size: 16px;
}

.modal-header {
  /* width: 100%; */
  background-color: #d4c6ba;
  /* padding: 10px 20px; */
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.balance-amount {
  font-weight: bold;
}

/* Responsive Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col-6 {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 1rem;
}

@media (max-width: 768px) {
  .col-6 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Custom Card Layout */
.custom-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.cart-custom-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 10px;
}

/* Custom Header Styles */
.custom-header {
  background-color: #929673;
  /* background-color: #d4c6ba; */
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.variation-header {
  font-size: .875rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #313133;
  margin-top: 0
}

.custom-footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 0;
}

.variation-custom-footer {
  width: 100%;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 8px; /* Space between buttons */
  justify-content: space-between; /* Ensures even spacing */
}

.variation-custom-footer button {
  margin-top: 5px;
  flex: 1; /* Equal width for both buttons */
  text-align: center;
  padding: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap; /* Prevents text from breaking */
}

.continue-shopping {
  background-color: white;
  color: #d66536;
  border: 1px solid #d66536;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.continue-shopping:hover {
  background-color: #d66536;
  color: white;
}

.view-cart-button {
  background-color: #d66536;
  color: white;
  border: 1px solid #d66536;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.view-cart-button:hover {
  background-color: #b8562b; /* Slightly darker hover effect */
}



.custom-header h1 {
  font-size: 20px;
  margin: 0;
  padding: 10px;
}

/* Tab Styles */
.tab-container {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  /* Ensure tabs wrap on smaller screens */
  /* flex-wrap: wrap; */
  flex-direction: row; /* Align buttons horizontally on smaller screens */
  justify-content: flex-start; /* Adjust alignment of buttons */
  margin-bottom: -30px;
  margin-top: -20px;
}

.tab {
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 10px;
  color: #555;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.tab.active {
  border-bottom-color: #d66536;
}

/* Order Tiles Styles */
.order-table {
  justify-content: flex-start;
}

.order-tab {
  width: 100%;
  display: none;
}

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

.order-tiles {
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 10px;
}

.order-tile {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  position: relative;
}

.order-tile img {
  width: 104px; /* Adjust image size */
  height: 104px;
  border-radius: 4px;
  margin-right: 20px; /* Spacing between image and content */
}

.tile-content {
  flex: 1; /* Allow content to expand */
}

.tile-content h2 {
  font-size: 16px;
  margin: 5px 0;
}

.tile-content p {
  font-size: 14px;
  margin: 5px 0;
}

.order-status {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.order-status .badge {
  padding: 3px 6px;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
}

.order-status .Delivered {
  background-color: #28a745;
  color: #fff;
}

.order-status .Cancelled {
  background-color: #dc3545;
  color: #fff;
}

.order-status .processing {
  background-color: yellow;
  color: #fff;
}

.order-status .Ongoing {
  background-color: yellow;
  color: #fff;
}

.order-status .Pending {
  background-color: yellow;
  color: #fff;
}

.order-status .Returned {
  background-color: #dc3545;
  color: #fff;
}

.order-status .order-date {
  margin-inline: 10px;
}

.details-btn {
  margin-left: auto; /* Align button to the right */
  margin: 8px;
  background-color: white;
  color: #d66536;
  text-align: center;
  text-transform: uppercase;
  font-size: small;
  padding: 10px;
  position: absolute; /* Added to position the button absolutely within the container */
  top: 0; /* Align to the top */
  right: 0; /* Align to the right */
}

.details-btn:hover {
  background-color: rgb(214 101 54 / 40%); /* 80% opacity */
  color: #d66536;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
  border-radius: 3px;
}

/* Pagination Styles */
.pagination-container {
  justify-content: center;
  margin: 5px;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
}

.page-link {
  display: inline-block;
  padding: 8px;
  margin: 0 4px;
  color: #d66536;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background-color: #d66536;
  color: #fff;
}

.page-link i {
  font-size: 16px;
}

.actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.btn.out-of-stock {
  background-color: gray;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  margin-right: -10px;
}

.btn.buy-now {
  background-color: #d66536;
  color: #fff;
  text-decoration: none;
  margin-top: 30px;
  margin-right: -10px;
}

.btn.remove-from-wishlist {
  background-color: white;
  color: #d66536; /* Ensure this color is explicitly set */
  margin-bottom: 10px;
  margin-right: -10px;
}

.btn.remove-from-wishlist:hover {
  background-color: #d66536;
  color: white;
}

.wishlist-details {
  margin-top: 10px;
  display: block;
  align-items: center;
}

.searchbtn {
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
  border-radius: 5px;
  border: none;
  padding: auto;
}

.searchbtnfont {
  margin-right: 5px;
}

/* Media Queries for Responsive Design */

@media (max-width: 768px) {
  /* .custom-card {
    padding: 15px;
  } */

  .custom-header h1 {
    font-size: 18px;
  }

  .tab {
    font-size: 14px;
    padding: 8px 16px;
    margin: 0 8px;
  }

  .order-tile {
    display: block;
    text-align: center;
  }

  .order-tile img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 50%;
    margin-bottom: 15px;
    /* align-items: center; */
    /* width: 80%;
    height: 50%;
    margin-right: 10px; */
  }

  .details-btn {
    top: auto; /* Reset top */
    left: auto; /* Reset right */
    bottom: 0; /* Align to the bottom */
    right: 0; /* Align to the left */
  }

  .tile-content h2 {
    font-size: 14px;
  }

  .tile-content p {
    font-size: 12px;
  }

  .actions {
    flex-direction: row; /* Align buttons horizontally on smaller screens */
    justify-content: space-between;
  }

  .btn.out-of-stock,
  .btn.buy-now,
  .btn.remove-from-wishlist {
    margin: 5px; /* Reduce margin between buttons */
    width: auto; /* Adjust width to fit content */
  }
}

/* custom modals */
/* body {
  font-family: Arial, sans-serif;
} */

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1150;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: overlay;
  background-color: rgba(0, 0, 0, 0.4);
}



.custom-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  position: relative;
}



.custom-close {
  color: #aaa;
  float: right;
  font-size: 30px;
  font-weight: bold;
}

.custom-close:hover,
.custom-close:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

/* .custom-header {
  display: flex;
  text-align: center;
  margin-bottom: 20px;
} */

.custom-form {
  display: flex;
  flex-direction: column;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.custom-col {
  margin-top: 5px;
  flex: 1;
  padding: 10px;
}

.custom-fi-w {
  margin-bottom: 10px;
}

.custom-fi {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 5px 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.custom-fi-group {
  display: flex;
  align-items: center;
}

.custom-fi-prefix {
  margin-right: 10px;
  font-size: 16px;
}

.custom-lbl {
  display: block;
  margin-bottom: 5px;
}

.custom-sel {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 5px 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Medium Screens (Tablets) */
@media screen and (max-width: 768px) {
  .custom-row {
    flex-direction: column; /* Stack elements vertically */
  }
  .custom-col {
    width: 100%;
    padding: 8px;
  }
  .custom-fi, 
  .custom-sel {
    width: 100%; /* Full width on smaller screens */
    margin: 5px 0;
  }
}

/* Small Screens (Phones) */
@media screen and (max-width: 480px) {
  .custom-col {
    padding: 5px;
  }
  .custom-fi, 
  .custom-sel {
    padding: 8px; /* Reduce padding */
    font-size: 0.9em; /* Adjust text size */
  }
  .custom-fi-prefix {
    font-size: 14px;
  }
}

.custom-btn.custom-prim {
  background-color: white;
  color: #d66536;
  border: none;
  padding: 5px 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.custom-btn.custom-prim:hover {
  background-color: #d66536;
  color: white;
}

.custom-btn.custom-sec {
  background-color: white;
  color: #d66536;
  border: none;
  padding: 5px 10px;
}

.custom-btn.custom-sec:hover {
  background-color: #d66536;
  color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.custom-end {
  display: flex;
  justify-content: flex-end;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .custom-col {
    flex: 1 1 100%;
  }

  /* .custom-modal-content {
    width: 95%;
    margin: 20% auto;
  } */

  /* button {
    width: 100%;
    padding: 15px;
  } */

  .modal-footer {
    flex-direction: row;
  }
  .custom-btn.custom-sec,
  .custom-btn.custom-prim {
    margin: 0px 10px 0px 10px;
  }
  .btn-right {
    flex-direction: row;
  }
  .custom-footer {
    padding-top: 0.75rem;
  }
  .product-tile {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* .custom-modal-content {
    width: 100%;
    margin: 25% auto;
  } */

  .custom-fi,
  .custom-sel {
    padding: 8px;
  }

  /* button {
    width: 100%;
    padding: 12px;
  } */

  .modal-footer {
    flex-direction: row;
  }
  .custom-btn.custom-sec,
  .custom-btn.custom-prim {
    margin: 0px 10px 0px 10px;
  }
  .btn-right {
    flex-direction: row;
  }
  .custom-footer {
    padding-top: 0.75rem;
  }
  .product-tile {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .custom-modal-content {
    margin: 10% auto;
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .custom-modal-content {
    margin: 8% auto;
    max-width: 700px;
  }
}

/* order details */
.receipt {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  font-family: Arial, sans-serif;
}

.receipt-header {
  /* text-align: center;
  border-top: 1px solid #d66536;
  padding-bottom: 10px; */
  margin-bottom: 20px;
}

.receipt-header h2 {
  border-bottom: 1px solid #d66536;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #d66536;
  font-size: 15px;
}

.order-number,
.order-date {
  margin: 5px 0;
}

.receipt-section {
  margin-bottom: 20px;
}

.receipt-section h2 {
  border-bottom: 1px solid #d66536;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #d66536;
  font-size: 15px;
}

.delivery-method,
.delivery-address {
  margin: 5px 0;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-tile {
  display: flex;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 5px;
  width: 100%;
}

.product-tile img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-right: 10px;
}

.tile-content {
  flex: 1;
}

.product-title {
  font-size: 1em;
  margin: 0;
  color: #333;
}

.order-id {
  font-size: 0.9em;
  color: #555;
}

.order-status {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8em;
  margin-right: 10px;
}

.badge.canceled {
  background-color: #f8d7da;
  color: #721c24;
}

.order-date {
  font-size: 0.8em;
  color: #777;
}

.order-history {
  list-style-type: none;
  padding: 0;
}

.order-history li {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

.order-history li:last-child {
  border-bottom: none;
}

.order-detail-label {
  font-size: 0.875rem;
  font-weight: 100;
  margin: 5px 0;
  color: #75757a; /* Optional: Adjust color for differentiation */
}

.order-detail-label-value {
  font-weight: 700; /* Bold font weight */
  font-size: 0.875rem;
  color: #313133;
}

@media screen and (max-width: 768px) {
  .receipt {
    max-width: 95%;
    padding: 15px;
  }

  .receipt-header h2,
  .receipt-section h2 {
    font-size: 1em;
  }

  .product-tile {
    flex-direction: column; /* Stack content */
    text-align: center;
    padding: 8px;
  }

  .product-tile img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px; /* Center the image */
  }

  .badge {
    font-size: 0.75em;
  }
}

/* Small Screens (Phones) */
@media screen and (max-width: 480px) {
  .receipt {
    padding: 10px;
    max-width: 98%;
  }

  .receipt-header h2,
  .receipt-section h2 {
    font-size: 0.9em;
  }

  .product-tile {
    flex-direction: column;
    padding: 5px;
  }

  .product-tile img {
    width: 80px;
    height: 80px;
  }

  .product-title,
  .order-id,
  .order-status,
  .order-date {
    font-size: 0.8em;
  }

  .badge {
    font-size: 0.7em;
    padding: 3px 6px;
  }
}

/* select */

.select-container {
  box-sizing: border-box;
  /* display: inline-block; */
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  width: 50%;
  -webkit-user-select: none;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

/* Sweetalert button */
.continue-shopping-button {
  background-color: white;
  color: #d66536;
  border: 1px solid #d66536;
  padding: 10px;
  margin: 10px 10px 0 10px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); */
}

.continue-shopping-button:hover {
  background-color: #d66536;
  color: white;

  /* border-radius: 5px; */
}

.view-cart-checkout-button {
  background-color: #d66536;
  color: white;
  border: 1px solid #d66536;
  padding: 10px;
  margin: 10px 10px 0 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.view-cart-checkout-button:hover {
  background-color: #d66536;
  color: white;
}

.continue-ok-button {
  background-color: #d66536;
  color: white;
  border: 1px solid #d66536;
  padding: 10px;
  margin: 10px auto 0 auto; /* Center the button */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: block; /* Ensure the button takes full width and can be centered */
  text-align: center; /* Center text inside the button */
}

.swal2-actions {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 0;
  justify-content: space-between;
  /* display: flex; */
  align-items: center;
  grid-column: 1 / -1; /* Span across all columns */
  width: 100%; /* Ensure full width */
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff; /* Change this to your preloader background color */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinner */
.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #d66536;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.swal2-image {
  width: 100px; /* Set your desired width */
  height: auto; /* Maintain aspect ratio */
}

.disabled {
  pointer-events: none;
  opacity: 0.6; /* Reduce opacity to indicate disabled state */
  cursor: not-allowed; /* Change cursor to indicate non-clickable */
}

.no-product-div {
  justify-content: center;
}

.pending {
  background-color: #ffc107; /* Yellow */
  color: #212529; /* Dark text */
}

.confirmed {
  background-color: #17a2b8; /* Cyan */
}

.delivered {
  background-color: #007bff; /* Blue */
}

.completed {
  background-color: #28a745; /* Green */
}

.cancelled {
  background-color: #dc3545; /* Red */
}

.failed {
  background-color: #6c757d; /* Gray */
}

.card {
  border: 1px solid #ccc;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
}

.shipping-options {
  margin-top: 16px;
}

.shipping-options .option {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between radio button and text */
  margin-bottom: 12px; /* Space between options */
}

.shipping-options .option input[type="radio"] {
  margin: 0;
  width: 20px;
  height: 20px;
}

.shipping-options .details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  background-color: #f9f9f9;
}

.shipping-options .details .address {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  flex: 1;
}

.shipping-options .details .price {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}



.close-modal {
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}



.btn-continue,
.btn-cart {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.btn-continue {
  background-color: #fff;
  border: 1px solid #ffa500;
  color: #ffa500;
}

.btn-cart {
  background-color: #ccc;
  color: #fff;
}


.color-size-container{
  display: flex;
  /* flex-direction: row; */
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Fixed width */
  /* Fixed height */
  margin: 10px 10px 0px 0px;
  padding: 10px;
  box-sizing: border-box;
  /* border: 1px solid #ccc; */
  border-radius: 8px;
  text-align: center;
}


.size-wrapper {
  display: flex;
  /* flex-direction: row; */
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Fixed width */
  /* Fixed height */
  margin: 10px 10px 0px 0px;
  padding: 10px;
  box-sizing: border-box;
  /* border: 1px solid #ccc; */
  border-radius: 8px;
  /* text-align: center; */
}
.size-info {
  display: flex;
  flex-direction: column; /* Stack text vertically */
  gap: 5px; /* Add space between texts */
  flex-grow: 1; /* Allow text to take up remaining space */
}

.size-value {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.price-value {
  font-size: .875rem;
  color: #313133;
  padding-top: 4px;
  margin-bottom: 5px;
}

.stock-value {
  font-size: .75rem;
  padding-top: 4px;
  margin-bottom: 5px;
}

.out-of-stock{
  color:gray
}

.in-stock{
  color:#929673
}




.quantity-control {
  display: flex;
  align-items: center;
}

.quantity-control button {
  background-color: #d66536;
  color: white;
  border: none;
  padding: 5px 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-size: .975rem;
  cursor: pointer;
  text-align: center;
  font-weight: 500;

  width: 50%;
  height: 50%;
}

.quantity-control button:disabled {
  pointer-events: none;
  opacity: 0.6; /* Reduce opacity to indicate disabled state */
  cursor: not-allowed; 
}

.quantity-control .quantity {
  margin: 0 10px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}


.size-box {
  display: inline-block;
  margin: 5px;
  padding: 10px;
  color: #d66536;
  background-color: white;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  max-width: 50%;
}

.size-box:hover {
  border: 1px solid #333;
}

.color-size-container{
  display:flex;
  padding:10x;
}

.divider{
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

/* .size-box.selected {
  background-color: #007BFF;
  color: white;
} */


/* Modal Overlay */
.shop-filter-modal {
  display: none;
  position: fixed;
  z-index: 1150;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: overlay;
  /* justify-content: center;
  align-items: center; */
}

/* Modal Content */
.shop-filter-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Modal Header */
.shop-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.shop-filter-title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color:#d66536
}

.shop-filter-close {
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.shop-filter-close:hover {
  color: red;
}

/* Form Fields */
.shop-filter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Rows & Columns */
.shop-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.shop-filter-col {
  flex: 1;
  min-width: 45%;
}

/* Form Input Wrapper */
.shop-filter-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Labels */
.shop-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Select Fields */
.shop-filter-select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

/* Multiple Select Dropdown */
.shop-filter-multi-select {
  height: auto;
  min-height: 100px;
  overflow-y: auto;
}

/* Button */
.shop-filter-button {
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
  float:right
}

.shop-filter-primary {
  background: #d66536;
  color: white;
}

.shop-filter-primary:hover {
  background: #d66536;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .shop-filter-content {
      width: 95%;
  }

  .shop-filter-row {
      flex-direction: column;
  }

  .shop-filter-col {
      min-width: 100%;
  }
}



.form-select {
  appearance: none !important;
}
