.filterContainer {
  width: 20% !important;
}
.basketContainer {
  width: 20% !important;
}
.filterContent {
  background-color: #fff0e8 !important; /* Beige background from image */
  padding: 0px;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.filterContent ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* .filterContent > ul > li {
 
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  position: relative; 
  flex-wrap: wrap; 
} */

.filter-header {
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  background-color: #fff0e8; /* Beige header   #f0e6d9*/
  border-radius: 4px 4px 0 0;
}

.filterContent > ul > li:last-child {
  border-bottom: none;
}

.filterContent > ul > li span {
  /* The container for the plus/minus icon */
  background-color: #3c3c3c; /* Dark circle background */
  color: white;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 10px; /* Adjust icon size */
}

/* Sub-items styling */
.filterContent .sub-items {
  background-color: white;
  list-style-type: none;
  padding-left: 10px; /* Indent sub-items */
  margin-top: 8px;
  width: 100%; /* Take full width below parent text */
  display: none; /* Initially hidden - jQuery's slideToggle will manage this */
}

.filterContent .sub-items li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: #555;
}
.filterContent .sub-items li label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: normal; /* Ensure label text is not bold by default */
}
.filterContent .sub-items li input[type="checkbox"] {
  margin-right: 8px;
  accent-color: var(--primary-color); /* Color for checkbox tick */
}

.btn-apply-filters {
  background-color: var(--primary-color);
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
  width: 125px; /* Ensure button is wide enough */
}

.btn-apply-filters:hover {
  background-color: var(--primary-color-hover); /* Darken on hover */
}
/* active focus make same  */
.btn-apply-filters:focus {
  background-color: var(--primary-color-hover);
  outline: none;
  box-shadow: 0 0 0 4px rgba(74, 111, 114, 0.5);
}
.reset-defaults-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}
.reset-defaults-link:hover {
  color: var(--primary-color-hover);
}
.reset-defaults-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 111, 114, 0.5);
}

/* cart css start  */
.your-basket-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 4px;
}

.basket-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600; /* SemiBold = 600 */
  font-style: normal; /* "SemiBold" font-style nahi hota, yaha normal use hota hai */
  font-size: 14px;
  line-height: 1.6; /* 160% = 1.6 */
  letter-spacing: 0; /* 0% */
  vertical-align: middle;
}
.basket-total {
  font-family: "Open Sans", sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal; /* Regular ka matlab hi normal hota hai */
  font-size: 14px;
  line-height: 160%; /* 1.6 bhi likh sakte ho */
  letter-spacing: 0; /* Default */
  vertical-align: middle; /* Align middle */
}
.basket-total-value {
  font-family: "Open Sans", sans-serif;
  font-weight: 600; /* SemiBold */
  font-style: normal; /* SemiBold ke liye normal hi use hota hai */
  font-size: 14px;
  line-height: 160%; /* ya 1.6 */
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
}
/* .checkout-button {
  background-color: #c8a17f;
  color: #604c38;
  border: none;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.checkout-button:focus {
  background-color: var(--secondary-color) !important;
}

.checkout-button:hover {
  background-color: #b9906e;
} */
.checkout-btn {
  min-width: 100%; /* chhoti screen pe kam se kam itna */
  max-width: 181px; /* max limit */
  height: 28px;
  padding: 0 12px; /* text ke around space */
  border-radius: 5px;
  opacity: 1;
  background-color: #587b7f; /* Example blue */
  border: none;
  cursor: pointer;

  /* Text styling */
  font-family: "Open Sans", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 11px;
  line-height: 130%;
  text-align: center;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* text wrap na ho */
}

/* Mobile ke liye */
@media (max-width: 576px) {
  .checkout-btn {
    min-width: 100px;
    max-width: 140px;
    font-size: 10px;
    height: 26px;
  }
}

.basket-divider-top {
  border: 0;
  border-top: 2px solid #a8a8a8; /* Lighter divider */
  margin: 0 0 15px 0; /* Adjusted margin */
}

.basket-divider-item {
  border: 0;
  border-top: 2px solid #a8a8a8; /* Lighter divider */
  margin: 15px 0; /* Space between items */
}
.basket-items-list {
  height: 20rem;
  overflow-x: hidden;
  overflow-y: auto;
}

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

.item-image-container {
  flex-shrink: 0;
  margin-right: 12px; /* Adjusted spacing */
}

.item-image-container img {
  width: 60px; /* Adjusted image size */
  height: 60px; /* Ensure it's square if image is square */
  display: block;
  object-fit: contain; /* Ensures image fits well */
}

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

.item-info p {
  margin: 0; /* Reset paragraph margin */
}

.item-name {
  font-size: 14px; /* Adjusted */
  color: #333;
  font-weight: 500; /* Regular to semibold */
  margin-bottom: 4px;
}

.item-credits {
  font-size: 10px;
  color: black; /* Softer credits color */
  margin-bottom: 8px;
}

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

.btn-quantity {
  background-color: #fff;
  border: 1px solid #d1d1d1; /* Slightly lighter border for buttons */
  color: #585858; /* Icon color */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.btn-quantity svg {
  width: 12px;
  height: 12px;
}

.btn-quantity:hover {
  background-color: #f5f5f5;
}

.btn-quantity:active {
  background-color: #e9e9e9;
}

.quantity-text {
  margin: 0 5px; /* Adjusted spacing */
  font-size: 14px;
  color: #212529; /* Darker text for quantity */
  font-weight: bold;
  min-width: 1px; /* Ensure some space for number */
  text-align: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* cart css end */
.imagecontainer-custom {
  padding:0;
  background-color: transparent;
  /* border-radius: 8px; */
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.imagecontainer-custom:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); */
}

.imageInner {
  width: auto !important;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #f9f9f9; */
  /* box-shadow: 1px 4px 5px 1px rgb(5 5 5 / 52%); */
  /* border-radius: 8px; */
  margin-bottom: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.imageInner img.product-img {
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  object-fit: cover;
  /* border-radius: 8px; */
  transition: transform 0.3s ease;
}

.imageInner:hover img.product-img {
  transform: scale(1.05);
}

.product-name {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  vertical-align: middle;
  margin: 0;
}

.text-muted {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.endSection {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  /* padding-top: 10px; */
}

.endSection .add-to-cart-btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 400; /* Normal weight */
  font-style: normal; /* Regular = normal */
  font-size: 10px !important;
  line-height: 1.6; /* 160% */
  letter-spacing: 0;
  vertical-align: middle;

  /* Button styling */
  background-color: transparent; /* Green background */
  color: var(--primary-color); /* White text */
  padding: 2px 10px !important;
  border: 0.5px solid var(--primary-color); /* Border */
  border-radius: 6px !important;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-credits {
  font-family: "Open Sans", sans-serif;
  font-weight: 400; /* 400 = normal weight */
  font-style: normal; /* "Regular" ka matlab normal hota hai */
  font-size: 12px;
  line-height: 1.6; /* 160% = 1.6 */
  letter-spacing: 0; /* 0% = normal spacing */
  vertical-align: middle;
}

.add-to-cart-btn {
  all: unset;
  /* background-color: var(--primary-color); */
  color: var(--primary-color);
  /* border: none; */
  padding: 6px 12px !important;
  font-size: 0.65rem !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.add-to-cart-btn:hover,
.add-to-cart-btn:focus {
  background-color: var(--primary-color-hover);
  box-shadow: 0 0 0 3px rgba(88, 123, 127, 0.3);
  color: white;
  outline: none;
  transform: scale(1.05);
}

.add-to-cart-btn:active {
  background-color: var(--primary-color-active);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ============ Base Dropdown Style ============ */
.quantity-dropdown {
   padding: 0px 19px 0px 5px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-size: 13px;
    height: 24px;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='5' height='5' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8L0 0h12L6 8z' fill='%23587b7f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px 6px;
    transition: all 0.2s ease-in-out;
}

/* Remove default arrows in most browsers */
.quantity-dropdown::-ms-expand {
    display: none;
}
.quantity-dropdown::-webkit-inner-spin-button,
.quantity-dropdown::-webkit-outer-spin-button {
    display: none;
    -webkit-appearance: none;
}

/* ============ Hover / Focus / Active States ============ */
.quantity-dropdown:hover {
    border-color: var(--primary-color-hover);
    color: var(--primary-color-hover);
}

.quantity-dropdown:focus {
    outline: none;
    border-color: var(--primary-color-active);
    box-shadow: 0 0 0 2px rgba(88, 123, 127, 0.15);
    color: var(--primary-color-active);
}

.quantity-dropdown:active {
    background-color: var(--primary-color-active);
    color: var(--primary-text-color);
}

/* ============ Selected Option Styling ============ */
.quantity-dropdown option:checked {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}
