/* ─── BRAND DROPDOWN ───────────────────────────────────── */
.vc2-filter-brand {
  position: relative;
  max-width: 650px;
  margin: 0 auto 16px;
  text-align: left;
}
.vc2-filter-toggle {
  display: inline-block;
  width: 100%;
  background: #eeeff3;
  border: none;
  padding: 12px 12px;
  cursor: pointer;
  font-weight: 600;
}
.vc2-filter-toggle .vc2-filter-arrow {
  margin-left: .5em;
  transition: transform .2s;
}
.vc2-filter-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  display: none;
  max-height: 200px;
  overflow-y: auto;
  width: 250px;
}
.vc2-filter-options label {
  display: block;
  margin-bottom: 6px;
  font-size: .9rem;
  cursor: pointer;
}
.vc2-filter-brand.open .vc2-filter-options {
  display: block;
}
.vc2-filter-brand.open .vc2-filter-toggle .vc2-filter-arrow {
  transform: rotate(180deg);
}


/* ─── TOGGLE BAR ─────────────────────────────────────────── */

.vc2-switch-box {
  background: #eeeff3;
  border: none;  
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 112px;
  height: 112px;
}

.vc2-switchbar {
/*   max-width: 650px; */
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.vc2-togglebox {
  flex: 1 1 22%;
  max-width: 200px;    
  padding: 0px;
  text-align: center;
  box-sizing: border-box;
}
.vc2-switch {
  width: 50px;
  height: 24px;
  background: #d2d8df;
  border: none;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
  margin: 0 auto 8px;
}
.vc2-switch::after {
  content: '';
  width: 20px;
  height: 20px;
  background: #113142;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left .2s;
  box-shadow: 0 0 2px rgba(0,0,0,.2);
}
.vc2-switch.is-active {
  background: #d2d8df;
}
.vc2-switch.is-active::after {
  left: calc(100% - 22px);
  background: #4caf50;
}
.vc2-label {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 4px;
}
.vc2-description {
  font-size: 13px;
  line-height: 16px;
  color: #113142;  
  margin-top: 3px;
  min-height: 2em; 
	
}
/* hide descriptions on small screens */
@media (max-width: 600px) {
  .vc2-description { display: none; }
}




/* hide any frames when carousel=0 */
.vc2-gallery-frame {
  display: none;
}

/* Carousel container */

.vc2-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #fff;
}

.vc2-img-wrap img,
.vc2-img-wrap .vc2-gallery-frame {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;    
  object-position: center;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.vc2-img-wrap img {
	height: 200px !important;
}



/* Show the first slide on load, regardless of carousel flag */
.vc2-img-wrap img:first-of-type {
  transform: translateX(0);
}

/* Prev/Next buttons */
.vc2-img-wrap .vc2-carousel-prev,
.vc2-img-wrap .vc2-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 1.3rem;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 20;
}
.vc2-img-wrap .vc2-carousel-prev { left: 8px; }
.vc2-img-wrap .vc2-carousel-next { right: 8px; }
.vc2-img-wrap .vc2-carousel-prev:hover,
.vc2-img-wrap .vc2-carousel-next:hover {
  background: rgba(255,255,255,1);
}



.vc2-img-wrap[data-carousel="1"] .vc2-gallery-frame:first-of-type {
  display: block;
}


/*
.vc2-img-wrap {
  position: relative;
  overflow: hidden;
  height: 150px;        
}


.vc2-img-wrap img,
.vc2-img-wrap .vc2-gallery-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;         
  object-fit: cover;
  object-position: center;
  transform: translateX(100%);  
  transition: transform 0.5s ease;
  display: block;        
}


.vc2-img-wrap[data-carousel="1"] img:first-of-type,
.vc2-img-wrap[data-carousel="0"] img:first-of-type {
  transform: translateX(0);
} */


/*
.vc2-img-wrap {
  height: 150px;       
  overflow: hidden;    
}

.vc2-img-wrap img,
.vc2-img-wrap .vc2-gallery-frame {
  width: 100%;         
  height: 150px;       
  object-fit: cover;   
  object-position: center;
}
*/

.vc2-brand-logo-container {
	text-align: right;
	background-color: #fff;
}

.vc2-img-div {
  position: relative;    /* establish containing block for absolute children */
}

.vc2-line-type {
  position: absolute;
  bottom: 8px;           /* adjust to taste */
  right: 8px;
  background: rgba(255,255,255,0.9); /* or your brand color */
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #333;
  z-index: 10;
}


.vc2-title-line1, .vc2-title-line2 {
	display: block;
	font-size: 16px;
	font-weight: 600;
	
}

.vc2-specs .spec {
	margin: 3px 5px;	
}

.vc2-specs .spec span {
	padding: 3px 6px;
}




/* ======================================================
   1. PRODUCT GRID (Wrapper & Responsiveness)
   ====================================================== */
.vc2-product-grid {
  display: grid;
  gap: 10px;          /* space between cards */
}



@media (min-width: 1025px) { 
	.vc2-product-grid { 
		grid-template-columns: repeat(3, 1fr); 
	} 
}
@media (min-width: 769px) and (max-width: 1024px) { 
	.vc2-product-grid { 
		grid-template-columns: repeat(2, 1fr);
	} 
}
@media (max-width: 768px) { 
	.vc2-product-grid { 
		grid-template-columns: 1fr; 
	} 
}

/* ======================================================
   2. CARD SHELL
   ====================================================== */
.vc2-card {
  list-style: none;
  background: #e7e7e7;
  border: none;
  width: 93% !important;
  margin: 0 auto !important;
}

/* --------------------------------- Image & Carousel */
.vc2-img-wrap { position: relative; overflow: hidden; }
.vc2-img-wrap img,
.vc2-img-wrap .vc2-gallery-frame { width: 100%; display: block; }
.vc2-gallery-frame { position: absolute; top: 0; left: 0; display: none; }
.vc2-img-wrap[data-carousel="1"] .vc2-gallery-frame:first-of-type { display: block; }

/* --------------------------------- Deal badge & Brand */
.vc2-deal-badge {
	top: 8px;
	font-size: .7rem; 
	padding: 3px 6px; 
	background: #ea5284; 
	color: #fff;
	position: absolute; 	
}

.vc2-brand-logo { 
	max-width: 114px;
    height: 40px;
    object-fit: scale-down; 		
}

/* --------------------------------- Title */
.vc2-title { 
	font-size: 1rem; 
	margin: 8px 6px; 
	background-color: #E7E7E7;
	padding: 10px 5px !important;
	margin: 0;
}

/* ======================================================
   3. SPECS GRID (flex rows)
   ====================================================== */
.vc2-specs { 
	font-size: 12px; 	
/* 	background-color: #fff; */
	
}
.vc2-specs .spec { 
	display: flex; 
	gap: 4px; 
	padding: 0px; 
	border-bottom: 1px solid #ddd; 
	background: #fff; }
/* .vc2-specs .spec:nth-child(odd) { background: #f1f1f1; } */

/* Column widths */
.vc2-specs .spec > span:first-child  { flex: 2; }  /* label   */
.vc2-specs .spec > span:nth-child(2) { flex: 1; text-align: right; }
.vc2-specs .spec > span:nth-child(3) { 
	flex: 1; 
	text-align: right; 
	background: #dde5f6; 
	margin: 0px 0px 0px 5px;
}

/* Row modifiers */
.vc2-specs .spec--header      { background: #e5e5e5; font-weight: 700; justify-content: center; }
.vc2-specs .spec--gap         { height: 6px; border: none; background: transparent; }

.vc2-specs .spec--seer,
.vc2-specs .spec--scop { 
	width: 50%;
  	margin: 0;
}
.spec-row-half {
  display: flex;
  gap: 5px;
  padding: 0px 5px;
}



/* ======================================================
   4. FEATURE ICONS
   ====================================================== */
.vc2-icons { 
/* 	display: flex; 
	gap: 8px;  */
	display:block;
	padding: 6px;
	min-height: 45px;

}
.vc2-icon  { 
	width: 35px; 
/* 	height: 26px; 
	background: #00324d; 
	border-radius: 50%;  */
}

/* ======================================================
   5. DESCRIPTION & PRICE
   ====================================================== */
.vc2-short { padding: 6px; font-size: .8rem; }

/* --- Price Box --- */
.vc2-price-box { 
	padding: 6px; 
/* 	text-align: center;  */
	color: #fff; 
	padding: 6px;
	color: #fff;
	width: 40%;
	text-align: right;
	margin-left: auto;
	margin-bottom: 25px;

}
.vc2-price-box.no-discount { 
	background: #00324d;
	
}  
.vc2-price-box.no-discount bdi {
	color: #ffffff;
}
.vc2-price-box ins::before {
	content: ' ' !important;
}
.woocommerce-price-suffix {
	display: none;
}
/* .vc2-price-box .old .woocommerce-Price-amount bdi:first-child {
    display: none;
} */

.vc2-price-box:not(.no-discount) {
/* 	background: #e91e63; */
	background: #DB6083;
}

.vc2-price-box .old  { text-decoration: line-through; font-size: .8rem; }
.vc2-price-box .new  { font-size: 1.2rem; font-weight: 700; }
.vc2-price-box .save { font-size: .75rem; }

/* ======================================================
   6. ADD-TO-CART BUTTON
   ====================================================== */
.vc2-atc        { text-align: center; padding: 8px; }
.vc2-atc .button{ width: 100%; }

/* ======================================================
   7. LOAD-MORE BUTTON
   ====================================================== */
.vc2-load-more {
  display: block;
  margin: auto !important;  
  padding: 10px 20px;
  background: #EA5284;
  color: #fff;
  border: none;
  cursor: pointer; 
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s ease;	
}
.vc2-load-more:hover {
	opacity: 0.6;
}

/* ======================================================
   8. PINK DEAL INFO (optional extra box)
   ====================================================== */
.vc2-deal-info {
  background: #e91e63;
  color: #fff;
  font-weight: bold;
  padding: .75em;
  text-align: center;
  margin: 1rem 0;
}

/* ======================================================
   9. ORIGINAL vs. DISCOUNTED PRICE (if used elsewhere)
   ====================================================== */
.vc2-price-original   { text-decoration: line-through; color: #777; margin-right: .5em; }
.vc2-price-discounted { font-size: 1.25em; font-weight: bold; color: #e91e63; }


.product-slider .vc2-brand-logo, .product-slider .vc2-deal-badge, .product-slider .vc2-line-type, .product-slider .vc2-specs, .product-slider .vc2-icons, .product-slider .vc2-short, .product-slider .vc2-price-box {
	display: none !important;
}
.product-slider .vc2-card {
	width: unset !important;
	list-style: unset !important;
	  background: unset !important;
	  border: unset !important;
	  width: unset !important;
	  margin: unset !important;
	margin-right: 20px !important;
}
.product-slider .vc2-title {
	background-color: unset !important;
}
.product-slider .vc2-img-wrap img {
	padding: 10px !important;
}
.product-slider .prev-slide, .product-slider .next-slide {
	border: none !important;
}


/* .vc2-product-slider { 
	margin: 2rem auto;
} */
.vc2-product-slider .slide-item {
  text-align: center;
  padding: 0 1rem;
}
/* .vc2-product-slider .slide-item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
} */
.vc2-product-slider .slide-title {
  margin-top: .5rem;
  font-size: 12px;
  line-height: 14px;
}


.vc2-product-slider .slide-image {
  height: 140px;            /* pick whatever works for you */
  display: flex;            /* flexbox to center the img */
  align-items: center;
  justify-content: center;
  overflow: hidden;         /* hide any overflow in very wide images */
}

/* 2) ensure the img never breaks out */
.vc2-product-slider .slide-image img {
  max-height: 100%;
  width: auto;
  display: block;
}

/* 3) disable Slick’s adaptive height (so it won’t resize per slide) */
.vc2-product-slider.slick-initialized .slick-track {
  align-items: start;
}

.eelement {
	height: 25px;
	vertical-align: top;
}



.vc2-shop-wrapper {
  position: relative;
}

.vc2-shop-loader {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7);
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.vc2-shop-loader::after {
  content: '';
  width: 36px; height: 36px;
  border: 4px solid #ddd;
  border-top-color: #333;
  border-radius: 50%;
  animation: vc2-spin 0.8s linear infinite;
}

@keyframes vc2-spin {
  to { transform: rotate(360deg); }
}

.vc2-shop-wrapper.loading .vc2-shop-loader {
  display: flex;
}

.vc2-shop-wrapper .vc2-grid-holder {
  transition: opacity 0.3s ease;
}
.vc2-shop-wrapper.loading .vc2-grid-holder {
  opacity: 0.4;
  pointer-events: none;
}

.vc2-vat-switchbar {
	margin-bottom: 2px !important;
}

#vc2-vat-toggle {  
  height: 15px !important;    
  margin-bottom: 2px !important;
}
#vc2-vat-toggle::after {  
  height: 15px !important;  
  width: 15px !important;
  top: 0px !important;   
}
.vc2-vat-switch.is-active::after {
  left: calc(100% - 15px) !important;  
}
.vc2-label-vat {
	margin-bottom: 0px !important;
}
.vc2-switch-box-vat {
	height: 42px !important;
	max-height: 42px !important;
	padding: 0px !important;
	margin: 0px !important;
	background: none !important;	
}
