body {
  background: white;
  font-family: "Segoe UI", sans-serif;
}

button:focus {
  outline: none;
}

header {
  padding: 20px 0;
}

.primary_color {
  color: black;
}

.primary_bgcolor {
  background-color: black;
}

.secondary_color {
  color: rgb(255, 255, 255);
}

.secondary_bgcolor {
  background-color: rgb(153 153 153);
}

#filterToggle {
  background-color: unset;
  border: none;
  padding: 10px 14px;
  /* color: #9d7b3c; */
  color: black;
  font-size: 18px;
  cursor: pointer;
  display: none;
  /* hidden on desktop */
}

#filterToggle:focus {
  outline: none;
}

/* #sidebar {
  transition: transform 0.3s;
  max-width: 420px;
} */

#sidebar.active {
  transform: translateX(0);
}
#sidebar:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(196, 154, 59, 0.4); */
  box-shadow: 0 8px 20px #5f5f5f66 !important;
}

.tags {
  display: inline-block;
  /* background: #c49a3b;
  color: #fff; */
  background: lightgray;
  /* color: black; */
  padding: 5px 12px;
  border-radius: 5px;
  margin: 3px;
  font-size: 13px;
  cursor: pointer;
}

.tags:hover {
  opacity: 0.8;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s;
  margin-bottom: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.collage-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.big {
  flex: 2;
  min-height: 250px;
}

.small-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.small {
  flex: 1;
}

.lace-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.lace-row .featured {
  flex: 1;
  min-height: 520px;
  width: 50%;
}

.lace-row .right-quad {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: fit-content;
}

/* card look */
.p-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  /* smooth hover animation */
  position: relative;
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  transform: translateY(-5px);
  /* slight lift effect */
  /* box-shadow: 0 8px 20px rgba(196, 154, 59, 0.4); */
  box-shadow: 0 8px 20px #5f5f5f66;
  /* golden glow shadow */
}

.p-img {
  width: 100%;
  height: 240px;
  /* height: 300px; */
  overflow: hidden;
}

/* .p-img-featured {
  height: 520px;
} */

/* tall left image */
.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body & text */
.p-body {
  padding: 12px 14px;
  background: #faf8f5;
}

.p-swatches {
  margin-bottom: 6px;
}

.swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #bbb;
  margin-right: 6px;
}

.p-title {
  font-size: 14px;
  line-height: 1.4;
  margin: 2px 0 2px;
  color: #1f1f1f;
}

.p-brand {
  font-size: 12px;
  color: #8a8a8a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.p-prices {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.price-new {
  /* color: #c0392b; */
  font-weight: 700;
}

.price-old {
  color: #9b9b9b;
  text-decoration: line-through;
  font-size: 13px;
}

.p-img-featured {
  height: 615px !important;
}

.stars {
  /* color: #f5c518; */
  color: #04a505;
  /* gold stars */
  font-size: 14px;
  margin: 4px 0;
}

.star-input {
  font-size: 26px;
  cursor: pointer;
  color: #777;
  margin-bottom: 6px;
}

.star-input span.active {
  color: #ffc107;
}

/* #filterToggle {
   background-color: #9d7b3c;
 } */
/* @media (min-width: 767px) {
  .menu-right .search-bar {
    display: flex !important;
  }

  .sidebar_search {
    display: none !important;
  }
} */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  justify-content: flex-end;
}
.pagination .page-btn.active {
  background: #000000;
  color: #fff;
  padding: 3px 6px;
}
.pagination .page-btn {
  background: #ffffff;
  color: #000000;
  padding: 3px 6px;
}
/* .search-bar input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 20px 0 0 20px;
  outline: none;
  font-size: 14px;
  width: 180px;
} */

/* responsive */
@media (max-width: 992px) {
  .lace-row .featured {
    min-height: 420px;
    width: 100%;
  }

  .p-img-featured {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .lace-row {
    flex-direction: column;
  }

  .lace-row .right-quad {
    grid-template-columns: 1fr 1fr;
  }

  .p-img {
    height: 220px;
  }

  .p-img-featured {
    height: 360px;
  }

  /* .menu-right .search-bar {
    display: none !important;
  } */

  .sidebar_search {
    margin-left: unset !important;
    margin-bottom: 25px;
  }

  /* .search-bar input {
    width: 100% !important;
  } */

  .user-menu-wrapper {
    right: 0 !important;
    padding: 0 20px !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  #filterToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
  }

  #sidebar {
    position: fixed;
    top: 100px;
    left: 0;
    height: 100%;
    z-index: 1000;
    background: #fff;
    max-width: 300px;
    transform: translateX(-100%);
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .collage-row {
    flex-direction: column;
  }

  .small-container {
    flex-direction: row;
  }

  .small {
    flex: 1;
  }
}

/* sidebar */

/* Sidebar container */
.filter-sidebar {
  background: #fff;
  /* border-radius: 12px; */
  padding: 20px;
  /* border: 1px solid #eee; */
  transition: all 0.3s ease;
  margin-top: 70px;
}

.filter-sidebar:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Sidebar title */
.sidebar-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Section headers */
.filter-heading {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  border-left: 3px solid black;
  padding-left: 6px;
}

/* Filter groups */
.filter-section {
  margin-bottom: 20px;
}

/* Checkbox styles */
.filter-options label {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  cursor: pointer;
}

.filter-options input[type="checkbox"] {
  appearance: none;
  /* Remove default checkbox styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  /* Transparent border */
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  /* modern browsers */
}
/* .filter-options input[type="checkbox"] {
  margin-right: 6px;
  accent-color: #c49a3b;
 
} */
.filter-options input[type="checkbox"]:checked {
  background-color: transparent;
  /* Change to your accent color */
  border-color: transparent;
}

/* Optional: add checkmark using pseudo-element */
.filter-options input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  color: black;
  font-size: 12px;
  top: 0;
  left: 2px;
}
/* Price label */
.price-label {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #666;
}

/* Range slider styling */
.custom-range {
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: #eee;
  border-radius: 5px;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  background: black;
  border-radius: 50%;
  cursor: pointer;
}

.custom-range::-moz-range-thumb {
  height: 16px;
  width: 16px;
  /* background: #c49a3b; */
  background: black;
  border-radius: 50%;
  cursor: pointer;
}

/* price range */
#priceRange {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  /* background: linear-gradient(
    to right,
    #c49a3b 0%,
    #c49a3b 50%,
    #ddd 50%,
    #ddd 100%
  ); */
  background: linear-gradient(
    to right,
    black 0%,
    black 50%,
    #ddd 50%,
    #ddd 100%
  );
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Remove default Firefox track */
#priceRange::-moz-range-track {
  background: none;
  border: none;
}

/* Style the thumb (circle) */
#priceRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  /* background: #c49a3b; */
  background: black;
  cursor: pointer;
  border: 2px solid #fff;
  margin-top: -1px;
  /* center it */
}

.p-card-link {
  text-decoration: none;
  /* removes underline */
  color: inherit;
  /* keeps text same color as parent */
  display: block;
  /* makes the whole card clickable */
  height: 100%;
}

.p-card-link:hover {
  text-decoration: none;
}

/* ----------------------------------------------product.html------------------------------------------- */
.product_container {
  /* max-width: 1300px; */
  /* min-width: 800px; */
  /* margin: 70px auto; */
  /* margin: auto !important; */
  /* background: #fafafa !important; */
  background: white;
  /* padding: 50px; */
  display: flex;
  gap: 30px;
  /* flex-wrap: wrap; */

  flex-direction: row;
}

.product_img {
  flex: 1 1 300px;
  text-align: center;
}

.product_img_main img {
  max-width: 100%;
  border-radius: 10px;
  height:500px;
}

.product_thumbs {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.product_thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.product_thumb img.active,
.product_thumb img:hover {
  /* border-color: #c49a3b;   */
  border-color: black;
}

.product_details {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
}

.product_name {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.product_category {
  font-size: 16px;
  color: #777;
}

.product_price {
  font-size: 24px;
  font-weight: bold;
  /* color: #c49a3b; */
}

.product_oldPrice {
  font-size: 18px;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 10px;
}
.product_offer {
  font-size: 18px;
  color: #aaa;
  margin-left: 10px;
}

.product_description {
  color: #9e9e9e;
  line-height: 1.5;
}

.product_rating {
  /* color: #f5a623; */

  color: #04a505;
  font-size: 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.product_sizes {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.product_size_btn {
  padding: 8px 15px;
  border: 1px solid #fafafa;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
  text-transform: uppercase;
  min-width: 44px;
  border-radius: 6px;
  /* border: 1px solid #ddd; */
  margin-right: 0;
  /* padding: 8px 12px; */
  cursor: pointer;
  /* background: #fffff; */
}

.product_size_btn.active {
  /* border-color: #c49a3b; */
  border-color: black;
  /* background: #fef7e6; */
}

.product_buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.product_buttons button {
  flex: 1;
  /* buttons take equal width if needed */
  min-width: 120px;
  /* optional: ensures they don't shrink too small */
}
.product_button,
.buy_now_button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 50%;
}

.buy_now_button {
  /* border: 1px solid #a37a2e;
  color: #a37a2e;
  background-color: transparent; */
  border: 1px solid black;
  /* color: black; */
  background-color: transparent;
  width: 50%;
}

.product_button {
  /* background-color: #a37a2e; */
  color: #fff;
  border: 1px solid white;
}

.buy_now_button:hover {
  /* background-color: #a37a2e; */
  background-color: black;
  color: white;
  border: none;
}

.product_button:hover {
  border: 1px solid black;
  color: black;
  background-color: transparent !important;
}

button:disabled,
.product_button:disabled,
.buy_now_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Optional: stronger disabled look */
.product_button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
}

.buy_now_button:disabled {
  border-color: #ccc !important;
  color: #999 !important;
}
.product_img_main {
  position: relative;
  height: 500px;
}

.wishlist_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s;
}

.wishlist_icon:hover {
  transform: scale(1.2);
}
.soldOut {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s;
  background: #ff0000;
  color: #ffffff;
  padding: 2px 30px 2px 10px;
  border-radius: 0px 100px 100px 0px;
}
/* 
.product_quantity {
  margin: 10px 0;
} */

.product_quantity button {
  width: 30px;
  /* background: #efefef; */
  height: 30px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  /* background: transparent; */
      background: #818181;
}
/* .product_quantity button:hover {
  background: #cbcbcb;
} */
.product_quantity span {
  margin: 0 10px;
  font-size: 16px;
}
@media (max-width: 1350px) {
  /* .product_container {
    max-width: 1000px;
    min-width: 900px;
  } */
}
@media (max-width: 1000px) {
  /* .product_container {
    max-width: 700px;
    min-width: 600px;
  } */
}
@media (max-width: 768px) {
  .product_container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-width: fit-content;

    /* max-width: 500px;
    min-width: 450px; */
  }
  .product_img {
    flex: none;
    text-align: center;
  }

  .product_details {
    flex: 1 1 100%;
  }

  .reviews-wrapper {
    flex-direction: column;
  }

  #product-tabs {
    margin: 70px 0 !important;
  }
}
@media (max-width: 560px) {
  .product_container {
    /* max-width: 300px;
    min-width: 250px; */
  }
}
/* //////--------------------------------------------- */

.delivery_options li {
  font-size: 14px;
}

.delivery_options ul li i {
  width: 18px;
}

.payment_box {
  background: linear-gradient(90deg, #ffe9d6, #f8f0ff);
  padding: 18px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
}

.payment_icon {
  width: 25px;
  height: 25px;
}

.payment_discount h5 {
  color: #333;
  font-size: 12px;
  margin-bottom: 12px;
}

/* Popup Overlay */
.payment-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Popup Box */
.payment-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ffe9d6, #f8f0ff);
  width: 90%;
  max-width: 350px;
  padding: 20px;
  border-radius: 12px;
  z-index: 1000;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-popup-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.close-popup {
  font-size: 20px;
  cursor: pointer;
  color: #444;
}

.payment-popup-body p {
  font-size: 14px;
  margin-bottom: 8px;
}

.learn_more {
  font-size: 12px;
  text-decoration: underline;
  color: #444;
  cursor: pointer;
}

.learn_more:hover {
  color: #000;
}

/* //////--------------------------------------------- */

#product-tabs {
  margin: 70px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin: 0 0;
  justify-content: center;
  align-items: center;
}

.tab-btn {
  padding: 10px 15px;
  /* border: 1px solid #9d7b3c;
  background: #9d7b3c; */
  border: 1px solid black;
  background: black;
  cursor: pointer;
  color: white;
}

.tab-btn.active {
  background: #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  font-weight: bold;
  /* color: #9d7b3c; */
  color: black;
}

.tab-contents {
  /* display: none; */
  padding: 25px;
  background: #f5f5f5;
  height: 500px;
  overflow-y: auto;
  /* Enable vertical scroll */
  overflow-x: hidden;
  /* Prevent horizontal scroll */

  /* Hide scrollbar for Webkit (Chrome, Safari, Edge) */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  margin-bottom: 20px;
  max-width: 900px;
  margin: 70px auto;
  margin-top: 0;
}

.tab-contents::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.tab-contents.active {
  display: block;
}

.reviews-wrapper {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.rating-summary {
  /* flex-grow: 1; */
  flex: 1;
}

.rating-summary h2 {
  font-size: 2.5rem;
  margin: 0;
  /* color: #9d7b3c; */
}

.rating-bars {
  margin-top: 1rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 4px 0;
}

.rating-row:nth-child(1) span:first-child {
  color: #28a745;
}

.rating-row:nth-child(2) span:first-child {
  color: #80c340;
}

.rating-row:nth-child(3) span:first-child {
  color: #f4b728;
}

.rating-row:nth-child(4) span:first-child {
  color: #ff6f3c;
}

.rating-row:nth-child(5) span:first-child {
  color: #f44336;
}
.rating-row .bar {
  flex: 1;
  background: #eee;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.rating-row:nth-child(1) .fill {
  background: #28a745;
}

.rating-row:nth-child(2) .fill {
  background: #80c340;
}

.rating-row:nth-child(3) .fill {
  background: #f4b728;
}

.rating-row:nth-child(4) .fill {
  background: #ff6f3c;
}

.rating-row:nth-child(5) .fill {
  background: #f44336;
}

/* 

.bar {
  background: #222;
  margin-left: -0px !important;
  margin-right: -0px !important;
  height: 35px;
  margin-top: 5px;
} */
.rating-row .fill {
  /* background: #9d7b3c; */
  /* gold */
  height: 100%;
}

.review-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card {
  border-bottom: 1px solid #ccc;
  padding: 1rem;
  /* background: #f5f5f5; */
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-header .stars {
  font-size: 0.9rem;
  color: #fcb900;
}

.review-date {
  margin-left: auto;
  font-size: 0.8rem;
  color: #888;
}

.review-comment {
  margin-top: 0.5rem;
}

.product_colors {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.product_color_btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #efefef;
  cursor: pointer;
  transition: 0.3s;
}

.product_color_btn.active {
  /* border-color: #c49a3b; */
  border-color: black;
  transform: scale(1.2);
}

.add-review {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

.add-review textarea {
  width: 95%;
  margin-top: 8px;
  padding: 8px;
  border: none;
  /* border-bottom: 1px solid #a47a2e; */
  border-bottom: 1px solid #ccc;
  resize: none;
}

.add-review textarea:focus {
  outline: none;
}

.add-review button {
  margin-top: 8px;
  /* background: #9d7b3c; */
  background: black;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.add-review button:hover {
  /* background: #7d622e; */
  border: 1px solid black;
  color: black;
  background-color: transparent !important;
}

/* --------------------------------cart.html ---------------------------------------*/

.toast-message {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  /* background-color: #c49a3b; */
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  z-index: 9999;
}

.toast-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* .container {
  margin-top: 70px;
} */

.indexContainer {
  margin-top: 0px !important;
}

/* Cart Table */
.cart_header {
  display: flex;
  justify-content: space-between;
  /* background: #9d7b3c; */
  background: black;
  color: #fff;
  padding: 12px;
  border-radius: 8px 8px 0 0;
}
#cartItems{
      border: 1px solid #efefef;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-bottom: 10px;
}
.cart_item {
  flex: 1 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.cart_product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart_product img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.cart_product_details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.cart_product_details p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.cartqty_controls {
  display: flex;
  align-items: center;
  gap: 8px;
  /* border: 1px solid #ccc; */
  border-radius: 20px;
  padding: 5px 10px;
  width: max-content;
}

.cartqty_controls button {
  background: #efefef;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #234423;
}
.cartqty_controls button:hover {
  background: #cbcbcb;
}
.cartqty_controls button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.remove_btn {
  /* color: #9e7b3c; */
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
}

/* Summary */
.cart_right {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  height: max-content;
}

.summary_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}

.summary_total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  /* color: #9d7b3c; */
}

.checkout_btn {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  /* background: #9d7b3c; */
  background: black;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.checkout_btn:hover {
  background: white;
  /* color: #9d7b3c;
  border: 1px solid #9d7b3c; */
  color: black;
  border: 1px solid black;
}

.checkout_btn:focus {
  outline: none;
}

/*------------------------------------------------- checkout.html---------------------------------------- */

.checkout_billing,
.checkout_order {
  background: #fff !important;
  padding: 25px;
  margin-bottom: 20px;
}

.checkout_item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  justify-content: space-between;
}

.checkout_item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.checkout_item_details h3 {
  margin: 0;
  font-size: 15px;
}
.checkout_item_details .btn {
  background: #efefef;
}
.checkout_item_details .btn:hover {
  background: #cbcbcb;
}
.checkout_item_details p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 9px;
  justify-content: space-evenly;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0 5px;
  font-size: 13px;
}

.qty-control button {
  padding: 4px 8px;
  border: none;
  cursor: pointer;
  background: transparent;
}

.qty-control button:focus {
  outline: none;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  /* color: #9d7b3c; */
  text-align: end;
}

.remove-btn:focus {
  outline: none;
}

.coupon {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.coupon input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.coupon button {
  padding: 8px 14px;
  background: #065f46;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.checkout_total p {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

/* .checkout_total strong {
  color: #a37a2e;
} */

.place-order-btn {
  /* background: #a37a2e;  */
  background: black;
  color: white;
  padding: 16px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
  border: 1px solid white;
}

.place-order-btn:hover,
.place-order-btn:active,
.place-order-btn:focus {
  background: white !important;
  /* border: 1px solid #a37a2e !important;
  color: #a37a2e !important; */
  border: 1px solid black;
  color: black;
  box-shadow: 0 0 0 0.2rem #ffffff !important;
}

.place-order-btn:focus {
  outline: none;
  box-shadow: 0 0 6px #ebc681;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

input.rounded-sm {
  border-radius: 20px !important;
}

/* Input boxes rounded and focus style */
.form-control {
  border-radius: 12px;
  /* bigger rounding */
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #cba96a;
  /* green border */
  box-shadow: 0 0 6px #ebc681;
  /* soft green glow */
}

/* Make radio buttons round */
.form-check-input[type="radio"] {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  border: 2px solid #cba96a;
  cursor: pointer;
  appearance: none;
  /* Remove default browser style */
  -webkit-appearance: none;
  /* Safari */
  -moz-appearance: none;
  /* Firefox */
  outline: none;
  transition: 0.3s;
}

/* Radio when checked */
.form-check-input[type="radio"]:checked {
  background-color: #cba96a;
  /* golden fill */
  border-color: #ffffff;
  box-shadow: 0 0 5px #ebc681;
  width: 0.8em;
  height: 0.8em;
}

.gap {
  gap: 25px !important;
}

/* --------------------------------------------auth.html--------------------------- */
.oops-headline {
  font-size: 1.5rem;
  font-weight: bold;
  /* color: #9d7b3c; */
}

.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.auth-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.auth-card h2 {
  text-align: center;
  margin-bottom: 25px;
  /* color: #9d7b3c; */
  font-weight: 600;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #cba96a;
  box-shadow: 0 0 6px #ebc681;
}

.btn-main {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: black;
  color: #fff;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-main:hover {
  background: #fff;
  /* border: 1px solid #9d7b3c;
  color: #9d7b3c; */
  border: 1px solid black;
  color: black;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.auth-footer a {
  /* color: #9d7b3c; */
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

/* --------------------------------wishlist.html----------------------- */
/* .wishlist_icon {
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.wishlist_icon:hover {
  transform: scale(1.2);
} */
.wishlist_toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s;
}

.wishlist-active {
  color: red !important;
}

/* .product-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
} */

.product-actions .wishlist_toggle,
.product-actions .cart_toggle {
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.product-actions .wishlist_toggle:hover,
.product-actions .cart_toggle:hover {
  transform: scale(1.2);
}

.cart_toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s;
}
.cart_toggle.disabled {
  opacity: 0;
  pointer-events: none;
  cursor: not-allowed;
}
/* --------------------------------wishlist===================================== */
.review-card.add-review {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

.review-card.add-review textarea {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
}

.review-card.add-review button {
  margin-top: 8px;
  /* background: #9d7b3c;   */
  background: black;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.review-card.add-review button:hover {
  background: #7d622e;
}

/* ====================================profile=================== */

.user-menu-wrapper a {
  font-size: 20px;
  text-decoration: none;
  /* color: #9d7b3c; */
  color: #000;
}

.user-dropdown a {
  font-size: 14px;
}

.wishlist_container {
  max-width: 1000px;
  margin: auto;
  margin-top: 30px;
}

#wishlistItems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 items per row */
  gap: 20px;
  margin-top: 20px;
}

.wishlist_item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.wishlist_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(196, 154, 59, 0.4);
}

.wishlist_item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wishlist_item h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #222;
}

.wishlist_item p {
  margin: 0;
  font-weight: bold;
  color: #222;
}

.wishlist_item .btns {
  display: flex;
  gap: 10px;
  margin: 10px 0 15px;
}

.wishlist_item button {
  flex: 1;
  padding: 5px 0;
  border: transparent;
  border-radius: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
  font-size: 14px;
}

.wishlist_item button.remove {
  /* background: #a37a2e; */
  background: black;
  color: #fff;
  border: 1px solid transparent;
}

.wishlist_item button.remove:hover {
  background: black;
  color: white;
  /* border: 1px solid black; */
}

.wishlist_item button.cart {
  background: #ffffff;
  /* color: #a37a2e;
  border: 1px solid #a37a2e; */
}

.wishlist_item button.cart:hover {
  /* background: #a37c2c;*/
  background: black;
  color: #ffffff;
}

/* Default: text visible */
.btn-text {
  display: inline;
}

.wishlist_item .btns button {
  position: relative;
  z-index: 2;
  /* make sure it's above the card background */
}

.wishlist_item {
  pointer-events: auto;
  /* default, just to be sure */
}

.wishlist_item img {
  pointer-events: none;
  /* so image doesn’t block clicks */
}

.wishlist_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(196, 154, 59, 0.4);
  z-index: 1;
}

/* Mobile: hide text, adjust button sizing */
@media (max-width: 900px) {
  .btn-text {
    display: none;
  }

  .wishlist_item .btns {
    justify-content: space-between;
  }

  .wishlist_item .btns button.cart,
  .wishlist_item .btns button.remove {
    background: transparent !important;
    /* color: #a37a2e !important;     */
    color: black !important;
    border: none !important;
    font-size: 18px;
    transition: transform 0.2s ease !important;
  }

  /* Hover scale effect */
  .wishlist_item .btns button.cart:hover,
  .wishlist_item .btns button.remove:hover {
    transform: scale(1.2);
  }

  .wishlist_item button {
    flex: 0;
    /* don’t stretch full width */
    width: 45px;
    /* make square buttons */
    height: 45px;
    padding: 0;
    /* remove extra padding */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wishlist_item button i {
    font-size: 18px;
    /* ensure icons are clear */
  }
}

.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 18px;
  color: #888;
  padding: 50px 0;
}

/* Responsive */
@media (max-width: 900px) {
  #wishlistItems {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on tablet */
  }

  .wishlist_container {
    padding: 0 20px;
  }

  #wishlistItems {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }
}

.wishlist-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wishlist-header h2 {
  margin-left: 20px;
  /* color: #000000; */
  margin-top: 20px;
  font-weight: bold;
  font-size: 28px;
}

/* ==================== Wishlist Toggle ==================== */
.view-toggle {
  display: none;
  /* hide by default */
}

@media (max-width: 900px) {
  .view-toggle {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    z-index: 1;
  }

  .view-toggle button {
    /* border: 1px solid #9d7b3c;
 
    color: #9d7b3c; */

    border: 1px solid black;
    background: #fff;
    color: black;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
  }

  .view-toggle button.active {
    /* background: #9d7b3c; */
    background: black;
    color: #fff;
  }

  /* Mobile grid view (2 per row) */
  #wishlistItems.grid-view,
  #wishlistContainer.grid-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Mobile list view (1 per row, horizontal) */
  #wishlistItems.list-view,
  #wishlistContainer.list-view {
    display: block;
  }

  #wishlistItems.list-view .wishlist_item,
  #wishlistContainer.list-view .wishlist_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
  }

  #wishlistItems.list-view .wishlist_item img,
  #wishlistContainer.list-view .wishlist_item img {
    width: 120px;
    height: auto;
    margin-right: 15px;
    object-fit: cover;
  }

  .list-view .wishlist_item .p-body {
    width: 80%;
    /* take remaining space */
  }

  .list-view .wishlist_item .btns {
    justify-content: flex-end;
  }
}

.confirm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  /* background: #a47a2e;
  border: 1px solid #a37a2e; */
  background: black;
  border: 1px solid black;
  border-radius: 8px;
  padding: 20px;
  z-index: 9999;
  text-align: center;
  /* box-shadow: 0 8px 20px rgba(196, 154, 59, 0.4); */
  transition: transform 0.2s ease-in-out;
  min-width: 250px;
}

.confirm-modal.show {
  transform: translate(-50%, -50%) scale(1);
}

.confirm-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
}

.confirm-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  /* background: #a37a2e; */
  background: black;
  color: #fff;
  transition: background 0.2s ease;
}

.confirm-buttons button:hover {
  background: #ffffff;
  color: black;
}

.wishlist-link,
.cart-link {
  position: relative;
  display: inline-block;
}

/* .wishlist-count,
.cart-count {
 
  position: relative;
  top: -10px;
  right: 11px;
  background: transparent;
 
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  pointer-events: none;
} */

/* ==============search bar stye-------------------- */
.menu-right {
  display: flex;
  align-items: center;
  gap: 15px;
  /* space between items */
}

.search-bar {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.search-wrapper {
  position: relative;
  flex: 1;
  display: inline-block;
}

/* 
.search-bar button {
  padding: 2px 12px;
  border: none;
  background-color: #000000;
  color: white;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
} */

.search-bar button i {
  font-size: 14px;
}

.fake-placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  /* keep "Search" and animated part in one line */
  transition: opacity 0.2s ease;
}

.fake-placeholder .static {
  flex-shrink: 0;
}

.fake-placeholder.hidden {
  display: none !important;
}

.fake-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}

.fake-placeholder .animated {
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4em;
  margin-left: 5px;
}

.fake-placeholder .animated span {
  display: block;
  animation: nudgeSlide calc(var(--count) * 2s) infinite;
}

@keyframes slidePlaceholder {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  75% {
    transform: translateY(-36px);
  }

  100% {
    transform: translateY(0);
  }
}

/* .suggestions {
  position: absolute;
  background: #fff;
 
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  width: 167px;
  top: 38px;
  left: 28px;
  z-index: 1000;
  display: none;
  font-size: 14px;
}

.suggestions div {
  padding: 6px 10px;
  cursor: pointer;
}

.suggestions div:hover {
  background: #f0f0f0;
}

@media (max-width: 900px) {
  .suggestions {
    left: unset;
  }
} */

/* =========================nudges-============ */
.nudges-container {
  overflow: hidden;
  height: 18px;
  /* one line height */
  position: relative;
  margin-top: 6px;
}

.nudges-wrapper {
  display: flex;
  flex-direction: column;
  animation: nudgeSlide calc(var(--count) * 2s) infinite;
}

.nudge {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 18px;
  font-size: 12px;
  color: #555;
}

.nudge-item img,
.nudge img {
  width: 14px;
  height: 14px;
}

@keyframes nudgeSlide {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  75% {
    transform: translateY(-36px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ================================================Frequently Bought Together=============== */
/* ===== FBT Carousel Styles ===== */
.fbt-wrapper {
  position: relative;
  margin-top: 20px;
}

.fbt-carousel {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.fbt-carousel::-webkit-scrollbar {
  display: none;
}

.fbt-item {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 2px 2px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  background: aliceblue;
}

.fbt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fbt-arrow:focus {
  outline: unset;
}

.fbt-arrow:hover {
  background: #000000;
  color: white;
}

.fbt-arrow.left {
  left: -15px;
}

.fbt-arrow.right {
  right: -15px;
}

.fbt-arrow i {
  pointer-events: none;
}

.fbt-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 2.5px;
  color: #333;
}

.fbt-check {
  margin-bottom: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

#buyAllBtn {
  background-color: aliceblue;
  width: 100%;
}

#buyAllBtn:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

.seller-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  padding: 30px;
  width: 100%;
  font-family: Arial, sans-serif;
}

.seller-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #f3f3f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.seller-name {
  font-size: 16px;
}

.seller-rating {
  font-size: 14px;
  color: #777;
}

/* .rating-star {
    color: #00c200;
    font-weight: bold;
} */

.positive {
  color: #777;
}

.seller-benefits p {
  margin: 8px 0;
  font-size: 15px;
  color: #333;
}

.seller-benefits i {
  margin-right: 8px;
  color: #818181;
  /* blue color for icons */
}
/* .breadcrumb-wrapper */
.breadcrumb-wrapper {
  width: 100%;
  padding: 10px 20px;
  background: #fff;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.breadcrumb-nav a {
  color: #7c7c7c;
  /* grey text like screenshot */
  text-decoration: none;
}

/* .breadcrumb-nav a:hover {
  text-decoration: underline;
} */

.breadcrumb-nav .divider {
  color: #7c7c7c;
  font-size: 20px;
     color: #7c7c7c;
    font-size: 20px;
    position: relative !important;
    margin: 0 6px;
    transform: translate(-50%, 10%);
    left: 0%;
    height: 0;
    top: -16px;
}
.divider {
  /* height: auto !important; */
  background-color: rgba(255, 0, 0, 0) !important;
  border-right: 0px solid rgb(147, 138, 138) !important;
  position: relative !important;
  top: none !important;
  transform: translateY(0%) !important;
}
.breadcrumb-nav .active {
  color: #1f2937;
  /* darker bold like screenshot */
  font-weight: 600;
}

/* 
.cart.in-cart {
  background: #4caf50; 
  color: white;
}
.cart.in-cart i { color: white; } */
/*-------------------- checkout------------------ */
.address-list .list-group-item.active {
  z-index: 2;
  color: #fff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  transition: background-color 0.3s ease;
}
.address-list .address-item.selected {
  z-index: 2;
  color: #fff !important;
  background-color: #030303 !important;
  border-color: #000000 !important;
  transition: background-color 0.3s ease;
}
.address-list .address-item.selected {
  border-color: #000000 !important;
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff !important;
  /* box-shadow: 0 4px 10px rgba(157, 123, 60, 0.5);
  transform: scale(1.02); */
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
}
.address-btn {
  color: #000000;
  border: 1px solid #000000;
}
.address-btn:hover,
.address-btn:active,
.address-btn:focus {
  background-color: #000000 !important ;
  color: #fff;
  border: 1px solid #fff !important;
  box-shadow: 0 0 0 0 rgb(40 47 58 / 0%) !important;
}
/* .address-item {
  transition: all 0.2s ease;
  cursor: pointer;
}
.address-item input[type="radio"]:checked + div {
  border-left: 3px solid #000;
  padding-left: 10px;
} */

.address-item {
  cursor: pointer;
  border: 2px solid #ddd;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.address-item:hover {
  border-color: #999;
}

.address-item.selected,
.address-item input[type="radio"]:checked + div {
  border-color: #007bff;
  /* background-color: #f0f8ff; */
}
/* filter price */
.price-range-container {
  position: relative;
  height: 35px;
  margin: 10px 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.price-range-container input[type="range"] {
  position: absolute;
  left: 0;
  /* top: 0; */
  width: 70%;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 5px;
  background: #646464;
  outline: none;
}

.price-range-container input[type="range"]:active {
  pointer-events: all;
}

.price-range-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  /* background: #c49a3b; */
  background: #000;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  position: relative;
  opacity: 1;
  z-index: 800;
}

.price-range-container input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  /* background: #c49a3b; */
  background: #000;
  border: 2px solid white;
  cursor: pointer;
  pointer-events: all;
}

.filter-btn {
  display: block;
  width: 20%;
  background: #030303;
  color: white;
  border: none;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
  /* margin-top: 10px; */
}

.filter-btn:hover {
  background: #555;
}

.price-label {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
  display: block;
}

#activeFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .price-range-container input[type="range"] {
    width: 100%;
  }

  .price-range-container {
    flex-direction: column;
    align-items: flex-start;
    height: 50px;
    gap: 20px;
  }

  .filter-btn {
    display: block;
    width: 40%;
  }
}

.tab-content.active {
  display: block;
}

.tab-btn.active {
  /* border-bottom: 2px solid #28a745; */
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 25px;
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 20px;
  max-width: 1300px;
  margin: 70px auto;
  margin-top: 0;
}
.profile-page .tab-content {
  display: block !important;
}

.howto_review {
  font-weight: bold;
  margin-top: 20px !important;
}

.howto_review_para {
  font-size: 14px;
  margin-right: 20%;
}

.review-filters {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
}

.label {
  font-weight: 600;
  color: #444;
  margin-right: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  border: none;
  outline: none;
  appearance: none;
  padding-right: 26px;
  font-size: 15px;
  font-weight: 500;
  background: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 13px;
  color: #222;
}

.custom-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  /* adjust width */
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
}

.custom-select i {
  font-size: 14px;
  color: #000;
}

/* Pincode check icon */
#checkBtn i {
  transition: 0.2s ease;
}

/* Active (delivery available) */
#checkBtn i.text-success {
  color: #28a745 !important;
}

/* Inactive / default */
#checkBtn i.text-dark {
  color: #333 !important;
}

/* ✅ 2️⃣ Input focus & error state */
#checkPincode {
  font-size: 14px;
}

#checkPincode:focus {
  outline: none;
  box-shadow: none;
}

/* Invalid pincode */
.pincode-error {
  border-color: #dc3545 !important;
}
/* 👉 If you want red border on error, just add/remove class from JS later. */

/* ✅ 3️⃣ Delivery result message styles */
.delivery_options p {
  margin-top: 6px;
  font-size: 14px;
}

.delivery_options .text-success {
  color: #28a745 !important;
  font-weight: 600;
}

.delivery_options .text-danger {
  color: #dc3545 !important;
  font-weight: 500;
}
/* ✅ 4️⃣ Smooth feedback animation (optional but 🔥) */
@keyframes pop {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.delivery_options p {
  animation: pop 0.25s ease;
}
/* ✅ 5️⃣ Delivery info list spacing */
.delivery_options ul li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.delivery_options ul i {
  width: 16px;
}
/* 🔥 Optional polish (recommended) */
.delivery_options {
  background: #fafafa;
  border-radius: 10px;
  padding: 10px;
}

.delivery_options small {
  font-size: 12px;
}