.wccf-wrapper-internt {
  display: flex;
  gap: 24px;
  margin: 20px 0;
  box-sizing: border-box;
}

.wccf-left {
  flex: 0 0 auto;
}

.wccf-right {
  flex: 1 1 auto;
}

.wccf-filters {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(20, 20, 40, 0.06);
}

.wccf-filter-section {
  margin-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.wccf-section-toggle {
  width: 100%;
  text-align: left;
  padding: 10px;
  background: none;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  display: block;
}

.wccf-section-body {
  padding: 6px 0 12px 10px;
}

.wccf-checkbox-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.wccf-checkbox-list li {
  margin: 6px 0;
  font-size: 14px;
}

.wccf-checkbox-list li label {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.wccf-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 20px;
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
}

.wccf-count {
  font-size: 14px;
  color: #333;
}

.wccf-products {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width:1024px) {
  .wccf-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .wccf-left {
    display: none;
  }

  .wccf-right {
    width: 100% !important;
  }
}

@media (max-width:600px) {
  .wccf-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
	.wccf-view-controls {
		display: none!important;
	}
  .wccf-wrapper {
    padding: 0 20px;
  }
}

.wccf-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20, 20, 40, 0.06);
  display: flex;
  flex-direction: column;
  padding: 12px;
  transition: all .3s;
  position: relative;
}

.wccf-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.wccf-product-card img {
	transition: all .3s;
}

.wccf-product-card:hover img {
	scale: 105%;
}

.wccf-card-media {
  padding: 0px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  border-radius: 12px;
}

.wccf-card-media img {
  width: 100%;
  height: 270px!important;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #f5f5f5!important;
  border-radius: 12px !important;
}

.wccf-card-body {
  padding: 12px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wccf-card-body>*:last-child {
  margin-top: auto;
}

.wccf-title {
  margin: 0;
  font-size: 16px;
  color: #113;
}

.wccf-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wccf-badge {
  background: var(--cmsmasters-button-normal-colors-bg);
  color: #fff;
  padding: 0px 8px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.wccf-meta div {
  font-size: 13px;
  color: #444;
  margin: 4px 0;
  display: flex;
  justify-content: space-between;
}

.wccf-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wccf-specs div{
  width: 100%;
}

.wccf-specs div strong{
  font-size: 14px;
}

.wccf-spec {
  background: #f3f6f9;
  padding: 6px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.wccf-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  text-align: center;
}

.wccf-quote {
  transition: all .3s ease-in-out;
  background: var(--cmsmasters-button-normal-colors-bg);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  flex: 1;
}

.wccf-quote:hover {
  background: var(--cmsmasters-button-hover-colors-bg);
  color: #fff;
}

.wccf-view {
  transition: all .3s ease-in-out;
  border: 1px solid var(--cmsmasters-button-hover-colors-bg);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--cmsmasters-colors-heading);
  background: #fff;
  display: inline-block;
  flex: 1;
}

.wccf-view:hover {
  background: var(--cmsmasters-button-hover-colors-bg);
  color: #fff;
}

.wccf-pages {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.wccf-page-btn {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
}

.wccf-page-btn:hover {
  border-radius: 6px;
}

.wccf-loading {
  padding: 40px;
  text-align: center;
  color: #666;
}

.wccf-no-products {
  padding: 30px;
  text-align: center;
  color: #666;
}

.wccf-filters h3 {
  font-size: 1.2rem;
  font-weight: 400;
}

.wccf-section-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.wccf-section-toggle:hover {
  color: #0073aa;
  background-color: oklch(.985 .002 247.839);
  border-radius: 12px;
}

.wccf-toggle-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.wccf-section-toggle.open .wccf-toggle-icon {
  transform: rotate(180deg);
}
.wccf-section-toggle.open + .wccf-section-body {
  max-height: 700px;
  opacity: 1;
}

.wccf-section-body {
  overflow: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.wccf-products {
  align-items: stretch;
}

.wccf-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.wccf-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.wccf-card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.wccf-product-card {
  min-height: 360px;
}

.wccf-products.list-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wccf-products.list-view .wccf-product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  padding: 12px;
  min-height: 180px;
  position: relative;
}

.wccf-products.list-view .wccf-card-media {
  flex: 0 0 280px;
  border-radius: 12px;
  overflow: hidden;
}

.wccf-products.list-view .wccf-card-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.wccf-products.list-view .wccf-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wccf-products.list-view .wccf-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.wccf-products.list-view .wccf-quote, .wccf-products.list-view .wccf-view {
  flex: 0.2;
}

.wccf-view-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 0px;
  align-items: center;
}

.wccf-view-btn {
  background: #f1f1f1;
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
}
.wccf-view-controls span:nth-child(2) {
  border-radius: 6px 0 0 6px;
}
.wccf-view-controls span:nth-child(3) {
  border-radius: 0 6px 6px 0;
  margin-left: -8px;
}

.wccf-view-btn:hover {
  background: #e0e0e0;
}

.wccf-view-btn.active {
  background: var(--cmsmasters-button-normal-colors-bg);
  color: #fff;
}

.wccf-sort {
  padding: 5px 2rem 5px 10px !important;
  text-align: left !important;
  background-image: url("images/Icon-10.svg");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px 16px;
}

select.wccf-sort option:hover,
select.wccf-sort option:checked {
  box-shadow: 0 0 10px 100px rgba(100, 100, 255, 0.5) inset;
}

.wccf-search-btn {
  color: #fff!important;
}
.wccf-search-wrap {
	width:100%; 
	margin-bottom:18px;
  box-shadow: 0 6px 18px rgba(20, 20, 40, 0.06);
}


.noUi-target {
  background: #f0f0f0;
  border-radius: 6px;
}

.noUi-connect {
  background: var(--cmsmasters-button-normal-colors-bg)!important;
}

.noUi-base {
  background-color: #e0e0e0;
}

.noUi-handle {
  background: var(--cmsmasters-button-normal-colors-bg)!important;
  border: 2px solid white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

/*.wccf-card-media {
  position: relative;
  overflow: hidden;
}

.wccf-premium-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 5;
  animation: premiumFadeIn 0.6s ease-in-out;
}

@keyframes premiumFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}*/

.wccf-badge-premium {
  position:absolute;
  left:12px;
  top:12px;
	background: linear-gradient(90deg, #ffcc00, var(--cmsmasters-button-normal-colors-bg));
	color: #fff;
	font-weight: 700;
	border-radius: 16px;
	padding: 0px 8px;
	margin-right: 4px;
  font-size: 14px;
  box-shadow: 0 0 12px 4px rgba(255, 215, 0, 0.6);
  z-index: 1;
}