body {
    margin: 0px;
    padding: 0px;
    background-color: #fefaf0;
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    margin-top: 10px; 
  }
  .breadcrumb a {
    text-decoration: none;
    color: #403f2b;
    margin-right: 8px;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  .breadcrumb span {
    margin-right: 8px;
  }
  .price-toggle {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .price-toggle h3 {
    font-size: 16px;
    line-height: 25px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    margin: 0px;
    color: #403f2b;
  }
  .price-toggle button {
    background-color: transparent;
    border: 0px;
  }
  .toggle-btn p {
    font-size: 20px;
    line-height: 35px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    color: #403f2b;
    margin: 0px;
  }
  .range-values {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .range-values span {
    font-size: 16px;
    line-height: 20px;
    font-family: "Helvetica W01 Light";
    letter-spacing: -1px;
    font-weight: 100;
    margin: 0px;
    margin-bottom: 10px;
    color: #403f2b;
  }
  .range-slider {
    width: 95%;
    position: relative;
    height: 2px;
    background: #f0f0f0;
    margin: 20px 0;
  }
  
  .range-slider input[type="range"] {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #403f2b;
    pointer-events: none;
  }
  
  .range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #403f2b;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
  }
  
  .range-slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
  }
  
  .range-slider input[type="range"]::-ms-thumb {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
  }
  
  /* .range-slider .range {
    position: absolute;
    background-color: #fefaf0;
    height: 100%;
  } */
  
  .filter-size {
    display: flex;
    width: 55%;
    flex-direction: column;
    border-bottom: 1px solid #d8d5c9;
    border-top: 1px solid #d8d5c9;
    padding: 15px 0px;
  }
  
  /* Hide default checkbox */
  .custom-checkbox {
    display: none;
  }
  
  /* Hide default checkbox */
  .custom-checkbox {
    display: none;
  }
  
  /* Checkbox container */
  .checkbox-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 0px;
  }
  
  .checkbox-i {
    display: flex;
    width: 80%;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding-left: 30px; /* Space for custom checkbox */
    margin-bottom: 10px;
  }
  
  /* Custom checkbox style */
  .checkbox {
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #403f2b;
    transition: background-color 0.3s, border-color 0.3s;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  
  /* Custom checkmark symbol */
  .checkbox::after {
    content: "";
    font-family: Arial, sans-serif; /* Ensure the font-family supports the checkmark */
    color: transparent;
    transition: color 0.3s;
  }
  
  /* Show custom checkmark symbol when checked */
  .custom-checkbox:checked + .checkbox {
    background-color: transparent;
    border-color: #403f2b;
  }
  
  .custom-checkbox:checked + .checkbox::after {
    content: "\2713"; /* Unicode for checkmark */
    color: #403f2b; /* Gray color for checkmark */
  }
  
  /* Label styling */
  .checkbox-i p {
    font-size: 16px;
    font-family: "Helvetica W01 Light", sans-serif;
    line-height: 19px;
    font-weight: 400;
    color: #403f2b;
    text-align: left;
    margin: 0;
  }
  
  .sortby-drop-res {
    display: none;
  }
  .all-products {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .section2 {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
  }
  .heading {
    width: 672px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    /* margin-left: 115px; */
  }
  .heading h2 {
    font-family: "fraunces";
    font-size: 65px;
    font-weight: 400;
    line-height: 65px;
    color: #403f2b;
    margin: 0px;
  }
  .heading p {
    font-size: 16px;
    line-height: normal;
    font-weight: 300;
    margin: 0px;
  }
  .filter-value-count {
    display: flex;
    flex-direction: column;
  }
  
  #applied-filters {
    display: none; /* Initially hidden */
  }
  
  .filter-show {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }
  .filter-show a {
    font-size: 16px;
    font-family: "Helvetica W01 Light";
    color: #403f2b;
    line-height: 20px;
    margin-left: 10px;
  }
  .filterlist-items {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  
  .filter-item {
    display: flex;
    align-items: center;
    background-color: #ebe7dc;
    padding: 3px 5px;
    height: 25px;
    justify-content: center;
  }
  
  .filter-item p {
    font-size: 16px;
    font-family: "Helvetica W01 Light";
    color: #403f2b;
    line-height: 19px;
    letter-spacing: -0.5px;
    margin: 0px;
    text-transform: capitalize;
    font-weight: 400;
  }
  
  .filter-item .clear-icon {
    margin-left: 10px;
    cursor: pointer;
    color: #403f2b;
    font-size: 20px;
    font-weight: bold;
  }
  
  .products-count {
    display: flex;
    flex-direction: row;
    /* width: 100%; */
    /* margin-left: 115px; */
    margin-top: 20px;
  }
  .products-countii {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* gap: 70%; */
    justify-content: space-between;
  }
  .products-count p {
    font-family: "Helvetica W01 Light";
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 0px;
  }
  .sortby-drop {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 7px;
  }
  .sortby-drop:hover {
    opacity: 0.8;
  }
  .sortby-drop p {
    font-size: 16px;
    font-family: "Helvetica W01 Light";
    font-weight: 400;
    line-height: 20px;
    color: #403f2b;
  }
  .drop-img {
    width: 20px;
    height: 20px;
    display: flex;
  }
  .drop-img img {
    width: 20px;
    height: 20px;
    rotate: 270deg;
    color: #403f2b;
  }
  
  .section-product {
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
    /* padding: 20px; */
    padding-bottom: 20px;
  }
  
  .product-images {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 10px; /* Adjust gap between products */
  }
  
  .product {
    width: 300px;
    margin-top: 10px;
    /* background-color: #fff;
    border: 1px solid #ccc; */
    display: flex;
    flex-direction: column;
    text-align: center;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    border-radius: 8px;
  
    box-sizing: border-box;
    cursor: pointer;
    text-align: left;
  }
  
  .product img {
    width: 100%;
    height: 397px;
    max-width: 397px;
    margin-bottom: 10px;
    border-radius: 20px;
    object-fit: cover;
  }
  
  .product p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    margin: 0px;
    text-align: center;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;
  }
  
  /* Container for the sort dropdown */
  .sortby-drop {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .drop-img img {
    transition: transform 0.3s ease;
  }
  
  .sortby-drop.active .drop-img img {
    transform: rotate(180deg);
  }
  
  #sort-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fefaf0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  #sort-menu li {
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Helvetica W01 Light";
    font-weight: 400;
    line-height: 20px;
    color: #403f2b;
  }
  
  #sort-menu li:hover {
    background: #f0f0f0;
  }
  /* /////////sort responsive//////////// */
  .sort-res {
    display: none;
  }
  .sort-res button {
    background-color: transparent;
    border: 0px;
  }
  .sort-res button p {
    text-decoration: underline;
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
    font-family: "Helvetica W01 Light";
  }
  .sort-overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height:120vh ;
    height: 100%;
    background: #fefaf0;
    /* padding: 20px; */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 1000; /* Ensure it appears above other content */
  }
  .filter-sort-res-heading {
    /* width: 100%; */
    display: flex;
    flex-direction: row;
    height: 100px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d8d5c9;
    padding: 5px 10px;
    border-top: 1px solid #d8d5c9;
  }
  .filter-headingi{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .filter-headingi h3 {
    font-size: 20px;
    line-height: 28px;
    font-family: "fraunces";
    font-weight: 300;
    margin: 0px;
    letter-spacing: -1px;
  }
  .filter-headingi p {
    font-size: 14px;
    line-height: 22px;
    font-family: "fraunces";
    font-weight: 300;
    margin: 0px;
  }
  
  .filter-sort-res-heading button {
    background-color: transparent;
    width: 30px;
    height: 30px;
  }
  .filter-sort-res-heading button img {
    width: 25px;
    height: 25px;
  }
  .sortby-res {
    padding-top: 25px;
    padding-left: 10px;
    padding-right: 10px;
    /* border-bottom: 1px solid #403f2b; */
  }
  .filterpriceby-res {
    padding: 10px 15px;
    /* border-bottom: 1px solid #403f2b; */
  }
  .filtersizeby-res {
    padding: 10px 15px;
  }
  .sort-items {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    gap: 10px;
  }
  
  .custom-radio {
    display: flex;
    flex-direction: row;
    color: #403f2b;
  }
  .color-radio {
    accent-color: #403f2b;
  }
  .sortby-res-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .sortby-res-heading h3 {
    font-size: 16px;
    line-height: 19px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    margin: 0px;
    color: #403f2b;
  }
  .sortoverlay-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10%;
    height: 150px;
    margin-top: 20px;
   border-top: 1px solid #d8d5c9;
  }
  .clear-btn {
    width: 38%;
    height: 30px;
    border: 1px solid #403f2b;
    display: flex;
  }
  .clear-btn button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  .clear-btn button p {
    font-size: 16px;
    line-height: 19px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    margin: 0px;
    color: #403f2b;
    text-decoration: none;
  }
  .apply-btn {
    width: 38%;
    height: 30px;
    border: 1px solid #ebe7dc;
    display: flex;
    background-color: #403f2b;
  }
  .apply-btn button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  .apply-btn button p {
    font-size: 16px;
    line-height: 19px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    margin: 0px;
    color: #f0f0f0;
    
    text-decoration: none;
  }
  
  .price-container-res {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    border-top: 1px solid #d8d5c9;
    padding: 15px 0px;
    border-bottom: 1px solid #d8d5c9;
  }
  .price-toggle-res {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .price-toggle-res h3 {
    font-size: 16px;
    line-height: 25px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    margin: 0px;
    color: #403f2b;
  }
  .price-toggle-res button {
    background-color: transparent;
    border: 0px;
  }
  .toggle-btn-res p {
    font-size: 20px;
    line-height: 35px;
    font-family: "Helvetica W01 Light";
    font-weight: 300;
    color: #403f2b;
    margin: 0px;
  }
  .range-values-res {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .range-values-res span {
    font-size: 16px;
    line-height: 20px;
    font-family: "Helvetica W01 Light";
    letter-spacing: -1px;
    font-weight: 100;
    margin: 0px;
    margin-bottom: 10px;
    color: #403f2b;
  }
  .range-slider-res {
    width: 95%;
    position: relative;
    height: 2px;
    background: #f0f0f0;
    margin: 20px 0;
  }
  
  .range-slider-res input[type="range"] {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #403f2b;
    pointer-events: none;
  }
  
  .range-slider-res input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #403f2b;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
  }
  
  .range-slider-res input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
  }
  
  .range-slider-res input[type="range"]::-ms-thumb {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
  }
  
  
  @media (max-width: 1430px) {
    .product-images {
      gap: 20px; /* Adjust gap between products */
    }
    .product {
      width: 300px;
      margin-top: 10px;
    }
  }
  @media (max-width: 1200px) {
    .product {
      width: 220px;
      height: auto;
      margin-top: 10px;
    }
    .product img {
      height: 350px;
      object-fit: cover;
    }
  }
  @media (max-width: 1100px) {
    .filter {
      display: none;
    }
    .section2 {
      width: 90%;
      justify-content: center;
      align-self: center;
    }
    .product {
      /* width: 270px; */
      margin-top: 10px;
    }
    .product img {
      height: 280px;
      object-fit: cover;
      width: 100%;
      max-width: 350px;
    }
    .all-products {
      justify-content: center;
    }
    .product p {
      margin: 0px;
      overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;
    }
  }
  @media (max-width: 1020px) {
    .all-products {
      justify-content: center;
    }
    .filter {
      display: none;
    }
    .section2 {
      width: 90%;
      justify-content: center;
      align-self: center;
    }
    .product {
      width: 370px;
      height: auto;
      margin-top: 10px;
    }
    .product img {
      height: 400px;
      width: 100%;
      object-fit: cover;
    }
  }
  @media (max-width: 940px) {
    .product {
      width: 330px;
      height: auto;
      margin-top: 10px;
    }
    .product img {
      height: 250px;
      width: 100%;
      object-fit: cover;
    }
  }
  @media (max-width: 750px) {
    .heading {
      width: 100%;
    }
    .product {
      width: 47%;
      height: auto;
      margin-top: 10px;
    }
    .heading h2 {
      font-size: 45px;
      line-height: 45px;
    }
  
  }
  @media (max-width: 450px) {
    .heading {
      width: 100%;
      margin-top: 10px;
      height: max-content;
    }
    .products-count {
      margin-top: 0px;
    }
    .product {
      width: 47%;
      height: auto;
    }
    .product img {
      height: 200px;
      object-fit: cover;
    }
    .section2 {
      gap: 15px;
    }
    .heading h2 {
      font-size: 35px;
      font-weight: 350;
      letter-spacing: -2px;
      line-height: 35px;
      margin: 0px;
      text-align: center;
    }
    .heading p {
      display: none;
    }
    .sortby-drop {
      display: none;
    }
    .product-images {
      gap: 12px;
    }
    .sort-res {
      display: flex;
    }
  }
  
  .cartItems {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .carts {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    gap: 10px;
    height: 50vh;
  }
  .added-cart {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    gap: 20px;
  }
  .added-cart img {
    width: 90px;
    height: 90px;
  }
  .cart-product-des {
    width: 50%;
    gap: 5px;
    display: flex;
    flex-direction: column;
  }
  .cart-product-des h2 {
    font-family: "Helvetica W01 Light";
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #403f2b;
    word-spacing: 1px;
    margin: 0px;
  }
  
  #cartItems .cart-product-des p {
    font-family: "Helvetica W01 Light";
    font-size: 15px;
    font-weight: 400;
    color: #403f2b;
    margin: 0px;
    word-spacing: 1px;
  }
  
  .input-counter {
    display: flex;
    border: 1px solid #403f2b;
    width: 60px;
    height: 23px;
    padding: 2px 5px;
    align-items: center;
    /* justify-content: space-evenly; */
    gap: 5px;
  }
  .input-counter button {
    background-color: transparent;
    border: 0px;
    width: 20px;
  }
  .input-counter button p {
    font-family: "Helvetica W01 Light";
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #403f2b;
    margin: 0px;
    word-spacing: 1px;
  }
  .clear-cart {
    width: 20px;
    height: 20px;
    background-color: #403f2b;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .clear-cart img {
    width: 11px;
    height: 11px;
  }
  .sub-total {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-self: center;
    height: 80px;
    gap: 20px;
  }
  .sub-total h3 {
    font-family: "Helvetica W01 Light";
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    color: #403f2b;
    margin: 0px;
    word-spacing: 1px;
  }
  #cartItems .sub-total p {
    font-family: "Helvetica W01 Light";
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    color: #403f2b;
    margin: 0px;
    word-spacing: 1px;
  }
  .line-border {
    width: 100%;
    height: 100px;
    border-top: 1px solid #cbc8c0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
  .view-cart {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #403f2b;
    height: 45px;
    border-radius: 15px;
  }
  .view-cart a {
    text-decoration: none;
    color: #fefaf0;
  }
  
  #cartItems .view-cart a p {
    font-family: "Helvetica W01 Light";
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #fefaf0;
    margin: 0px;
    word-spacing: 1px;
  }

  .product-card {
    flex: 0 0 auto;
    width: 250px;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    padding-top: 0px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 0px;
  }
  
  .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 5px;
  }
  
  .product-card h3 {
    font-size: 16px;
    text-align: center;
    margin: 5px 0;
    font-weight: 500;
  }
  
  .product-card p {
    font-size: 16px;
    text-align: center;
    color: #555;
    margin: 0;
  }