/* Kitchen PLP Component Styles */

.cmp-kitchen-plp {
  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: 14px;
  color: #000;
  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);
}

.cmp-kitchen-plp__filter.open .cmp-kitchen-plp__filter-btn{
  color: #9DA1B0;
}

/* 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;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #202129;
}

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

/* Custom checkbox — label handles visuals, real input stays for JS */
.cmp-kitchen-plp__filter-option {
  position: relative;
}

.cmp-kitchen-plp__filter-option input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  opacity: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Visual box drawn on the label */
.cmp-kitchen-plp__filter-option::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid #D5D7DE;
  border-radius: 3px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
}

/* Checkmark tick shown when checked — pure CSS rotated border */
.cmp-kitchen-plp__filter-option:has(input[type="checkbox"]:checked)::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: translateY(-65%) rotate(45deg);
  -ms-transform: translateY(-65%) rotate(45deg);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.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:32px 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;
  border-radius: 20px;
}
@media screen and (max-width:767px){
  .cmp-kitchen-plp__card-img-wrap{
    border-radius: 10px;
  }
}

.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.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.cmp-kitchen-plp__card:hover{
  .cmp-kitchen-plp__card-img {
   -webkit-transform: scale(1.05);
   -ms-transform: scale(1.05);
   transform: scale(1.05);
   border-radius: 40px;
 }
.cmp-kitchen-plp__card-img-wrap{
  border-radius: 20px;
}
@media screen and (max-width:767px){
  border-radius: 10px;
}
}

.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: 28px;
    height: 28px;
    object-fit: contain;
    @media screen and (max-width:767px){
      width: 24px;
      height: 24px;
    }
  }
  @media screen and (max-width:767px){
    top: 10px;
    right: 10px;
  }
}

.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.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.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: 20px;
  overflow: hidden;
  min-height: 200px;
}
@media screen and (max-width:767px){
  .cmp-kitchen-plp__banner{
    border-radius: 10px;
  }
}

.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.5s ease;
  cursor: pointer;
}

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

.cmp-kitchen-plp__banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 26px;
  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: 16px 32px;
  padding-right: 20px;
  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;
  min-width: 179px;
  justify-content: space-between;
  @media screen and (max-width:767px){
    padding: 12px 32px;
    padding-right: 24px;
  }
}

/* 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 Sort Bottom Sheet Overlay */
.cmp-kitchen-plp__mobile-sort-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1004;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

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

.cmp-kitchen-plp__mobile-sort-sheet {
  background: #fff;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 16px);
  -webkit-animation: sortSheetSlideUp 0.25s ease;
  animation: sortSheetSlideUp 0.25s ease;
}

@-webkit-keyframes sortSheetSlideUp {
  from { -webkit-transform: translateY(100%); transform: translateY(100%); }
  to   { -webkit-transform: translateY(0);    transform: translateY(0); }
}
@keyframes sortSheetSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cmp-kitchen-plp__mobile-sort-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: 20px 20px 16px;
  border-bottom: 1px solid #e8e8e8;
}

.cmp-kitchen-plp__mobile-sort-header span {
  font-size: 16px;
  font-weight: 500;
  color: #202129;
}

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

.cmp-kitchen-plp__mobile-sort-options {
  padding: 4px 0 8px;
}

.cmp-kitchen-plp__mobile-sort-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  font-size: 14px;
  color: #202129;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  -webkit-transition: background 0.15s ease;
  -o-transition: background 0.15s ease;
  transition: background 0.15s ease;
}

.cmp-kitchen-plp__mobile-sort-option:last-child {
  border-bottom: none;
}

.cmp-kitchen-plp__mobile-sort-option:active {
  background: #f5f5f5;
}

.cmp-kitchen-plp__mobile-sort-option.active {
  font-weight: 700;
}

.cmp-kitchen-plp__mobile-sort-option svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #555;
}

/* Mobile Filter Overlay */
.cmp-kitchen-plp__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1003;
  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;
}

.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;
}

.cmp-kitchen-plp__mobile-overlay-clear {
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  padding: 16px;
  width: 38%;
  font-size: 12px;
  font-weight: 700;
  color: #202129;
  border: none;
}

.cmp-kitchen-plp__mobile-overlay-apply {
  padding: 16px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  width: 62%;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  -o-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.cmp-kitchen-plp__mobile-overlay-apply:disabled {
  background: #D5D7DE;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

/* ==================== 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: 12px;
    color: #444;
    cursor: pointer;
    font-weight: 500;
    color: #202129;
  }

  .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;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: Archivo, sans-serif;
  max-width: 1440px;
  margin: 0 auto;
  @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) {
        margin-top: 40px;
        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: 767px) {
      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;
            @media screen and (max-width:767px){
              border-radius: 10px;
            }
          }
        }
      }
      .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;
            font-size: 16px;
          }
        }
      }
      .cmp-kitchen-plp__card-price {
        display: none;
      }
    }
    .cmp-kitchen-plp__banner {
      grid-column: unset;
      position: relative;
      .cmp-kitchen-plp__banner-content {
        top: 0;
        left: 0;
        bottom: unset;
        right: unset;
        width: 100%;
        display: flex;
        justify-content: space-between;
        background: unset;
        align-items: center;
        @media screen and (max-width:767px){
          align-items: start;
        }
        .cmp-kitchen-plp__banner-title {
          font-size: 42px;
          font-weight: 500;
          color: #232426;
          line-height: 101%;
          margin: 0;
          margin-right: 10px;
          @media screen and (max-width: 1024px) {
            width: 50%;
            font-size: 30px;
          }
          @media screen and (max-width: 650px) {
            font-size: 30px;
            line-height: 110%;
          }
        }
        .cmp-kitchen-plp__banner-subtitle {
          font-size: 20px;
          font-weight: 400;
          line-height: 132%;
          color: #232426;
          margin: 0;
          @media screen and (max-width: 1024px) {
            margin-top: 10px;
            font-size: 18px;
            width: 50%;
          }
          @media screen and (max-width: 767px) {
            font-size: 12px;
            line-height: 130%;
            margin-top: 5px;
          }
        }
      }
      .cmp-kitchen-plp__banner-img-wrap--desktop {
        .cmp-kitchen-plp__banner-img.desktop-bg {
          bottom: -30px;
        }
        .cmp-kitchen-plp__banner-img.desktop-hand-image {
          position: absolute;
          left: 0;
          top: 50%;
          height: 290px;
          object-fit: cover;
          width: auto;
          transform: translateY(-50%);
        }
        @media screen and (max-width: 767px) {
          display: none !important;
        }
      }
      .cmp-kitchen-plp__banner-img-wrap--mobile {
        display: none;
        min-height: 480px;
        .cmp-kitchen-plp__banner-img.mobile-bg{

        }
        @media screen and (max-width: 767px) {
          display: block;
        }
      }
      .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.5px;
          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;
            font-family: Archivo;
          }
        }
      }
    }
    .cmp-kitchen-plp__banner.hand-left{
       .cmp-kitchen-plp__banner-img.mobile-hand-image{
          left: 0;
          position: absolute;
          width: 174px;
          top: 50%;
          height: auto;
          transform: translateY(-50%);
          @media screen and (max-width:767px){
            width: 130px;
          }
        }
    }
    .cmp-kitchen-plp__banner.hand-right{
       .cmp-kitchen-plp__banner-img.mobile-hand-image{
            right: -20px;
            left: unset;
            top: unset;
            transform: unset;
            bottom: 30px;
            transform: rotate(-10deg);
            width: 210px;
            position: absolute;
            object-fit: contain;
            height: auto;
        }
    }
    @media screen and (max-width:767px){
      .cmp-kitchen-plp__banner.details-column-mobile{
        .cmp-kitchen-plp__banner-content{
          flex-direction: column;
          width: 80%;
          align-items: start;
          .cmp-kitchen-plp__banner-title{
            width: 100% !important;
          }
          .cmp-kitchen-plp__banner-subtitle{
            width: 100% !important;
          }
        }
      }
    }
  .cmp-kitchen-plp__banner-img.mobile-hand-image,
  .cmp-kitchen-plp__banner-img.desktop-hand-image {
    transform-origin: bottom center;
    transition: transform 0.5s ease;
  }

  .cmp-kitchen-plp__banner.hand-left:hover {
    .cmp-kitchen-plp__banner-img.mobile-hand-image,
    .cmp-kitchen-plp__banner-img.desktop-hand-image {
      transform: scale(1.05) translateY(-40%) translateX(10px) rotate(-5deg);
    }
  }
    .cmp-kitchen-plp__banner.hand-right:hover {
    .cmp-kitchen-plp__banner-img.mobile-hand-image,
    .cmp-kitchen-plp__banner-img.desktop-hand-image {
      transform: scale(1.05) translateY(-40%) translateX(10px) rotate(-5deg);
      @media screen and (max-width:767px){
        transform: scale(1.05) translateY(-10%) translateX(10px);
        transform: rotate(0deg);

      }
    }
  }
  }
  /* /////// */
  /* ---- Sort Wrapper ---- */
  .cmp-kitchen-plp__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 3;
    @media screen and (max-width: 767px) {
      display: none !important;
    }
  }

  .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: left;
    }
    > 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: 70%;
      margin: 0 auto;
      position: relative;
    }
  }

  /* Show dropdown */
  .cmp-kitchen-plp__sort-custom.open .cmp-kitchen-plp__sort-dropdown {
    display: block;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .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: 20px 10px;
    font-size: 16px;
    margin: 0 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f6f6f6;
    padding-left: 0;
    img {
      width: 20px;
      object-fit: contain;
    }
  }
  .cmp-kitchen-plp__sort-option:last-child {
    border-bottom: none;
  }
  .cmp-kitchen-plp__sort-option.active {
    font-weight: 700;
  }
}

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

.cmp-kitchen-plp__mobile-overlay-body {
  .cmp-kitchen-plp__sort {
    @media screen and (max-width: 767px) {
      display: flex !important;
    }
  }
}

/* ---- Mobile Filter: two-panel tab layout ---- */
.cmp-kitchen-plp__mobile-overlay-body--filter {
  display: flex !important;
  flex-direction: row !important;
  overflow: hidden !important;
  padding: 0 !important;
  height: 100%;
}

.cmp-kitchen-plp__mobile-filter-tabs {
  width: 38%;
  min-width: 130px;
  background: #f2f3f5;
  display: flex;
  flex-direction: column;
}

.cmp-kitchen-plp__mobile-filter-tab {
  font-size: 12px;
  font-weight: 400;
  font-family: Archivo, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  padding: 15px 12px;
}

.cmp-kitchen-plp__mobile-filter-tab.active {
  background: #fff;
  border-left-color: #5b3eff;
  color: #202129;
  font-weight: 600;
}
.cmp-kitchen-plp__mobile-filter-tab.active::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.cmp-kitchen-plp__mobile-filter-tab .tab-count {
  color: #202129;
  min-width: 20px;
  height: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: Archivo, sans-serif;
}

.cmp-kitchen-plp__mobile-filter-options {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cmp-kitchen-plp__mobile-filter-opt-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.cmp-kitchen-plp__mobile-filter-opt-panel.active {
  display: flex;
}

.cmp-kitchen-plp__mobile-filter-opt-panel .cmp-kitchen-plp__filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: Archivo, sans-serif;
  cursor: pointer;
  font-weight: 400;
  color: #202129;
}

.cmp-kitchen-plp__mobile-filter-opt-panel
  .cmp-kitchen-plp__filter-option
  input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

