@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap');

/* :root {
  --heading-color: #000000;
  --border-color: #111;
  --background-color: #ffffff;
  --card-background-color: #ffffff;
  --card-label-color: #030303;
  --card-text-color: #595959;
  --card-heading-color: #1c1c1c;
  --card-border-color: #e5e7eb;
  --card-border-radius: 0px;
  --card-border-size: 1px ;
  --profile-background-color: #ffffff;
  --profile_border_color: #111827;
  --profile_border_size: 0px;
  --font-family: 'Cormorant Garamond';
  --sidenavbtnhoverbackground :black;
  --container-two-background-color: #f3c8c8;
  --container-one-background-color: #ffffff;
  --main-heading-border-color: #111;
  --menu-heading-text-color: '#000';
  --menu-items-color: #575757;
  --menu-items-select-color: #000000;
  --card-text-background-color: #fff;
  --card-font-family: 'Cormorant Garamond';
  --menu_heading_text_color: black;
  --btn-background-color: #ffffff ;
  --btn-text-color: #111111 ;
  --btn-text-hover-color: #e6e6e6;
  --btn-background-hover-color: #242424;
  --btn-border-color: #000000 ;

} */
.add-to-wishlist {
  background-color: rgb(1, 1, 1);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.xircls-layout-three {
  font-family: var(--font-family) !important;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
}

.xircls-layout-three {
  letter-spacing: 0px !important;
}

#menu_heading_text_color {
  color: var(--menu_heading_text_color) !important;
}

#logoImage {
  border-radius: 100%;
}

.outer-container {
  background-color: var(--container-two-background-color);
}

.header-bar {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.xircls-header-container {
  display: none;
}

.menu-options-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-bar>button {
  padding: 6px 10px;
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  font-size: 25px;
  border-radius: 0%;
  border: none;
  width: fit-content;
  height: fit-content;
}

.header-bar>button:hover {
  background-color: var(--btn-text-hover-color);
  color: #000;
  box-shadow: 1px 1px 10px rgba(235, 234, 234, 0.411);
}

.sub-container {
  display: flex;
}

.container-1 {
  display: block;
  width: 25%;
  padding: 10px;
  text-align: start;
  background-color: var(--container-one-background-color);
}

.container-2 {
  display: block;
  width: 80%;
  padding: 0px 43px;
  text-align: start;
  /* background-color: lightblue; */
}


#xircls-menu {
  width: 100%;
  margin: auto;
  font-size: 18px;
}

.menu-list {
  list-style-type: none;
  padding: 0;
  margin: auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: Start;
}

.xircls-menu-item {
  padding: 10px;
  margin: 5px 0 5px 5px;
  cursor: pointer;
  /* transition: background-color 0.3s, box-shadow 0.3s; */
  width: 100%;
  color: var(--menu-items-color);
}


.menu-icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  color: var(--menu-items-color);
}

.xircls-menu-item:hover {
  color: var(--sidenavbtnhoverbackground) !important;

}

.menu-labell {
  font-size: 16px;
  font-weight: 500;
  color: var(--menu-items-color);
}

.active {
  color: var(--menu-items-select-color) !important;
}

.xircls-menu-item .active .xircls-menu-label {
  color: var(--sidenavbtnhoverbackground) !important;
}

#tabHeading {
  text-align: left;
  padding: 20px 20px 20px 0px;
  margin: 0px;
  color: var(--heading-color);
  font-family: var(--font-family);
}

#content hr {
  margin: 0px 0px 0px 20px;
  width: 200px;
  height: 2px;
  background-color: var(--main-heading-border-color);
}

#tabContent {
  margin-top: 20px;
}

/* Basic styling for the card */


.change-password-card {
  border: 1px solid black;
  font-family: var(--font-family);
  font-size: 1rem;
  cursor: pointer;
  background-color: black;
  color: white;
  width: 35%;
  padding: 15px;
  font-weight: 900;
}

.change-password-text {
  color: var(--card-text-color);
}

.change-password-card:hover {
  background-color: #fff;
  color: #333333;
}

.cardContainer input {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
}

#cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px
}

.profile-data-card {
  font-family: var(--font-family);
  background-color: var(--card-background-color);
  padding: 3%;
  display: flex;
  flex-direction: column;
  margin-bottom: 3%;
  gap: 2%;
  text-align: start;
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
}

.profile-data-card span {
  font-size: 1.5rem;
  font-weight: bold;
}

.profile-data-card button {
  padding: 11px 14px;
  width: 92%;
  margin: 2% 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: rgb(55 65 81);
  border: 1px solid #ccc;
}

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

.product-cell {
  text-align: center;
}

.product-details {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  flex-direction: row;
}

.product-details a {
  text-decoration: none;
  cursor: pointer;
  color: #111;
}

/* ================================================================= MODAL ============================================================ */

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

.modal-content {
  padding: 20px;
  border-radius: 8px;
  position: relative;
  width: 50%;
  text-align: center;
  background-color: white;
}

.modal-heading {
  color: var(--card-heading-color);
  font-family: var(--card-font-family);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

.modal-body {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
  border: 1px solid var(--card-border-color);
  padding: 20px 10px;
  /* box-shadow: 0 4px 300px rgb(215, 215, 215); */
  border-radius: var(--card-border-radius);
  font-family: var(--card-font-family);
}

.modal-button {
  padding: 10px 15px;
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border: 1px solid var(--btn-border-color);
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: var(--btn-background-hover-color);
  color: var(--btn-text-hover-color)
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  animation: fadeIn 0.3s ease-in-out;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  /* font-family: var(--secondaryFontFamily) !important; */
  font-family: var(--font-family);
  background-color: var(--card-background-color);
}

.custom-table tr {
  border-bottom: 1px solid lightgray;

}

.custom-table td {
  /* color: var(--card-text-color) !important; */
  padding: 10px 24px;
  font-size: 15px !important;
  /* width: 100%; */
  border-bottom: 1px solid rgb(228, 227, 227);
  white-space: nowrap;
  /* allow wrapping */
  overflow: visible;
  /* show all content *    */
  font-family: var(--font-family);
  color: #0a0a0a !important;

}

.custom-table th {
  text-align: center;
  border-bottom: 1px solid var(--card-border-color);
  font-size: 12px !important;
  padding: 12px 24px;
  color: var(--card-label-color);
  text-wrap: nowrap;
  font-family: var(--font-family);
  color: rgb(107 114 128);
  line-height: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  /* stop wrapping */
  align-items: center;
}

.custom-table img {
  max-width: 18%;

}

.order-table-row {
  border-bottom: 2px solid grey;
  font-family: var(--font-family);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.order-data {
  color: black;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: normal;
  padding: ;
}

/* .ul-items{
  display: flex;
  align-items: center;
  flex-wrap: normal;
  width: 100%;
  gap:4px;
  
} */
ul.xircls-order-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 4px;
  white-space: normal;
}

.custom-table .action-buttons {
  margin: 5px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-evenly;
}

.xircls-order-list {
  list-style-type: none;
  padding: 0%;
  color: #000;
  display: flex;
  align-items: center;
  gap: 3%;
  flex-wrap: wrap;
  /* allow wrapping to next line */
  max-width: 100%;
}

.xircls-order-list li {
  color: var(--card-text-color);
}

.track-order-link {
  text-decoration: none;
  color: inherit;
}

.action-buttons-cell .delete-btn {
  color: var(--btn-text-color);
  background-color: var(--btn-background-color);
  border: none;
  border-radius: 4px;
}

.action-buttons-cell .delete-btn:hover {
  color: var(--btn-text-hover-color);
  background-color: var(--btn-background-hover-color);
}

.toggle-cell {
  text-align: center;
  font-family: var(--font-family);
}

.cancelled-text {
  color: #fff;
  background-color: red;
  padding: 1px 5px;
  display: block;
  border-radius: 6px;
  font-size: 11px;
  width: fit-content;
  font-weight: bold;
  text-align: center;
  margin: auto;
  font-family: var(--font-family);
}

.order-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.order-actions button {
  margin-right: 10px;
}

.wishlist-card {
  border: 1px solid var(--card-border-color);
  background-color: var(--card-background-color);
}

.user-avatar {
  text-align: start;
  margin: 20px 0px;
}

.user-avatar span {
  font-family: var(--font-family);
  color: var(--menu-heading-text-color);
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 80px;
  text-align: center;
  background-color: var(--profile-background-color);
  border: var(--profile_border_size) solid var(--profile_border_color);
  object-fit: cover;
}

#profile span {
  color: var(--menu-items-color);
}

#password-button {
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border: 1px solid var(--btn-border-color);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  text-wrap: nowrap;
}

#password-button:hover {
  background-color: var(--btn-background-hover-color);
  color: var(--btn-text-hover-color);
}

.add-to-cart-btn,
.buy-now-btn {
  width: 100%;
}

.upload-avatar-image {
  background-color: var(--btn-background-color) !important;
  color: var(--btn-text-color) !important;
}

.upload-avatar-image:hover {
  background-color: var(--btn-background-hover-color) !important;
  color: var(--btn-text-hover-color) !important;
}

.toggle-password:hover {
  color: #333;
  /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.26); */
  border-radius: 50%;
}

/* ============================================================================================================================= */
/* ========================================================= MOBILE VIEW ======================================================= */
/* ============================================================================================================================= */
/* ============================================================================================================================= */

@media (max-width: 768px) {

  .profile-card-div {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .dropdown-options {
    width: 80% !important;
  }

  .profile-data-card span {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
  }

  .dashboard-info-row {
    flex-direction: column;
    margin-top: 8% !important;
  }

  .upload-avatar-image {
    margin: 1% !important;
    padding: 12px !important;
  }

  .outer-container {
    height: 100vh;
  }

  .change-password-warning {
    width: 100% !important;
  }

  .profile-data {
    width: 100% !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .profile-data-card button {
    width: 100% !important;
    /* margin-bottom: 7px !important; */
    font-weight: 100;
    color: var(--btn-text-color) !important;
    letter-spacing: 1.5px;
  }

  .xircls-header-container {
    display: block;
    position: absolute;
    right: 0;
  }

  .sub-container {
    display: block;
  }

  .container-1 {
    display: none;
    width: 100%;
    z-index: 5;
    padding: 0px 0px 50px 0px;
    height: 100vh;
  }

  .container-2 {
    width: 100%;
    padding: 5px;
  }

  #tabHeading {
    font-size: 4rem;
    text-align: center;
    padding: 15px 5px;
    margin: -15px;
    font-size: 24px;
  }

  #tabContent {
    padding: 10px;
    margin-top: 15px;
  }

  .cardContainer .input {
    padding-left: 17px;
  }

  .cardContainer input {
    padding: 10px 10px 17px 10px;
    font-size: 13px;
  }

  .toggle-cell {
    display: none;
  }

  .action-buttons {
    gap: 4px;
  }

  .action-buttons button {
    padding: 3px 7px;
    font-size: 13px;
    border-radius: 3px;
  }

  .order-actions {
    display: block;
    margin-bottom: 10px;
  }

  .order-actions button {
    margin-right: 0px;
  }

  .order-payment-info {
    display: block;
    margin-bottom: 10px;
    margin-left: 10px;
    text-align: left;
  }

  .delete-btn {
    border: none;
    padding: 4px;
    width: fit-content;
    font-size: 12px;
    position: absolute;
    top: 1%;
    right: 2%;
    color: #000;
    background-color: transparent;
  }

  .delete-btn:hover {
    color: var(--btn-text-hover-color);
    background-color: var(--btn-background-hover-color);
  }

  /* Modal Styling */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .modal-content {
    padding: 12px;
    border-radius: 5px;
    max-width: 80%;
    width: 80%;
  }


  .close-btn {
    font-size: 20px;
  }

  .modal-content span {
    font-size: 14px;
  }

  .modal-body {
    margin: 20px 0;
    font-size: 12px;
    padding: 10px 8px;
  }

  .modal-button {
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 13px;
  }

  .input-field {
    padding: 5px;
    margin-bottom: 5px;
    font-size: 12px;
  }

  .input-field label {
    margin-bottom: 3px;
  }

  .input-field input {
    padding: 4px;
    font-size: 12px;
    border-radius: 4px;
  }

  .input-field select {
    padding: 4px;
    font-size: 12px;
    border-radius: 4px;
  }

  .user-avatar {
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .avatar {
    width: 125px !important;
    height: 125px !important;
    font-size: 26px;
  }

  #profile {
    padding-top: 10px;
  }

  .xircls-menu-item {
    text-align: start;
  }

  .product-details {
    flex-direction: column;
  }

  /* ===================================================================================================== */
  .card-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .grid-container {
    margin-bottom: 4%;
  }

  .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Responsive grid */
    gap: 10px;
    /* Spacing between cards */
  }

  .order-card {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    background: var(--card-background-color);
    transition: transform 0.2s;
    border: 1px solid var(--card-border-color);
    font-family: var(--secondaryFontFamily) !important;
  }

  .wishlist-card {
    position: relative;
    background: var(--card-background-color);
    padding: 20px !important;
    margin-top: 6%;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .wishlist-card:hover,
  .order-card:hover {
    transform: translateY(-5px);
  }

  .card-image img {
    width: 100%;
    border-radius: 5px;
    height: auto;
    object-fit: cover;
  }

  .card-wishlist-actions {
    /* display: flex;
          gap: 10px;
          justify-content: space-between; */
    margin-top: auto;
    /* Push buttons to the bottom */
  }

  .card-wishlist-actions button {
    border: 1px solid var(--btn-border-color);
  }

  .card-order-actions {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .card-order-actions button:hover {
    opacity: 0.8;
  }

  .add-to-cart-btn {
    margin-bottom: 5px;
  }

  .card-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .cancelled-text {
    display: inline-block;
    margin: 0px;
  }

  .details-section {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #333;
  }

  .card-items {
    margin-top: 16px;
  }

  .card-items span {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .items-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
    /* gap: 16px; */
  }

  .order-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid var(--card-border-color);
    border-bottom: 1px solid var(--card-border-color);
    padding: 12px;
    transition: transform 0.2s;
  }

  .order-item:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  .order-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
  }

  .order-item p:last-of-type {
    font-weight: bold;
    color: #007bff;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    padding: 12px;
    border-top: 1px solid #e5e5e5;
    gap: 8px;
  }

  .wishlist-card-content {
    margin: 10px 0;
    text-align: left;
    padding: 0px 10px;
  }

  .wishlist-card-content .product-name a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }

  .wishlist-card-content .product-name {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .wishlist-card-content .price {
    color: #007bff;
    font-size: 16px;
  }

  .card-content a {
    text-decoration: none;
    cursor: pointer;
    color: #111;
  }

  .card-content span {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .wishlist-card-content .price,
  .wishlist-card-content .added-on {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .card-content .added-on {
    font-size: 14px;
    color: #4d4c4c;
  }

  .card-content .price {
    font-size: 14px;
    font-weight: bold;
    color: #007bff;
  }

  .toggle-items-btn {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .toggle-items-btn:hover {
    background-color: #0056b3;
  }

  .dashboard-section {
    flex-direction: column;
  }

  .dashboard-section .dashboard-card {
    width: 100%;
  }

  .order-header .label {
    margin-top: 1px;
  }

  .order-header .order-id {
    margin: 0px;
  }

  .order-header .no-scroll-arrows {
    margin-top: 2px;
  }

  .order-info .product-name,
  .product-details {
    margin: 0px;
  }

  .cardContainer .card {
    padding: 2rem !important;
  }

  .profile-card-div {
    flex-direction: column;
    align-items: center;
  }


  /* .order-details-modal {
    width: 95% !important;
    left: 44% !important;
  } */

  .order-details-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 95%;
    transform: translate(-50%, -50%);
    background: var(--axentra-card-background-color);
    /* Using card variable */
    /* padding: 20px; */
    border-radius: var(--axentra-card-border-radius);
    /* Using card variable */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* Ensure it's on top */
    max-width: 95%;
    max-height: 80% !important;
    overflow: auto;
    width: 500px;
    /* Adjust as needed */
    display: none;
    /* IMPORTANT: Hidden by default */
    transition: 0.3s ease;
    /* Fade-in effect */
    font-family: var(--axentra-font-family);
  }

  .order-details-modal-container-div {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }


  /* @media (max-width: 768px) {
    .order-details-modal-container-div {
      display: block !important;
    }
  } */

  .order-details-modal-info-section {
    background-color: var(--axentra-card-background-color) !important;
    padding: 5px !important;
    font-family: var(--axentra-font-family);
    margin-left: 5px;
  }

  .order-details-modal-info-heading {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--axentra-card-heading-color) !important;
    margin-bottom: 10px !important;
    font-family: var(--axentra-secondaryFontFamily);
    margin-left: 5px;
  }

  .order-modal {
    padding: 10px 15px !important;
  }

  .order-item-modal {
    gap: 5%;
  }

  #close-menu {
    display: block !important;
    font-size: 23px !important;
    color: #202020 !important;
    width: fit-content;
    padding-right: 10px !important;
    position: absolute !important;
    right: 15px !important;
    margin: 10px !important;
    cursor: pointer !important;
    background-color: white !important;
    border: none;
  }

  #header {
    position: relative;
    top: 23px;
  }

  /* .orders-table {
    display: none;
    border: 1px solid gray;
  } */

  .orders-mobile {
    display: block !important;
    margin-top: 20px;
  }

}


/* hide arrow buttons of scroll bar */
/* Chrome, Safari, Edge */
.order-card .scroll-hidden::-webkit-scrollbar {
  scrollbar-width: none;
  /* Hide scrollbar */
}

@media (max-width: 300px) {
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================ recently viewed section ============================== */


.xircls-recent-products-grid {
  display: grid;
  justify-content: left;
  gap: 1rem;
  /* optional spacing */
  grid-template-columns: repeat(auto-fit, 300px);
}

.xircls-recent-card {
  background: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  padding: 10px !important;
}

.xircls-recent-card-image {
  height: 250px;
  overflow: hidden;
}

.xircls-recent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xircls-recent-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0px 0px 0px;
}

.xircls-recent-card-actions button {
  flex: 1;
  cursor: pointer;
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border: none;
  padding: 6px 12px !important;
  font-size: 14px !important;
}

.xircls-recent-card-actions button:hover {
  background-color: var(--btn-background-hover-color);
  color: var(--btn-text-hover-color);
}

.xircls-recent-card-title {
  font-size: 18px !important;
  color: var(--card-label-color);
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-recent-card-price {
  font-size: 16px !important;
  font-weight: bold;
  color: var(--card-label-color);
  font-family: var(--secondaryFontFamily) !important;

}

.change-password-warning {
  background-color: var(--card-background-color);
  color: var(--card-text-color);
  margin: auto;
  border: 1px solid rgb(229, 231, 235);
  padding: 1rem !important;
  border-radius: 0.5rem;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0.125rem 0.3125rem; */
  width: 600px;
  margin-top: 2% !important;
  font-size: 1.3rem;
  margin-bottom: 10% !important;
}

.logout-container {
  background-color: var(--card-background-color);
  text-align: center;
  padding: 7rem 1rem;
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.logout-icon {
  margin: 0 auto 1rem;
  color: #d1d5db;
  height: 7rem !important;
  width: 7rem !important;
}

.logout-heading {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--card-label-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-family);
}

.logout-text {
  color: var(--card-label-color);
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1px;
}

.logout-button {
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  border: 1px solid var(--btn-border-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: var(--font-family);
}

.logout-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--btn-text-hover-color);
}

.wishlist-card {
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--card-background-color);
  gap: 1rem;
  align-items: center;
  margin-bottom: 2%;
}

@media (min-width: 768px) {
  .wishlist-card {
    grid-template-columns: 1fr 2fr 1fr;
    padding: 1rem;
  }
}

.xircls-profile-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.xircls-profile-button-wrapper button {
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
}

.header-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-family);
  margin-right: 10px;
}

.search-box {
  position: relative;
}

.custom-search-input::placeholder {
  font-family: var(--font-family);
}

.search-box .icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  stroke: #888;
}


.orders-mobile {
  display: none;
}

.order-card {
  padding: 16px;
  margin-bottom: 20px;
}

.order-header {
  display: flex;
  justify-content: space-between;
}

.order-info {
  display: flex;
}

.order-meta {
  display: flex;
  justify-content: space-between;
}

.order-info img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  margin-right: 12px;
}

.product-name {
  font-weight: 600;
}

.label {
  font-size: 12px;
  color: #888;
}

.badge {
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
}

.delivered {
  background-color: #e0f7e9;
  color: #2e7d32;
}

.action-btn {
  /* color: var(--btn-text-color); */
  padding: 5px 8px;
  border: none;
  background: var(--btn-background-color);
  cursor: pointer;
  font-size: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  margin-top: 10px;
  color: var(--btn-text-color);
}

.orders-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  opacity: 1;
  table-layout: fixed;
}

#profileContainer {
  margin-bottom: 10%;
}



.link-btn {
  background: none;
  border: none;
  color: var(--card-text-color);
  text-decoration: none;
  cursor: pointer;
  text-wrap: nowrap;
  /* font-family: var(--secondaryFontFamily) !important; */
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.pagination-info {
  font-size: 12px !important;
}

.pagination-controls {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 6px;
}

.pagination-controls button {
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.pagination-controls .active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.pagination-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  position: relative;
}

.search-box input {
  border: 1px solid #ccc;
  font-family: var(--font-family);
  padding: 8px;
}

.search-box svg {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-badge-delivered {
  background-color: #d1fae5;
  color: #065f46;
}

.order-details-modal {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  width: 60%;
  margin: 0 20px;
  background: white;
  overflow-y: auto;
  /* max-height: 95vh; */
}

.order-details-modal.slide-in-top {
  transform: translateX(-50%) translateY(20px);
  /* Slide down to 20px from the top */
}

.order-modal {
  font-family: var(--font-family);
  /* margin: auto; */
  background: #fff;
  padding: 20px 30px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  gap: 2px;
}

.label {
  font-size: 13px;
  color: var(--card-label-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-family: var(--secondaryFontFamily);
  margin-top: 5px;
}

.status-badge {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
}

.status-badge.delivered {
  background-color: #d0f0d0;
  color: #2a7a2a;
}

.tracking-number {
  background-color: #eee;
  padding: 6px 12px;
  border-radius: 5px;
  display: inline-block;
  color: #333;
  margin-top: 1px;
}

.order-items {
  font-family: var(--font-family);
}

.order-items span,
.order-summary span {
  font-size: 1.4rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--font-family);
}

.item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 8px;
}


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

.price {
  font-weight: 500;
  white-space: nowrap;
}

.order-summary {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 15px;
}

.summary-line span {
  font-size: 1rem;
}

.modal-actions {
  text-align: right;
  margin-top: 20px;
}

.order-modal-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  text-wrap: nowrap;
  margin-bottom: 2%;
}

.order-modal-header span {
  color: var(--card-label-color);
  font-weight: 600;
}

.close-modal {
  padding: 10px 25px;
  background: var(--btn-background-color);
  color: var(--btn-text-color);
  font-size: 1.6rem;
  border-radius: 0px;
  cursor: pointer;
}

.close-modal:hover {
  background-color: var(--btn-background-hover-color);
  color: var(--btn-text-hover-color);
}

.order-modal-items {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.order-modal-item-title {
  font-weight: 600;
  font-size: 1.9rem;
}

.order-modal-item-price {
  font-weight: 600;
  font-size: 1.9rem;
}

.order-item-modal {
  display: flex;
  align-items: center;
  gap: 1%;
}

.fa-close {
  font-size: 2rem;
  display: flex;
  justify-content: end;
  color: #a0a0a0;
  cursor: pointer;
}

.content {
  position: relative;
  z-index: 10;
}

/* .heading {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
} */

.subtext {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat .label {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.stat .value {
  font-size: 1rem;
}

.tabSubheading {
  font-size: 1.5rem;
  color: var(--card-heading-color);
  display: block;
  margin-bottom: 2rem;
}

.profile-data-card-heading {
  color: var(--card-heading-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: var(--font-family);
}

.profile-data span {
  font-family: var(--font-family);
  color: var(--card-label-color) !important;
}

.tabHeading-heading {
  font-size: 3rem;
  color: var(--heading-color);
}

.order-recent-title {
  font-family: var(--font-family);
  margin-bottom: 1px;
  font-size: 2.8rem;
}

.pagination-one-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid lightgray;
  padding-left: 20px;
}

.table-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}


.action-order-a {
  display: flex;
  width: max-content;
  gap: 8px;
}

#close-menu {
  display: none;
}

.country-code-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-button {
  background: white !important;
  border: 1px solid #cbcbcb !important;
  padding: 8px 12px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #000 !important;
}

.dropdown-button:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.chevron-icon {
  transition: transform 0.3s;
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  background: white;
  height: 220px;
  border: 1px solid #ccc;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}

.dropdown-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

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

.hidden {
  display: none;
}


.profile-card-div {
  display: flex;
  gap: 3%;
  align-items: start;
}

.empty-item-card {
  background-color: var(--background-color);
  border-radius: 16px;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); */
  padding: 48px;
  text-align: center;
  height: 65vh;
}

.empty-item-card-icon-container {
  margin-left: auto;
  margin-right: auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.empty-item-card-heading {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.empty-item-card-paragraph {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 24px;
}

.order-item-image {
  height: 100px;
  width: 100px;
  object-fit: cover;
}

.modal-close-btn {
  display: flex !important;
  width: 100%;
}


#points-card {
  margin-top: 15%;
}

.xircls-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: block !important;
}

.order-details-modal {
  position: fixed;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  /* higher than overlay */
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ================================================================ Loyalty Points ============================================= */

.xircls-loyalty-program-card {
  background-color: var(--card-background-color);
  border-top: 1px solid var(--card-border-color);
  border-left: 1px solid var(--card-border-color);
  border-right: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
  padding: 30px;
}

.xircls-loyalty-program-card .row-1 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.xircls-loyalty-program-card .row-1 .xircls-icon-wrapper {
  background-color: black;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xircls-loyalty-program-card .row-1 .xircls-icon-svg {
  stroke: white;
  stroke-width: 2;
  width: auto !important;
}

.xircls-loyalty-program-card .row-1 .xircls-text-wrapper div:first-child {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-style: var(--font-family) !important;
}

.xircls-loyalty-program-card .row-1 .xircls-text-wrapper div:last-child {
  font-size: 12px;
  color: #666;
}

.xircls-loyalty-program-card .row-2 {
  margin: 6px 0 12px;
}

.xircls-loyalty-program-card .label-row {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  font-size: 14px;
  color: #222;
  font-weight: 500;
}

.xircls-loyalty-program-card .label-row>div:last-child {
  text-align: right;
}

.xircls-loyalty-program-card .row-2 .progress-bar {
  height: 10px;
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.xircls-loyalty-program-card .row-2 .progress-fill {
  width: 75%;
  height: 100%;
  background-color: #000000;
  border-radius: 5px 0 0 5px;
}

.xircls-loyalty-program-card .row-3 {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
}

.xircls-loyalty-program-card .row-3 .col {
  text-align: center;
  padding: 25px;
}

.xircls-loyalty-program-card .row-3 .col div:first-child {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-loyalty-program-card .row-3 .col div:last-child {
  font-size: 12px;
  color: #888;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-redeem-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: var(--card-background-color);
  border-right: 1px solid var(--card-border-color);
  border-left: 1px solid var(--card-border-color);
  border-bottom: 1px solid var(--card-border-color);
  border-top: none;
  border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
}

.xircls-redeem-div .redeem-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.xircls-redeem-div .redeem-left i {
  font-size: 16px;
  color: #525252;
}

.xircls-redeem-div .redeem-left div {
  margin: 0;
  font-size: 15px !important;
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-redeem-div .redeem-btn {
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family) !important;
}

.xircls-redeem-div .redeem-btn:hover {
  background-color: var(--btn-background-hover-color);
  color: var(--btn-text-hover-color);
}

.toggle-section {
  margin-top: 20px;
  padding-top: 16px;
}

.toggle-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  background-color: #F5F5F4;
  color: #ccc;
  padding: 1px;
  font-family: var(--secondaryFontFamily) !important;
}

.loyalty-tab-btn {
  padding: 6px 14px;
  border: none;
  background: var(--container-one-background-color);
  color: var(--menu-items-color);
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s ease;
  width: 100%;
  margin: 0px;
}

.lty-active {
  background-color: white;
  color: var(--menu-items-select-color);
  border: none;
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ================================================================ Redemptiom Modal ============================================= */

.xircls-redemption-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.616);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: var(--font-family) !important;
}

.xircls-redemption-modal .xircls-redemption-modal-content {
  width: 600px;
  background: #fff;
  padding: 24px;
  min-height: 50vh;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}

.xircls-redemption-modal .xircls-redemption-modal-content>div {
  color: #555;
  margin-bottom: 25px;
  font-size: 12px !important;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-redemption-modal .xircls-redemption-modal-content>span {
  margin-bottom: 8px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  font-family: var(--font-family) !important;
}

.xircls-redemption-modal .xircls-redemption-modal-content .xircls-redemption-modal-close-btn {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 28px !important;
  cursor: pointer;
  color: #111;
  font-weight: normal;
  margin: 0px !important;
}

.xircls-redemption-modal .xircls-redemption-modal-content .redemption-option {
  display: flex;
  align-items: start;
  justify-content: space-between;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.xircls-redemption-modal-content .redemption-option .icon-wrapper {
  margin-right: 15px;
  margin-top: 7px;
  color: #525252;
}

.xircls-redemption-modal-content .redemption-option .icon-wrapper i {
  padding-top: 8px;
}

.xircls-redemption-modal-content .redemption-option .content-wrapper {
  display: flex;
}

.xircls-redemption-modal-content .redemption-option .content-wrapper .title {
  margin: 0px !important;
  color: #000;
  font-size: 17px !important;
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-redemption-modal-content .redemption-option .content-wrapper .sub-title {
  font-size: 12px;
  color: #666;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-redemption-modal-content .redemption-option .point-tag {
  margin-left: auto;
  color: #000;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-redemption-modal-content .xircls-redemption-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.xircls-redemption-modal-content .edit-btn {
  padding: 4px 8px;
  font-size: 15px;
  cursor: pointer;
  background-color: white;
  color: #111;
  border: 1px solid #111;
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-redemption-modal-content .redemption-points-div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.xircls-redemption-modal-content .save-btn {
  padding: 4px 8px;
  font-size: 15px;
  cursor: pointer;
  background-color: white;
  color: #111;
  border: 1px solid #111;
}

.xircls-redemption-modal-content .points-input {
  margin-top: 5px;
  width: 80px;
  padding: 3px 10px;
  font-size: 15px;
}

.xircls-redemption-modal-footer .xircls-redemption-cancel-btn {
  padding: 10px 20px;
  border: none;
  background: #f7f7f7;
  color: #535353;
  cursor: pointer;
  font-size: 14px !important;
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-redemption-modal-footer .xircls-redemption-confirm-btn {
  padding: 10px 20px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px !important;
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-redemption-modal-footer .xircls-redemption-confirm-btn:disabled {
  background-color: #ccc;
  /* Lighter background */
  color: #111;
  /* Lighter text */
  cursor: not-allowed;
  /* Shows a "not allowed" cursor */
  opacity: 0.6;
  /* Dim the button */
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ======================================================= xircls-loyalty-tab-content ============================================= */

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ======================================================= xircls-loyalty-overview ============================================= */

.xircls-loyalty-overview-wrapper {
  display: flex;
  gap: 20px;
}

.xircls-loyalty-overview-wrapper .loyalty-overview-card {
  flex: 1;
  padding: 25px;
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  background: var(--card-background-color);
}

.xircls-loyalty-overview-wrapper .loyalty-overview-card>span {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 18px !important;
  color: #000;
  font-family: var(--font-family) !important;
}

.xircls-loyalty-overview-wrapper .loyalty-overview-card .loyalty-card-item-row {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.loyalty-overview-card .loyalty-card-item-row i {
  color: #525252;
  font-size: 18px;
  padding-top: 8px;
}

.loyalty-overview-card .loyalty-card-item-row .loyalty-card-item-text div:first-child {
  font-weight: bold;
  font-size: 14px;
  font-family: var(--secondaryFontFamily) !important;

}

.loyalty-overview-card .loyalty-card-item-row .loyalty-card-item-text div:last-child {
  font-size: 13px;
  color: #555;
  font-family: var(--secondaryFontFamily) !important;

}

/* ================= */
.xircls-loyalty-overview .card-with-table-wrapper {
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  padding: 25px;
  background: var(--card-background-color);
  margin-top: 24px;
}

.xircls-loyalty-overview .card-with-table-wrapper>span {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 18px !important;
  color: #000;
  font-family: var(--font-family) !important;
}

.xircls-loyalty-overview .card-with-table-wrapper .overview-table {
  width: 100%;
}

.xircls-loyalty-overview .card-with-table-wrapper .overview-table>thead>tr>th {
  padding: 12px !important;
  color: #000;
  border-bottom: 1px solid #efefef !important;
  font-size: 10px !important;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-loyalty-overview .card-with-table-wrapper .overview-table>tbody>tr>td {
  padding: 12px !important;
  font-weight: 600;
  text-align: left !important;
  border-bottom: 1px solid #efefef !important;
  font-size: 14px !important;
  font-family: var(--secondaryFontFamily) !important;

}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ======================================================= xircls-loyalty-point-history ============================================= */

.xircls-loyalty-point-history {
  padding: 25px;
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  background-color: var(--card-background-color);
}

.xircls-loyalty-point-history>span {
  color: var(--card-heading-color);
  font-size: 18px !important;
  font-weight: 600;
  font-family: var(--font-family) !important;

}

.xircls-loyalty-point-history .point-history-table {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.xircls-loyalty-point-history .point-history-table>thead>tr>th {
  padding: 12px !important;
  color: var(--card-label-color);
  border-bottom: 1px solid #efefef !important;
  font-size: 10px !important;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-loyalty-point-history .point-history-table>tbody>tr>td {
  padding: 12px !important;
  font-weight: 600;
  text-align: left !important;
  border-bottom: 1px solid #efefef !important;
  font-size: 14px !important;
  color: var(--card-text-color);
  font-family: var(--secondaryFontFamily) !important;

}

.pagination-wrapper button {
  padding: 4px 8px;
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  cursor: pointer;
  border: none;
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ======================================================= xircls-loyalty-ways-to-earn ============================================= */

.xircls-loyalty-ways-to-earn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.xircls-loyalty-ways-to-earn .xircls-loyalty-card {
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  background-color: var(--card-background-color);
  padding: 25px;
}

.xircls-loyalty-ways-to-earn .xircls-loyalty-card>span {
  color: var(--card-heading-color);
  font-size: 18px !important;
  font-weight: 600;
  font-family: var(--font-family) !important;

}

.xircls-loyalty-ways-to-earn .xircls-loyalty-card .loyalty-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.xircls-loyalty-card .loyalty-card-grid .loyalty-card-grid-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  padding: 4px;
}

.xircls-loyalty-card .loyalty-card-grid .loyalty-grid-icon-wrapper {
  flex: 0 0 auto;
  padding: 10px 14px;
  background: #eee;
  border-radius: 50%;
}

.xircls-loyalty-card .loyalty-card-grid .loyalty-grid-icon-wrapper i {
  font-size: 18px !important;
  color: #525252;
}

.xircls-loyalty-card .loyalty-card-grid .loyalty-grid-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.xircls-loyalty-card .loyalty-grid-content-wrapper>div:nth-child(1) {
  font-weight: bold;
  color: var(--card-label-color);
  font-size: 16px;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-loyalty-card .loyalty-grid-content-wrapper>div:nth-child(2) {
  font-size: 13px !important;
  color: var(--card-text-color);
  margin-bottom: 2px;
  font-family: var(--secondaryFontFamily) !important;

}

.xircls-loyalty-card .loyalty-grid-content-wrapper>button:nth-child(3) {
  color: #111;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  text-align: left;
  padding: 0px;
  font-size: 13px !important;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ======================================================= xircls-loyalty-tier-benefits ============================================= */
.xircls-loyalty-tier-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #efefef;
  padding: 25px;
}

.xircls-loyalty-tier-benefits>span {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 18px !important;
  color: #000;
}

.xircls-loyalty-tier-benefits>div {
  color: #555;
}

.xircls-loyalty-tier-benefits .xircls-tier-benefits-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.xircls-loyalty-tier-benefits .tier-benefits-card {
  flex: 1 1 200px;
  border: 1px solid #efefef;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.xircls-loyalty-tier-benefits .tier-benefits-card>div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier-benefits-card>div:first-child span:first-child {
  font-weight: bold;
  font-size: 14px;
  margin: 0px;
  color: #000;
}

.tier-benefits-card>div:first-child .tier-tag {
  font-size: 10px;
  color: #fff;
  background-color: #111;
  border-radius: 0px;
  padding: 1px 6px;
}

.xircls-loyalty-tier-benefits .tier-benefits-card>div:nth-child(2) {
  color: #555;
  margin: 0px;
  font-size: 10px !important;
}

.xircls-loyalty-tier-benefits .tier-benefits-card>ul {
  list-style-type: disc;
  padding-left: 15px;
  margin: 0px;
  flex: 1;
  margin-top: 20px;
}

.xircls-loyalty-tier-benefits .tier-benefits-card>ul li {
  font-size: 14px !important;
  color: #333;
  list-style-type: disc;
}

/* ======================pagination ========================= */
.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ======================================================================================================= */
@media (max-width: 768px) {
  .xircls-loyalty-overview-wrapper {
    flex-direction: column;
  }

  .xircls-redeem-div {
    flex-direction: column;
    padding: 14px !important;
  }

  .loyalty-card-grid {
    grid-template-columns: 1fr !important;
  }

  .xircls-redemption-modal-content {
    width: 90% !important;
    margin: auto !important;
    font-family: var(--font-family) !important;
  }

  .xircls-loyalty-program-card .row-3 .col {
    padding: 10px !important;
  }

  .xircls-redeem-div .redeem-right {
    margin-top: 10px;
  }

  /* ======================recently viewed ===================== */
  .xircls-recent-card {
    width: auto;
  }

  .xircls-recent-products-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  .tabHeading-heading {
    font-size: 2rem;
    color: var(--heading-color);
  }

  .tabSubheading {
    font-size: 1.2rem;
    color: var(--card-heading-color);
    display: block;
    margin-bottom: 2rem;
  }

  .xircls-wishlist-card {
    flex-direction: column !important;
    gap: 0px !important;
    align-items: normal !important;
  }

  .xircls-wishlist-card-imageDiv {
    height: auto !important;
  }

  .xircls-wishlist-card-reminderDiv {
    width: 100% !important;
  }

  .xircls-personal-grid {
    grid-template-columns: 1fr !important;
  }

  .xircls-personal-information-card label {
    width: 90% !important;
  }

  /* ============================profile */
  #xircls-profile-card {
    flex-direction: column !important;
    gap: 0rem !important;
  }

  #xircls-profile-card-section-1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
  }

  #xircls-profile-card-section-2 {
    max-width: 100% !important;
  }

  /* ========================wishlist */
  #xircls-wishlist-section-header {
    flex-direction: column !important;
  }
}

/* Wrapper for all products */



.empty-items-card {
  background-color: var(--card-background-color) !important;
  border-radius: var(--card-border-radius) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  padding: 48px !important;
  text-align: center !important;
  height: 65vh !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-family: var(--font-family);
}

.empty-items-icon-container {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 64px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #feeef5 !important;
  /* Keeping hardcoded color as it's a unique style */
  border-radius: 9999px !important;
  margin-bottom: 16px !important;
  font-family: var(--font-family);
}

.empty-items-icon {
  /* font-size: 32px !important; */
  color: var(--btn-background-color) !important;
  /* Assuming this should match the button color */
  font-family: var(--font-family);
}

.empty-items-heading {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-bottom: 0px !important;
  font-family: var(--secondaryFontFamily);
}

.empty-items-paragraph {
  font-size: 12px !important;
  color: #6b7280 !important;
  margin-bottom: 0px !important;
  font-family: var(--secondaryFontFamily);
}

.empty-items-card-wrapper {
  display: flex !important;
  flex-direction: column !important;
  margin: auto !important;
}

:root {
  --Xircls_track_primary-color: #266b4b;
  --Xircls_track_text-dark: #212529;
  --Xircls_track_text-medium: #495057;
  --Xircls_track_text-light: #6c757d;
  --Xircls_track_bg-main: #ffffff;
  --Xircls_track_bg-subtle: #f8f9fa;
  --Xircls_track_border-color: #dee2e6;
}

.xircls-track-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.xircls-track-modal-overlay.xircls-track-modal-open {
  opacity: 1;
}

.xircls-track-modal-content {
  background-color: var(--Xircls_track_bg-main);
  border-radius: 0.5rem;
  width: 90%;
  height: 90%;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.xircls-track-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--Xircls_track_border-color);
  flex-shrink: 0;
}

.xircls-track-modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--Xircls_track_text-dark);
  margin: 0;
}

.xircls-track-modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 9999px;
  line-height: 1;
  color: var(--Xircls_track_text-medium);
}

.xircls-track-modal-close-btn:hover {
  background-color: #f1f1f1;
}

.xircls-track-modal-close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.xircls-track-modal-body {
  padding: 0 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
  background-color: var(--Xircls_track_bg-subtle);
}

.xircls-track-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #e9ecef;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin: 1.5rem 0;
}

.xircls-track-tab {
  padding: 0.6rem 1rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--Xircls_track_text-medium);
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}

.xircls-track-tab.xircls-track-tab--active {
  background-color: var(--Xircls_track_bg-main);
  color: var(--Xircls_track_text-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.xircls-track-tab-panel {
  display: none;
}

.xircls-track-tab-panel.xircls-track-tab-panel--active {
  display: block;
}

.xircls-track-panel-section {
  background-color: var(--Xircls_track_bg-main);
  padding: 1.5rem;
  border: 1px solid var(--Xircls_track_border-color);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.xircls-track-panel-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--Xircls_track_text-dark);
}

.xircls-track-panel-section>p {
  font-size: 0.875rem;
  color: var(--Xircls_track_text-light);
  margin: 0;
}

.xircls-track-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background-color: var(--Xircls_track_primary-color);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.xircls-track-primary-btn-itemSection {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background-color: var(--Xircls_track_primary-color);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

/* --- Overall Tracking Tab --- */
.xircls-track-progress-container {
  margin: 2.5rem 0 1.5rem 0;
  position: relative;
}

.xircls-track-progress-container-itemwise {
  margin: 0 !important;
  position: relative;
}

.xircls-track-progress-track {
  position: absolute;
  top: 20px;
  left: 12%;
  width: 76%;
  height: 4px;
  background-color: var(--Xircls_track_border-color);
  transform: translateY(-50%);
}

.xircls-track-progress-track-itemwise {
  position: absolute;
  top: 20px;
  left: 15%;
  width: 68%;
  height: 4px;
  background-color: var(--Xircls_track_border-color);
  transform: translateY(-50%);
}

.xircls-track-progress-fill {
  height: 100%;
  background-color: var(--Xircls_track_primary-color);
  transition: width 0.5s ease-in-out;
}

.xircls-track-progress-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.xircls-track-progress-steps-itemwise {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.xircls-track-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.xircls-track-progress-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: var(--Xircls_track_border-color);
  color: var(--Xircls_track_text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  border: 4px solid var(--Xircls_track_bg-main);
}

.xircls-track-progress-step.xircls-track-progress-step--active .xircls-track-progress-step-icon {
  background-color: var(--Xircls_track_primary-color);
  color: white;
  border-color: var(--Xircls_track_bg-main);
}

.xircls-track-progress-step p {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: var(--Xircls_track_text-medium);
}

.xircls-track-progress-step.xircls-track-progress-step--active p {
  font-weight: 600;
  color: var(--Xircls_track_text-dark);
}

.xircls-track-info-box {
  background-color: var(--Xircls_track_bg-main);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--Xircls_track_border-color);
  max-width: 440px;
  margin: 1.5rem auto 0 auto;
}

.xircls-track-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.xircls-track-info-row span:first-child {
  color: var(--Xircls_track_text-light);
}

.xircls-track-info-row span:last-child {
  color: var(--Xircls_track_text-dark);
  font-weight: 500;
}

.xircls-track-shipping-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.xircls-track-shipping-details h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  font-size: 1rem;
}

.xircls-track-shipping-details div p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--Xircls_track_text-medium);
  line-height: 1.5;
}


/* --- Item-wise Status Tab --- */
.xircls-track-item-card {
  background-color: var(--Xircls_track_bg-main);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.xircls-track-item-image {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.xircls-track-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* --- CHANGE: Restore desktop header layout --- */
.xircls-track-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.xircls-track-item-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--Xircls_track_text-dark);
}

.xircls-track-item-info {
  font-size: 0.9rem;
  color: var(--Xircls_track_text-light);
  margin: 0 0 1.25rem 0;
}

.xircls-track-item-shipment-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.xircls-track-item-shipment-col {
  display: flex;
  flex-direction: column;
}

.xircls-track-item-shipment-label {
  font-size: 0.9rem;
  color: var(--Xircls_track_text-light);
  margin-bottom: 0.25rem;
}

.xircls-track-item-shipment-value {
  font-size: 0.9rem;
  color: var(--Xircls_track_text-dark);
  font-weight: 500;
}

.xircls-track-item-progress-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--Xircls_track_text-light);
  margin-bottom: 1.25rem;
}

/* --- CHANGE: CSS to show/hide responsive buttons --- */
.xircls-track-btn-mobile {
  display: none;
}

.xircls-track-btn-desktop {
  display: block;
}

.xircls-track-item-track-btn-wrapper.xircls-track-btn-desktop {
  /* Set a width for the button in the header on desktop */
  width: 150px;
  flex-shrink: 0;
}


.xircls-track-item-stepper {
  position: relative;
  padding-bottom: 1.5rem;
}

.xircls-track-item-stepper-track,
.xircls-track-item-stepper-fill {
  position: absolute;
  top: 5px;
  left: 0;
  height: 3px;
  border-radius: 3px;
}

.xircls-track-item-stepper-track {
  width: 100%;
  background-color: #e5e7eb;
  z-index: 1;
}

.xircls-track-item-stepper-fill {
  width: 0;
  background-color: var(--Xircls_track_primary-color);
  z-index: 2;
  transition: width 0.5s ease;
}

.xircls-track-item-stepper-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.xircls-track-item-stepper-step:nth-child(3) {
  left: 0;
  transform: translateX(0%);
}

.xircls-track-item-stepper-step:nth-child(4) {
  left: 50%;
  transform: translateX(-50%);
}

.xircls-track-item-stepper-step:nth-child(5) {
  left: 100%;
  transform: translateX(-100%);
}

.xircls-track-item-stepper-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e5e7eb;
  border: 2px solid var(--Xircls_track_bg-main);
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.xircls-track-item-stepper-step.xircls-track-item-stepper-step--active .xircls-track-item-stepper-dot {
  background-color: var(--Xircls_track_primary-color);
}

.xircls-track-item-stepper-label {
  position: absolute;
  top: 20px;
  font-size: 0.8rem;
  color: var(--Xircls_track_text-light);
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.xircls-track-item-stepper-step.xircls-track-item-stepper-step--active .xircls-track-item-stepper-label {
  color: var(--Xircls_track_text-dark);
  font-weight: 500;
}

.xircls-track-primary-btn:hover,
.xircls-track-primary-btn-itemSection:hover {
  color: white !important;
  /* Force text to stay white */
  filter: brightness(90%);
  /* Add a subtle visual feedback on hover */
}

/* --- Modal Footer --- */
.xircls-track-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--Xircls_track_border-color);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  background-color: var(--Xircls_track_bg-main);
}

.xircls-track-secondary-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--Xircls_track_text-dark);
  background-color: var(--Xircls_track_bg-main);
  border: 1px solid var(--Xircls_track_border-color);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.xircls-track-secondary-btn:hover {
  background-color: var(--Xircls_track_bg-subtle);
}

/* --- Other styles --- */
.xircls-track-primary-btn:disabled {
  /* ... */
}

.xircls-track-loading-spinner {
  /* ... */
}

@keyframes spin {
  /* ... */
}

.xircls-track-progress-step--complete .xircls-track-progress-step-icon {
  background-color: #266b4b;
  color: #ffffff;
}

.xircls-track-progress-step--complete p {
  color: #266b4b;
  font-weight: 600;
}

.xircls-track-progress-step--active .xircls-track-progress-step-icon {
  background-color: #0dfd19;
  color: white;
}

.xircls-track-progress-step--pending .xircls-track-progress-step-icon {
  background-color: #dee2e6;
  color: #6c757d;
}

.xircls-track-progress-step--pending p {
  color: #6c757d;
  font-weight: normal;
}

/*
==========================================================================
  MOBILE RESPONSIVE STYLES (screens <= 768px)
==========================================================================
*/
@media (max-width: 768px) {
  .xircls-track-modal-overlay {
    padding: 0;
    align-items: flex-start;
    overflow: hidden;
  }

  .xircls-track-modal-content {
    width: 95%;
    height: 90%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    margin-top: 10%;
    box-shadow: none;
  }

  .xircls-track-modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
  }

  .xircls-track-modal-header,
  .xircls-track-modal-footer {
    flex-shrink: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xircls-track-modal-header h2 {
    font-size: 1.1rem;
  }

  .xircls-track-progress-container {
    margin: 2rem 0;
  }

  .xircls-track-progress-container-itemwise {
    margin: 0;
  }



  .xircls-track-progress-step p {
    font-size: 9px;
  }

  .xircls-track-progress-step-icon {
    border: none;
  }

  .xircls-track-shipping-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* --- Item-wise Status Tab (Mobile) --- */
  .xircls-track-item-card {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .xircls-track-item-image {
    width: 100px;
    height: 100px;
    align-self: center;
  }

  /* --- CHANGE: Revert header to simple block layout --- */
  .xircls-track-item-header {
    display: block;
    margin-bottom: 0;
  }

  .xircls-track-primary-btn-itemSection {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  /* --- CHANGE: Hide desktop button, show mobile button --- */
  .xircls-track-btn-desktop {
    display: none;
  }

  .xircls-track-btn-mobile {
    display: block;
    margin-top: 2rem;
    /* Spacing for the bottom button */
  }

  .xircls-track-item-info {
    margin-bottom: 1rem;
  }

  .xircls-track-item-shipment-info {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  /* --- Item Progress Stepper Fix (Mobile) --- */
  .xircls-track-item-stepper-label {
    font-size: 0.75rem;
  }

  .xircls-track-item-stepper-step:nth-child(3) .xircls-track-item-stepper-label {
    left: 0;
    transform: translateX(0);
    text-align: left;
  }

  .xircls-track-item-stepper-step:nth-child(5) .xircls-track-item-stepper-label {
    left: 100%;
    transform: translateX(-100%);
    text-align: right;
  }
}

@media (max-width: 768px) {
  .custom-height-outer {
    height: 100% !important;
  }
}

.edit-address-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.edit-shipping-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  /* Higher than the overlay */
  width: 500px;
  /* Adjust as needed */
}

.edit-shipping-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px 28px;
}

@media (max-width: 768px) {
  .edit-shipping-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 90%;
    overflow-y: auto;
  }

  .shippingFromDiv {
    overflow-y: auto;
    height: 90%;
  }
}

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

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

.form-group input,
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  /* border-radius: 4px; */
  box-sizing: border-box;
}

.modal-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  grid-column: 2;
}

.modal-actions button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border-radius: 10px;
  border: 1px solid var(--btn-border-color);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.edit-shipping-icon {
  cursor: pointer;
}

.order-details-modal-title-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.omc-cancelled-div {
  margin-left: 25px;
  margin-bottom: 6px;
  margin-top: -10px;
}

.order-details-modal-title-hr {
  margin: 0 !important;
}

.btn-primary {
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border-radius: 10px;
  border: 1px solid var(--btn-border-color);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 999;
  /* Below the modal */
  display: none;
  /* Hidden by default */
}

@media (max-width: 768px) {
  .responsive-width {
    width: 90% !important;
    height: 90% !important;
  }
}

.xircls-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  gap: 5px;
  height: 60px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

/* Mobile menu items */
.xircls-mobile-nav .xircls-menu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: var(--menu-items-color);
  font-size: 0px;
  font-family: var(--secondaryFontFamily) !important;
  text-decoration: none;
  position: relative;
  /* For positioning the badge */
}

.xircls-mobile-nav .xircls-menu-item .xircls-menu-icon svg {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;

}

.xircls-mobile-nav .xircls-menu-item .xircls-menu-label {
  font-family: var(--secondaryFontFamily) !important;

  font-size: 11px;
  font-weight: normal;
}

/* Active state */
.xircls-mobile-nav .xircls-menu-item.active {
  color: var(--sidenavbtnhoverbackground);
}

.xircls-mobile-nav .xircls-menu-item.active .xircls-menu-label,
.xircls-mobile-nav .xircls-menu-item.active .xircls-menu-icon {
  color: var(--sidenavbtnhoverbackground);

  font-weight: 600;
}

.xircls-menu-icon {
  margin-right: 5px !important;
}

.xircls-mobile-nav {
  overflow-x: auto;
  /* Enable horizontal scroll */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on iOS */
  scrollbar-width: none;
  /* Firefox: hide scrollbar */
}

/* Hide scrollbar on WebKit browsers (Chrome, Safari) */
.xircls-mobile-nav::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .xircls-mobile-nav {
    display: flex !important;

  }
}

.xircls-order-page-btn {
  padding: 8px 16px;
  color: var(--btn-text-color);
  background-color: var(--btn-background-color);
  border: none;
  cursor: pointer;
  transition: ease-in 0.3s;
}

.xircls-order-page-btn:hover {
  color: var(--btn-text-hover-color);
  background-color: var(--btn-background-hover-color);
}

.wishlist-action-btns {
  padding: 8px 16px;
  color: var(--btn-text-color);
  background-color: var(--btn-background-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: ease-in 0.3s;
}

.wishlist-action-btns:hover {
  color: var(--btn-text-hover-color);
  background-color: var(--btn-background-hover-color);
}

@media (max-width: 768px) {
  .xircls-shipping-add-title {
    font-size: 18px !important;
  }

  .wishlist-bottom-section {
    margin-left: 0px !important;
  }

  .wishlist-action-btns {
    font-size: 10px !important;
    padding: 8px !important;
  }

  #xircls-add-all-btn,
  #xircls-buy-all-btn,
  #xircls-clearall-btn {
    font-size: 10px !important;
  }
}

.order-summary-item-image {
  width: 30px !important;
  height: 35px !important;
  object-fit: contain !important;
  border-radius: 4px !important;
  margin-right: 10px !important;
}

.disabled-btn-mobile {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  border: none;
}

#theme-container {
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
}

.svg {
  fill: none !important;
}

svg.xircls_svg,
.xircls_svg.icon,
.xircls_svg[class^="icon-"] {
  display: inline-block !important;
  vertical-align: middle !important;
  width: 21px !important;
  height: 21px !important;
  font-size: 21px !important;
  fill: none !important;
}

.container {
  padding: 0px !important;
}

button {
  font-family: var(--secondaryFontFamily) !important;
}

input::-webkit-input-placeholder {
  font-family: var(--secondaryFontFamily) !important;
}

input:-ms-input-placeholder {
  font-family: var(--secondaryFontFamily) !important;
}

input:-moz-placeholder {
  font-family: var(--secondaryFontFamily) !important;
}

input::-moz-placeholder {
  font-family: var(--secondaryFontFamily) !important;
}

input {
  font-family: var(--secondaryFontFamily) !important;

}

select {
  font-family: var(--secondaryFontFamily) !important;
}

.xircls-menu-label {
  font-family: var(--secondaryFontFamily) !important;
}

#customer-recipient-name-$ {
  cardId
}

.Axentra-cancel-btn-color {
  color: #e33034 !important;
}

::placeholder {
  color: var(--card-text-color);
  opacity: 0.6;
}

.omc-table-container {
  overflow-x: auto;
  /* Enable horizontal scrolling for smaller screens */
}

.omc-custom-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  /* Ensure rounded corners are visible */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); Optional subtle shadow */
  background-color: white;
  /* White background */
  /* border-radius: var(--axentra-card-border-radius); */
  font-family: var(--axentra-secondaryFontFamily) !important;
}

.omc-custom-table th,
.omc-custom-table td {
  padding: 24px 20px;
  border-left: none !important;
  border-right: none !important;
  text-align: left;
  border-bottom: 1px dashed var(--axentra-card-border-color);
  mix-blend-mode: multiply;
  font-family: var(--axentra-secondaryFontFamily) !important;

}

.omc-custom-table thead {
  background-color: white;
  border-bottom: 1px solid var(--axentra-card-border-color);
  /* Light gray background for header */
}

.omc-custom-table th {
  font-weight: bold;
  color: #333;
}

.order-table-headers {
  font-size: 12px;
  text-align: left !important;
}

.order-table-headers-left {
  text-align: left !important;
  font-size: 12px !important;
}

.order-table-data-bold {
  font-weight: 800 !important;
  color: black !important;
  /* Assuming this color is similar to selected menu items */
  font-family: var(--axentra-font-family);
  width: 100%;
}

.Axentra-ReturnBtn {
  /* color: var(--axentra-btn-text-color); */
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: var(--axentra-card-border-radius);
  background-color: rgb(36, 35, 35);
  border: none;
  /* background-color: var(--axentra-btn-background-color); */
  cursor: pointer;
  font-family: var(--axentra-font-family);
  justify-content: center;
  align-items: center;
  gap: 5px;

}

.Axentra-ReturnBtn:hover {
  background-color: rgb(133, 130, 130);
}

.Axentra-returnclose {

  font-size: 12px;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: var(--axentra-card-border-radius);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--axentra-font-family);
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.Axentra-ReturnOrderName {
  font-size: 12px !important;
}

.Axentra-ReturnOrderVariant {
  font-size: 11px !important;
}

.Axentra-ReturnOrderprice {
  font-size: 10px !important;
}

.Axentra-ReasonReturnModal {
  font-size: 13px !important;
}

.Axentra-ReasonReturnModal1 {
  font-size: 14px !important;
}

.Axentra-returnLabel {
  font-size: 12px !important;
}

.Axentra-return-order-btn {
  border: 1px solid rgb(219, 213, 213);
  padding: 5px;
  background-color: rgb(194, 192, 192);
  color: rgb(0, 0, 0);
  font-size: 12px;
}

.Axentra-returnModal {
  width: 92% !important;
  max-height: 80vh !important;

}

.Axentra-returnmodal-header {
  font-size: 16px !important;
}

.Axentra-ReturnOrderImg {
  width: 42px !important;
  height: 42px !important;
}

.Axentra-custom-checkbox {
  display: inline-block !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;

  width: 16px !important;
  height: 16px !important;
  margin-top: 4px !important;
  cursor: pointer !important;

  clip: auto !important;
  position: static !important;
  overflow: visible !important;
  padding: initial !important;
  border: initial !important;
}

.Axentra-return-order-btn:hover {
  background-color: #000;
  color: white;
}

.Axentra-exchange-order-btn {
  border: 1px solid rgb(219, 213, 213);
  padding: 5px;
  background-color: rgb(194, 192, 192);
  color: rgb(0, 0, 0);
  font-size: 12px;
}

.Axentra-exchange-order-btn:hover {
  background-color: #000;
  color: white;
}

.axentra-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;

}

.axentra-modal {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  max-height: 90vh;
  /* Limit modal height */
  overflow-y: auto;
  /* Scroll inside modal */
  padding: 28px;
}

/* === Close Button === */
.axentra-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  z-index: 10;
}

/* === Titles & Subtitles === */
.modal-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  /* space-y-1.5 → 6px */
  /* Optional responsive tweak */
  /* text-align: left; */
  /* @media (min-width: 640px) {
    text-align: left;
  } */
  margin-top: 0;
  padding-bottom: 60px;
  /* px-8 pt-8 pb-6 → 32px 32px 24px */
  border-bottom: 1px solid #f3f4f6;
  /* border-gray-100 */
  width: 100%;
  text-align: left;
}

.modal-title {
  font-size: 30px;
  /* 30px */
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  /* 8px */
  margin-top: 0;
  color: #0C0A09;
}

/* .modal-subtitle {
  font-size: 1rem; 
  color: #6b7280; 
  font-family: 'Cormorant Garamond', serif; 
  font-weight: 400;
} */
.modal-subtitle {
  font-size: 1.5rem;
  color: #6b7280;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

/* === Alert Section === */

.modal-alert {
  /* padding: 1rem; */
  padding: 16px;
  /* p-4 */
  border-left-width: 4px;
  /* border-l-4 */
  border-left-style: solid;
  /* must specify style for border to show */
  background-color: #ecfdf5;
  /* bg-green-50 */
  border-left-color: #4ade80;
  /* border-green-400 */
  display: flex;
  /* flex */
  align-items: center;
  /* items-center */
}

.modal-alert .icon {
  width: 20px;
  /* h-5 */
  height: 20px;
  /* w-5 */
  color: #22c55e;
  /* text-green-600 */
  margin-right: 8px;
  /* mr-2 */
  flex-shrink: 0;
  /* icon won't shrink */
}

.modal-alert .text-content {
  display: flex;
  flex-direction: column;
  /* flex-col */
}

.modal-alert .title {
  font-weight: 500;
  /* font-medium */
  font-size: 14px;
  /* text-sm */
  margin: 0;
  font-family: 'inter,sanserif';
}

.modal-alert .subtitle {
  font-size: 14px;
  /* text-sm */
  color: #4b5563;
  /* text-gray-600 */
  margin-top: 4px;
  /* mt-1 */
  margin-bottom: 0;
}

/* === Order Box === */

.modal-order-box {
  margin-top: 20px;
}

.modal-order-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* .modal-order-info {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
  flex-grow: 1;
} */
/* .modal-order-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: small;
  margin-left: 10px;
}
.modal-order-img {
  width: 100px;
  height: auto;
  border-radius: 4px;
  background-color: #696b6e;
}
.order-id-heading {
  margin-bottom: 10px;
  font-size: 18px;
} */


.modal-order-box {
  background-color: #f9fafb;
  /* bg-gray-50 */
  padding: 16px;
  /* p-4 */
  font-family: 'Cormorant Garamond', serif;
}

.order-id-heading {
  font-size: 1.5rem;
  /* text-lg */
  font-weight: 600;
  /* font-medium */
  margin-bottom: 12px;
  /* mb-3 */
  font-family: 'Cormorant Garamond', serif;
}

.modal-order-content {
  display: flex;
  align-items: center;
  gap: 12px;
  /* space-x-3 */
}

.modal-order-img-wrapper {
  height: 80px;
  width: 80px;
  border: 1px solid #e5e7eb;
  /* border-gray-200 */
  overflow: hidden;
  flex-shrink: 0;
}

.modal-order-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-order-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.product-detail {
  font-size: 1.2rem;
  color: #4b5563;
  /* text-gray-600 */
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 2px;
}

/* === Return Reason Section === */
/* .modal-reason-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reason-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111827;
}

.reason-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background-color: #f3f4f6;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  color: #111;
} */
.modal-reason-section {
  padding: 10px 0;
  font-family: 'Cormorant Garamond', serif;
}

.ex-modal-reason-section {
  padding: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 4px;
}


.reason-title {
  font-size: 20px;
  /* text-xl */
  font-weight: 550;
  margin-bottom: 1rem;
  /* mb-4 */
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.2px;
  color: #000000;
}

.ex-reason-title {
  font-size: 20px;
  /* text-xl */
  font-weight: 550;
  margin-bottom: 1rem;
  /* mb-4 */
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.2px;
  color: #050404;
  margin-top: 0px;

}

.reason-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* space-x-2 */
  margin-bottom: 0.75rem;
  /* space-y-3 approx */
  font-size: 14px;
  /* text-sm */
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  color: #0C0A09;
}

.reason-option input[type="radio"] {
  width: 1.4rem;
  /* h-4 */
  height: 2.3rem;
  /* w-4 */
  border-radius: 9999px;
  border: 2px solid #000000;
  /* border-gray-500 */
  accent-color: #000000;
  /* green for checked */
  cursor: pointer;
  margin-left: 0px;
}

.photo-required-badge {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #dfdfdf;
  /* light border */
  font-size: 12px;
  /* text-xs */
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-left: 0.5rem;

}

.ex-reason-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* space-x-2 */
  margin-bottom: 0.75rem;
  /* space-y-3 approx */
  font-size: 14px;
  /* text-sm */
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  color: #0C0A09;
}

.ex-reason-option input[type="radio"] {
  width: 1.4rem;
  /* h-4 */
  height: 2.3rem;
  /* w-4 */
  border-radius: 9999px;
  border: 2px solid #000000;
  /* border-gray-500 */
  accent-color: #000000;
  /* green for checked */
  cursor: pointer;
  margin-left: 0px
}





/* === Photo Required Badge === */
/* .photo-required-badge {
  background-color: #F3F4F6;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  margin-left: 10px;
} */

.image-upload-section {
  margin-top: 20px;
  padding: 12px;
  background-color: #ffffff;
  padding: 60px;
  border: 3px dashed rgba(177, 175, 175, 0.829);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;

}

.upload-icon {
  height: 48px;
  width: 48px;
  color: #9ca3af;
  /* text-gray-400 */
  margin: 0 auto 10px auto;
  /* center + bottom space */
  display: block;
}

.photo-heading {
  font-size: 1.145rem;
  /* roughly text-lg */
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #0f1216;
  /* gray-800 */
  font-family: Georgia, 'Times New Roman', serif;
}

.upload-label {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  color: #8c8f96;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
  font-size: small;

}

/* .photo-upload-input {
   width: 50%;
  text-align: center;
  max-width: 300px;
  box-sizing: border-box;
  margin-left:0 auto; 
  
} */

.photo-upload-input {
  display: none;
  /* Hide default input */
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: rgb(29, 29, 29);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  max-width: 300px;
  font-size: small;
  border: 1px solid rgb(194, 194, 194);
}

.item-condition-section {
  margin-top: 15px;
  padding-top: 8px;
  background-color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
}

.section-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.checkbox-group {
  margin-bottom: 12px;
}

.checkbox-label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: #000;
  color: #0C0A09;
  font-family: 'Cormorant Garamond', serif;
  margin-left: -4px;
  word-spacing: -2.0px;
  font-size: 14px;

}

.checkbox-description {
  font-size: 14px;
  color: #666;
  margin-left: 24px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}


.return-process-box {
  margin-top: 16px;
  max-width: 400px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.return-process-container {
  background-color: #eff6ff;
  /* light blue background */
  padding: 12px;
  border-left: 4px solid #60a5fa;
  /* blue left border */
  color: #1e40af;
  /* dark blue text */
  overflow: visible;
  width: 130%;
}

.return-process-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  gap: 8px;
  color: #1e40af;

}

.icon-shield {
  width: 24px;
  height: 24px;
  stroke: #1e40af;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.return-process-info {
  font-size: 0.875rem;
  color: #1D4ED8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1D4ED8;
}

.info-item svg {
  width: 24px;
  height: 24px;
  stroke: #1e40af;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.info-item span {
  line-height: 1rem;
}


.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  background-color: #f9fafb;
  border-top: 1px solid #f1f1f1;
  flex-wrap: wrap;
}

.btn-cancel,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-cancel {
  border-color: #d1d5db;
  background-color: #fff;
  color: #374151;
}

.btn-cancel:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.btn-submit {
  background-color: #464444;
  color: #fff;
  border: none;
}

.btn-submit:hover {
  background-color: rgba(0, 0, 0, 0.9);
}


.textarea-wrapper {
  margin-top: 1rem;
  /* mt-4 */
  /* display: none; */
  /* hidden initially */
}

.textarea-label {
  font-size: 14px;
  /* text-sm */
  font-weight: 500;
  /* font-medium */
  line-height: 1.25rem;
  /* leading-none */
  color: #0C0A09;
  font-family: 'Cormorant', serif;
  display: block;
  letter-spacing: -0.2px;
}

.custom-textarea {
  display: flex;
  min-height: 80px;
  width: 100%;
  border: 1px solid #d1d5db;
  /* border-input (gray-300ish) */
  background-color: #ffffff;
  /* bg-background */
  border-radius: 0.375rem;
  /* rounded-md */
  padding: 0.5rem 0.75rem;
  /* py-2 px-3 */
  font-size: 0.875rem;
  /* text-sm */
  color: #0C0A09;
  font-family: 'Cormorant', serif;
  margin-top: 1rem;
  /* mt-2 */
  resize: vertical;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.custom-textarea::placeholder {
  color: #707070;
  font-size: 14px;
  letter-spacing: normal;
  /* placeholder:text-muted-foreground (gray-400) */
}

.custom-textarea:focus {
  box-shadow: 0 0 0 2px #1e3a8a;
  /* ring-2 ring-ring */
}


.alternative-products.hidden {
  display: none;
  border: 1px solid black;
  padding: 10px;
}

.section-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 12px;
  gap: 8px;
  font-size: 12px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.product-card.selected {
  border-color: #22c55e;
  background-color: #ecfdf5;
}

.product-card.out-of-stock {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-info {
  display: flex;
  align-items: center;
  position: relative;
  gap: 12px;
  width: 100%;
}

.product-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.product-text {
  flex-grow: 1;
  margin-left: 12px;
}

.product-text h5 {
  margin: 0 0 4px 0;
  font-size: 12px;
  letter-spacing: normal;
}

.product-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.stock-label {
  background-color: #f87171;
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 12px;
  position: absolute;
  top: 8px;
  right: 8px;
}


.icon-check {
  stroke: #22c55e;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.refund-alert {
  padding: 16px 8px;
  /* 16px */
  border-left: 4px solid #34d399;
  /* Tailwind green-400 (#34d399) */
  background-color: #F0FDF4;
  /* Tailwind green-50 (#d1fae5) */
  margin-bottom: 1rem;
  /* spacing below */
  border-radius: 0 4px 4px 0;
  /* thoda rounded on right side */
  margin-top: 10px;
}

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

.refund-alert svg {
  width: 24px;
  height: 24px;
  stroke: #10b981;
  /* Tailwind green-500 */
  margin-right: 0.5rem;
  /* 8px */
  flex-shrink: 0;
}

.refund-alert h4 {
  font-weight: 500;
  font-size: 1.5rem;
  /* 14px */
  margin: 0;
  color: #065f46;
  /* Tailwind green-800 */
}

.refund-alert p {
  font-size: 1.3rem;
  /* 14px */
  color: #4b5563;
  /* Tailwind gray-600 */
  margin-top: 0.25rem;
  /* 4px */
  margin-bottom: 0;
}

.exchange-process {
  margin-top: 20px;
  background-color: #eff6ff;
  /* blue-50 */
  padding: 10px 16px;
  /* 16px */
  border-left: 4px solid #60a5fa;
  /* blue-400 */
  border-radius: 0 6px 6px 0;
  max-width: max-content;
  /* optional */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.exchange-title {
  font-weight: 600;
  color: #1e40af;
  /* blue-800 */
  margin-bottom: 0.5rem;
  /* 8px */
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  /* 18px */
  gap: 0.5rem;
  /* 8px */
  padding-left: -0.3px;
}

.exchange-title .icon-shield {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  flex-shrink: 0;
  margin-left: -3.3px;
}


.exchange-details {
  color: #1e40af;
  /* blue-700 */
  font-size: 0.875rem;
  /* 14px */
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* 12px vertical spacing */
}

.exchange-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: normal;
}

.exchange-item svg {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  /* 8px */
  stroke-width: 2;
  stroke: currentColor;
  flex-shrink: 0;
}

.hidden {
  display: none;
}

.order-table-data {
  padding: 8px 24px;
  /* border: 1px solid black; */
  width: 150%;
  /* border-bottom: 2px solid grey; */
}

.Axentra-view-btn-color {
  font-size: 12px;
  color: rgb(37 99 235);
  font-weight: 600;
  margin-right: 10px;
  font-family: var(--font-family);
  padding: 5px 8px;
  border-radius: 20px;
}

.Axentra-view-btn-color:hover {
  background-color: rgb(239 246 255);
  border-radius: 999px;
}

/* .Axentra-mobile-view-btn-color {
  font-size: 10px;
  color: var(--btn-text-color);
  font-weight: 500;
  margin-right: 10px;
  font-family:  var(--font-family);
  padding: 5px 8px;
  border-radius: 20px;
  background-color: #000;
}
.Axentra-mobile-view-btn-color:hover {
  background-color: rgb(78, 80, 83);
 
} */

.Axentra-reorder-btn-color {
  font-size: 12px;
  color: rgb(13 148 136);
  font-weight: 600;
  margin-right: 12px;
  font-family: var(--font-family);
  padding: 5px 8px;
  border-radius: 20px;
}

.Axentra-reorder-btn-color:hover {
  background-color: rgb(239 246 255);
  border-radius: 999px;
}


.Axentra-return-btn-color {
  color: rgb(234 88 12);
  font-weight: 600;

  font-size: 12px;
  font-family: var(--font-family);
  padding: 5px 8px;
  border-radius: 20px;
}

.Axentra-return-btn-color:hover {
  background-color: rgb(239 246 255);
  border-radius: 999px;
}

.Axentra-mobile-return-btn-color {
  color: var(--btn-text-color);
  font-weight: 500;

  font-size: 10px;
  font-family: var(--font-family);
  padding: 5px 8px;
  background-color: #000;
  border-radius: 20px;
}

.Axentra-mobile-return-btn-color:hover {
  background-color: rgb(78, 80, 83);

}

.Axentra-exchange-btn-color {
  /* color: var(--btn-text-color); */
  color: rgb(79 70 229);
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-family);
  padding: 5px 8px;
  /* background-color: #000; */
  border-radius: 20px;

}

.Axentra-exchange-btn-color:hover {
  background-color: rgb(239 246 255);
  border-radius: 999px;
}

.Axentra-mobile-exchange-btn-color {
  color: var(--btn-text-color);
  font-weight: 500;
  font-size: 10px;
  font-family: var(--font-family);
  padding: 5px 8px;
  background-color: #000;
  border-radius: 20px;

}

.Axentra-mobile-exchange-btn-color:hover {
  background-color: rgb(78, 80, 83);

}

.Axentra-replace-btn-color {
  font-weight: 600;
  font-size: 12px;
  color: rgb(147 51 234);
  font-family: var(--font-family);
  padding: 5px 8px;
  border-radius: 20px;

}

.Axentra-replace-btn-color:hover {
  background-color: rgb(239 246 255);
  border-radius: 999px;
}

.Axentra-track-btn-color {
  font-weight: 600;
  font-size: 12px;
  color: rgb(147 51 234);
  font-family: var(--font-family);
  padding: 5px 8px;
  border-radius: 20px;

}

.Axentra-track-btn-color:hover {
  background-color: rgb(239 246 255);
  border-radius: 999px;
}

.Axentra-mobile-track-btn-color {
  font-weight: 500;
  font-size: 10px;
  color: var(--btn-text-color);
  font-family: var(--font-family);
  padding: 5px 8px;
  background-color: #000;
  border-radius: 20px;

}

.Axentra-mobile-track-btn-color:hover {
  background-color: rgb(78, 80, 83);

}

.Axentra-returnSatus-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4b5563;
  /* Subtle dark gray for action links */
  font-size: 14px;
  font-weight: 500;
}

/* Base styles for the status box */
.Axentra-returnSatus-box {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid;
  font-family: var(--axentra-secondaryFontFamily);
  margin-top: 15px;
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

/* APPROVED (Blue Theme) */
/* .Axentra-returnSatus-box-approved { background-color: #eff6ff; border-color: #bfdbfe; } */
/* .Axentra-returnSatus-box-approved .Axentra-returnSatus-icon { color: #2563eb; } */
.Axentra-returnSatus-box-approved .Axentra-returnSatus-title {
  color: #1e40af;
}

.Axentra-returnSatus-box-approved .Axentra-returnSatus-description {
  color: #1e40af;
}

.Axentra-returnSatus-box-approved .Axentra-returnSatus-pill {
  display: none;
}


.Axentra-returnSatus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.Axentra-returnSatus-title-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.Axentra-returnSatus-icon {
  display: flex;
  align-items: center;
  color: #2563eb;
}

.Axentra-returnSatus-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #1e40af;
}

.Axentra-returnSatus-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

.Axentra-returnSatus-description {
  font-size: 13px;
  margin: 0 0 4px 0;
  color: #1e40af;
}

.Axentra-returnSatus-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
}

.Axentra-returnSatus-detail-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.Axentra-returnSatus-detail-label {
  color: #6b7280;
  font-weight: 600;
}

.Axentra-returnSatus-detail-value {
  color: #374151;
  font-weight: 400;
}

.Axentra-returnSatus-track-link,
.Axentra-returnSatus-support-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
}

.Axentra-returnSatus-track-link:hover,
.Axentra-returnSatus-support-link:hover {
  text-decoration: underline;
}

.Axentra-Cancel-status-box {
  display: flex;
  align-items: flex-start;
  /* Align icon to the top of the text block */
  padding: 12px;
  margin-top: 12px;
  border-radius: 8px;
  font-family: var(--font-family);
  width: 100%;
  box-sizing: border-box;
  /* Ensures padding is included in the width */
}

/* Style for when cancellation IS available */
.Axentra-Cancel-status-box--available {
  background-color: #FEF9EF;
  border: 1px solid #F6D38B;
  color: #c2653c;
  font-family: var(--font-family);
}

/* Style for when cancellation is NOT available */
.Axentra-Cancel-status-box--unavailable {
  background-color: #FEF9EF;
  border: 1px solid #F6D38B;
  color: #c2653c;
  margin-bottom: 7px;
  font-family: var(--font-family);
}

/* The warning icon on the left */
.Axentra-Cancel-icon {
  margin-right: 0.5rem;
  flex-shrink: 0;
  /* Prevents the icon from shrinking */
  /* The SVG inside will inherit the color from the parent box */
}

.Axentra-Cancel-icon1 {
  margin-right: 0px;
  margin-left: 5px;
  height: 12px !important;
  width: 12px !important;
  fill: none;
  align-items: center;
  flex-shrink: 0;
  /* Prevents the icon from shrinking */
  /* The SVG inside will inherit the color from the parent box */
}

/* A wrapper for the text to allow for vertical stacking */
.Axentra-Cancel-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  margin-top: -5px;
}

.Axentra-Cancel-text-wrapper1 {
  display: flex;
  flex-direction: row;
  line-height: 1.4;
  margin-top: -5px;
}

/* The main, top line of text */
/* The main, top line of text */
.Axentra-Cancel-title {
  font-weight: 600;
  margin-right: 0px !important;
}

.Axentra-Cancel-title1 {
  font-weight: 600;
  margin-right: px !important;
  color: rgb(75 85 99) !important;
  font-family: var(--font-family);
}

/* Main text container */
.Axentra-Cancel-main-text {
  font-size: 13px;
  font-weight: 500;
  /* Keep default for others */
  color: #9c4938;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* padding: 4px 6px; */
  margin-bottom: 2px;
  font-family: var(--font-family);
}

.Axentra-Cancel-timer {
  margin-left: 6px;
  font-size: 11.5px !important;
}

/* The smaller, bottom line of text */
.Axentra-Cancel-sub-text {
  font-size: 12px;
  font-weight: 400 !important;
  margin-top: -3px;
}

.Axentra-Cancel-sub-text1 {
  font-size: 13px;
  font-weight: 400 !important;
  margin-top: 0px;
  color: rgb(75 85 99) !important;
  margin-left: 5px;
  font-family: var(--font-family);
}


@media (max-width: 768px) {
  .Axentra-Cancel-status-box {
    gap: 4px;
    align-items: flex-start;
    padding: 10px;
    margin-top: 8px;
  }

  .Axentra-Cancel-icon {
    margin-bottom: 6px;
    /* Give space below the icon */
    margin-right: 0;
  }

  .Axentra-Cancel-title1 {
    font-weight: 600;
    margin-right: 0px !important;
    color: #353538 !important;
    font-size: 10.5px !important;
  }

  .Axentra-Cancel-text-wrapper1 {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    margin-top: 0px;
  }

  .Axentra-Cancel-icon1 {
    margin-left: 10px;
    height: 10px !important;
    width: 10px !important;
  }

  .Axentra-Cancel-text-wrapper {
    margin-top: 0;
    width: 100%;
  }

  .Axentra-Cancel-main-text {
    font-size: 12px;
    /* Slightly smaller */
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
  }

  .Axentra-Cancel-title {
    font-size: 10.5px;
    margin-bottom: 2px;
  }

  .Axentra-Cancel-timer {
    font-size: 10px !important;
    margin-left: 4px;
  }

  .Axentra-Cancel-sub-text {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.3;
  }

  .Axentra-Cancel-sub-text1 {
    font-size: 10px;
    font-weight: 400 !important;
    margin-top: 0px;
    color: #474849 !important;
    margin-left: 5px;
  }
}

@media (max-width: 768px) {
  .order-details-modal {
    /* max-width: 300px !important; */
    width: 100% !important;
    margin: 1rem auto !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    display: block !important;
    width: 90% !important;
    height: 79% !important;
  }
}


.mobile-order-actions {
  margin-top: 10px;
  display: flex;
  white-space: nowrap;
}

.mobile-order-actions::-webkit-scrollbar {
  display: none;
}