/* Kitchen PLP Component Styles */

.cmp-kitchen-plp {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

/* Header */
.cmp-kitchen-plp__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 60px;
}

.cmp-kitchen-plp__title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.cmp-kitchen-plp__count {
  font-size: 14px;
  color: #888;
}

/* Filter / Sort Bar */
.cmp-kitchen-plp__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 60px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 24px;
  position: relative;
}

.cmp-kitchen-plp__filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmp-kitchen-plp__filter {
  position: relative;
}

.cmp-kitchen-plp__filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  background: #fff;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.cmp-kitchen-plp__filter-btn:hover {
  border-color: #999;
}

.cmp-kitchen-plp__filter-btn--active,
.cmp-kitchen-plp__filter.active .cmp-kitchen-plp__filter-btn {
  border-color: #c4a35a;
  color: #c4a35a;
  background: #fdf8ed;
}

.cmp-kitchen-plp__filter-btn--toggle.active {
  border-color: #c4a35a;
  color: #c4a35a;
  background: #fdf8ed;
}

.cmp-kitchen-plp__filter-btn svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.cmp-kitchen-plp__filter.open .cmp-kitchen-plp__filter-btn svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Filter Dropdown */
.cmp-kitchen-plp__filter-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px;
  z-index: 100;
  @media screen and (max-width:767px){
    display: block !important;
    position: relative;
  }
}

.cmp-kitchen-plp__filter.open .cmp-kitchen-plp__filter-dropdown {
  display: block;
}

.cmp-kitchen-plp__filter-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  border-radius: 4px;
}

.cmp-kitchen-plp__filter-option:hover {
  background: #f5f5f5;
}

.cmp-kitchen-plp__filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #f5f5f5;
}

.cmp-kitchen-plp__filter-count {
  color: #999;
  font-size: 12px;
}

/* Sort */
.cmp-kitchen-plp__sort-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  background: #fff;
  font-size: 16px;
  color: #444;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23444' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Mobile toggles (hidden on desktop) */
.cmp-kitchen-plp__mobile-toggles {
  display: none;
}

/* Active Filters */
.cmp-kitchen-plp__active-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 0 60px;
  margin-bottom: 16px;
  @media screen and (max-width: 650px) {
    overflow: scroll;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for IE/Edge */
    -ms-overflow-style: none;
    flex-direction: column;
    gap: 16px;
    padding-right: 0;
    display: none;
    .cmp-kitchen-plp__active-filter-tag {
      white-space: nowrap;
    }
  }
}

.cmp-kitchen-plp__active-filters::-webkit-scrollbar {
  display: none;
}

.cmp-kitchen-plp__active-filters-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.cmp-kitchen-plp__active-filter-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 16px;
  font-size: 12px;
  color: #444;
}

.cmp-kitchen-plp__active-filter-tag button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  padding: 0;
  line-height: 1;
}

.cmp-kitchen-plp__clear-filters {
  background: none;
  border: none;
  color: #c4a35a;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* Product Grid */
.cmp-kitchen-plp__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 60px;
}

/* Product Card */
.cmp-kitchen-plp__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition:
    box-shadow 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.cmp-kitchen-plp__card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.cmp-kitchen-plp__card-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 4/3;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.cmp-kitchen-plp__card:hover .cmp-kitchen-plp__card-img {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  border-radius: 40px;
}

.cmp-kitchen-plp__card-link {
  display: block;
}

.cmp-kitchen-plp__card-wishlist {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
  background: transparent;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
}

.cmp-kitchen-plp__wishlist-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}

.cmp-kitchen-plp__card-wishlist[data-wishlist-status="added"] .cmp-kitchen-plp__wishlist-icon {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.cmp-kitchen-plp__card-info {
  padding: 12px;
}

.cmp-kitchen-plp__card-title-link {
  text-decoration: none;
  color: inherit;
}

.cmp-kitchen-plp__card-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.cmp-kitchen-plp__card-price {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.cmp-kitchen-plp__card-price span {
  font-weight: 600;
  color: #222;
}

/* Promo Banner */
.cmp-kitchen-plp__banner {
  grid-column: 1 / -1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
}

.cmp-kitchen-plp__banner-img-wrap {
  width: 100%;
  height: 100%;
}

.cmp-kitchen-plp__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.2s ease;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  @media screen and (max-width:767px){
    aspect-ratio: unset;
  }
}

.cmp-kitchen-plp__banner:hover {
  .cmp-kitchen-plp__banner-img {
    transform: scale(1.01);
  }
}

.cmp-kitchen-plp__banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.6)),
    to(transparent)
  );
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}

.cmp-kitchen-plp__banner-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}

.cmp-kitchen-plp__banner-subtitle {
  font-size: 14px;
  margin: 0 0 16px;
  opacity: 0.9;
}

.cmp-kitchen-plp__banner-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 24px;
  background: #c4a35a;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.cmp-kitchen-plp__banner-cta:hover {
  background: #b08f4a;
}

/* Load More */
.cmp-kitchen-plp__load-more {
  text-align: center;
  padding: 32px 60px;
}

.cmp-kitchen-plp__load-more-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid #e6e7eb;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #202129;
  font-family: CreatoDisplay, Archivo, sans-serif;
}

/* No Results */
.cmp-kitchen-plp__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 16px;
  @media screen and (max-width:650px){
    padding: 10px;
  }
}

/* Mobile Filter Overlay */
.cmp-kitchen-plp__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cmp-kitchen-plp__mobile-overlay.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cmp-kitchen-plp__mobile-overlay-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.cmp-kitchen-plp__mobile-overlay-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cmp-kitchen-plp__mobile-overlay-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #444;
  padding: 0;
}

.cmp-kitchen-plp__mobile-overlay-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cmp-kitchen-plp__mobile-overlay-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #e8e8e8;
}

.cmp-kitchen-plp__mobile-overlay-clear {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.cmp-kitchen-plp__mobile-overlay-apply {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ==================== Responsive ==================== */

@media (max-width: 1200px) {
  .cmp-kitchen-plp__header,
  .cmp-kitchen-plp__filters,
  .cmp-kitchen-plp__active-filters,
  .cmp-kitchen-plp__grid,
  .cmp-kitchen-plp__load-more {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .cmp-kitchen-plp__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cmp-kitchen-plp__header,
  .cmp-kitchen-plp__filters,
  .cmp-kitchen-plp__active-filters,
  .cmp-kitchen-plp__grid,
  .cmp-kitchen-plp__load-more {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cmp-kitchen-plp__banner-content {
    padding: 24px 24px;
  }

  .cmp-kitchen-plp__banner-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cmp-kitchen-plp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cmp-kitchen-plp__header,
  .cmp-kitchen-plp__filters,
  .cmp-kitchen-plp__active-filters,
  .cmp-kitchen-plp__grid,
  .cmp-kitchen-plp__load-more {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cmp-kitchen-plp__title {
    font-size: 18px;
  }

  /* Hide desktop filters, show mobile toggles */
  .cmp-kitchen-plp__filter-group,
  .cmp-kitchen-plp__sort {
    display: none;
  }

  .cmp-kitchen-plp__mobile-toggles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .cmp-kitchen-plp__mobile-filter-btn,
  .cmp-kitchen-plp__mobile-sort-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #fff;
    font-size: 13px;
    color: #444;
    cursor: pointer;
  }

  .cmp-kitchen-plp__card-info {
    padding: 8px;
  }

  .cmp-kitchen-plp__card-title {
    font-size: 13px;
  }

  .cmp-kitchen-plp__card-price {
    font-size: 12px;
  }

  .cmp-kitchen-plp__banner-content {
    padding: 16px;
  }

  .cmp-kitchen-plp__banner-title {
    font-size: 16px;
  }

  .cmp-kitchen-plp__banner-subtitle {
    font-size: 12px;
  }

  .cmp-kitchen-plp__banner-cta {
    padding: 8px 16px;
    font-size: 12px;
  }

  .cmp-kitchen-plp__banner-img {
    min-height: 150px;
  }
}

@media (max-width: 400px) {
  .cmp-kitchen-plp__grid {
    gap: 8px;
  }

  .cmp-kitchen-plp__card-info {
    padding: 6px;
  }

  .cmp-kitchen-plp__card-title {
    font-size: 12px;
  }

  .cmp-kitchen-plp__card-price {
    font-size: 11px;
  }
}

.cmp-kitchen-plp {
  padding: 40px;
  padding-top: 0;
  /* max-width: unset; */
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: Archivo, sans-serif;
  @media screen and (max-width: 650px) {
    padding: 20px;
  }
  .cmp-kitchen-plp__header {
    display: none;
  }
  .cmp-kitchen-plp__filters {
    padding: 0;
    margin: 0;
    border: none;
    /* max-width: unset; */
    .cmp-kitchen-plp__filter-group {
      .cmp-kitchen-plp__filter {
        .cmp-kitchen-plp__filter-btn {
          font-size: 14px;
          font-weight: 400;
          border-radius: 30px;
          border: 1px solid #ebeced;
          padding: 12px 20px;
          @media screen and (max-width: 767px) {
            border: none;
            svg {
              display: none;
            }
          }
        }
      }
    }
    .cmp-kitchen-plp__sort {
      display: flex;
      align-items: center;
      @media screen and (max-width: 767px) {
        display: none;
         width: 100%;
      }
      > img {
        width: 16px;
        height: 16px;
      }
      .cmp-kitchen-plp__sort-select {
        border: none;
        border-radius: 30px;
        appearance: none;
        font-size: 14px;
        color: #000;
      }
      .cmp-kitchen-plp__sort-select:focus {
        outline: none;
      }
    }
    .cmp-kitchen-plp__mobile-toggles {
      @media screen and (max-width: 767px) {
        position: fixed;
        top: 80vh;
        z-index: 12;
        left: 0;
        width: 50%;
        left: 25%;
        background: rgba(52, 61, 76, 0.1);
        backdrop-filter: blur(21.156070709228516px);
        gap: unset;
        padding: 4px;
        border-radius: 34px;
        .cmp-kitchen-plp__mobile-sort-btn {
          border: none;
          border-radius: unset;
          border-top-left-radius: 27.2px;
          border-bottom-left-radius: 27.2px;
          padding: 15px 20px;
        }
        .cmp-kitchen-plp__mobile-sort-btn::after {
          content: "";
          position: absolute;
          top: 50%;
          width: 1px;
          height: 20px;
          background: #dfdfdf;
          left: 50%;
          transform: translate(-50%, -50%);
        }
        .cmp-kitchen-plp__mobile-filter-btn {
          border: none;
          border-radius: unset;
          border-top-right-radius: 27.2px;
          border-bottom-right-radius: 27.2px;
          padding: 15px 20px;
        }
      }
    }
  }
  .cmp-kitchen-plp__active-filters {
    margin-bottom: 0;
    align-items: unset;
    justify-content: start;
    margin: unset;
    padding-left: 0;
    .cmp-kitchen-plp__active-filter-tag {
      font-size: 13px;
      font-weight: 500;
      padding: 8px 12px;
      background: #f5f5f5;
      border: 1px solid #cacbcc;
    }
    .cmp-kitchen-plp__clear-filters {
      color: #000;
      font-weight: 700;
      text-decoration: none;
    }
  }
  .cmp-kitchen-plp__grid {
    grid-template-columns: repeat(2, 1fr);
    /* max-width: unset; */
    padding: 0;
    width: 100%;
    @media screen and (max-width: 650px) {
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
    }
    .cmp-kitchen-plp__card {
      .cmp-kitchen-plp__card-img-wrap {
        .cmp-kitchen-plp__card-link {
          .cmp-kitchen-plp__card-img {
            border-radius: 20px;
          }
        }
      }
      .cmp-kitchen-plp__card-info {
        padding-bottom: 0;
        padding-left: 0;
        .cmp-kitchen-plp__card-title {
          font-size: 20px;
          font-weight: 500;
          color: #202129;
          @media screen and (max-width: 650px) {
            margin-bottom: 0;
          }
        }
      }
      .cmp-kitchen-plp__card-price {
        display: none;
      }
    }
    .cmp-kitchen-plp__banner {
      grid-column: unset;
      .cmp-kitchen-plp__banner-content {
        top: 0;
        left: 0;
        bottom: unset;
        right: unset;
        width: 100%;
        display: flex;
        justify-content: space-between;
        background: unset;
        .cmp-kitchen-plp__banner-title {
          font-size: 42px;
          font-weight: 500;
          color: #232426;
          @media screen and (max-width: 650px) {
            font-size: 30px;
          }
        }
        .cmp-kitchen-plp__banner-subtitle {
          font-size: 20px;
          font-weight: 400;
          color: #232426;
          @media screen and (max-width: 650px) {
            font-size: 14px;
          }
        }
      }
      .cmp-kitchen-plp__banner-cta {
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 24px;
        background: #fff;
        border-radius: 0;
        border-top-left-radius: 40px;
        .curve-border-before {
          bottom: 0;
          position: absolute;
          left: -50px;
          display: block;
          z-index: 123;
          width: 50px;
          height: 36px;
          @media screen and (max-width: 650px) {
            left: -49px;
          }
        }
        .curve-border-after {
          top: -33px;
          position: absolute;
          right: 0;
          display: block;
          z-index: 123;
          height: 33px;
          object-fit: contain;
          width: 46px;
        }
        @media screen and (max-width: 650px) {
          padding: 15px;
        }
        p {
          padding: 20px 30px;
          background: #202129;
          border-radius: 60px;
          font-size: 16px;
          font-weight: 500;
          color: #fff;
          @media screen and (max-width: 650px) {
            padding: 14px;
          }
        }
      }
    }
  }
  /* /////// */
  /* ---- Sort Wrapper ---- */
  .cmp-kitchen-plp__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 3;
  }

  .cmp-kitchen-plp__sort-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: #202129;
    @media screen and (max-width:767px){
      width: 100%;
      justify-content: center;
    }
    > img {
      width: 16px;
      object-fit: contain;
    }
  }

  /* ---- Dropdown ---- */
  .cmp-kitchen-plp__sort-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: -1;
    padding: 6px 0;
    padding-top: 40px;
  }
  .cmp-kitchen-plp__sort-custom{
    @media screen and (max-width:767px){
      width: 100%;
    }
  }

  /* Show dropdown */
  .cmp-kitchen-plp__sort-custom.open .cmp-kitchen-plp__sort-dropdown {
    display: block;
  }

  .cmp-kitchen-plp__sort-btn svg {
    transition: transform 0.3s ease;
  }

  .cmp-kitchen-plp__sort-custom.open .cmp-kitchen-plp__sort-btn svg {
    transform: rotate(180deg);
  }

  /* ---- Options ---- */
  .cmp-kitchen-plp__sort-option {
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    img{
      width: 15px;
      object-fit: contain;
    }
  }

  .cmp-kitchen-plp__sort-option:hover {
    background: #f5f5f5;
  }
}

.cmp-kitchen-plp__filter-btn {
  @media screen and (max-width: 767px) {
    border: none;
    svg {
      display: none;
    }
  }
}

