selector {
font-family:'monsterrat';
}
#header-cta {
	background-color: #000000;
}
#header-cta { padding: 10px 50px 10px 50px; }
/* Global font */
#header-cta {
    font-family: 'montserrat';
}
/* Base: always flex row */
#header-cta {
    display: flex;
    flex-direction: row !important;
    justify-content: space-evenly;
    gap: 1rem;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}
/* Base CTA items — HARD OVERRIDES */
#header-cta > div {
    flex: 0 0 auto !important;   /* prevents shrinking */
    min-width: auto !important;  /* reset theme overrides */
    max-width: none !important;
    box-sizing: border-box;
}
/* --- ≤ 990px → show 3 items --- */
@media (max-width: 990px) {
    #header-cta {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    #header-cta > div {
        min-width: 33.33% !important;
    }
}
/* --- ≤ 480px → show 2 items --- */
@media (max-width: 480px) {
    #header-cta > div {
        min-width: 50% !important;
    }
}
/* --- ≤ 300px → show 1 item --- */
@media (max-width: 300px) {
    #header-cta > div {
        min-width: 100% !important;
    }
}
#cta-1 {
	text-align: center;
	color: #FFEB00;
}
#cta-2 {
	text-align: center;
	color: #FFEB00;
}
#cta-3 {
	text-align: center;
	color: #FFEB00;
}
#cta-4 {
	text-align: center;
	color: #FFEB00;
}
#logo-menu-sec {
	text-align: left;
	background-color: #FFFFFF;
}
#logo-menu-sec { padding: 10px 50px 10px 50px; }
#logo-menu-sec {
font-family:'montserrat';
}
#logo-menu-sec {
  display: grid!important;
  grid-template-columns: 1fr 3fr!important;
  gap: 1rem;
}
@media (max-width:480px) {
#logo-menu-sec {
  display: grid!important;
  grid-template-columns: 1fr!important;
  gap: 1rem;
padding:10px;
}
}
#logo img {
height:100px;
}
@media (max-width:480px) {
#logo img {
height:75px;
}
}
@media (min-width:768px) and (max-width:992px) {
	#logo img {
height:60px;
}
}
@media (max-width:768px) {
	#logo {
	text-align: center;
}
}
#menu {
	text-align: center;
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	word-spacing: 0em;
}
#menu a {
color:black;
}
#menu a:hover {
color:grey;
}
@media (max-width:480px) {
#menu {
overflow-x:scroll;
}
#menu li {
    flex-grow: 1;
    text-align: center;
    line-height: 44px;
    width: fit-content;
    padding: 0px 10px;
}
}
#slider-sec {
font-family:'montserrat';
}
.slider {
  width: 100%;
  overflow: hidden;
  background: #111;
  color: #fff;
  position: relative;
}
/* Hide radios */
.slider input { display: none; }
/* Slides wrapper */
.slides {
  white-space: nowrap;
  font-size: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
/* Each slide */
.slide {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: min(80vh, 600px); /* prevents insane height on tiny screens */
  min-height: 380px;        /* ensures content never crushes */
  font-size: 16px;
  white-space: normal;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  position: relative;
}
/* Light overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: 1;
}
/* Vertical centering */
.slide-inner {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.slide-content {
  display: table-cell;
  vertical-align: middle;
  padding: clamp(15px, 5vw, 50px);
  position: relative;
  z-index: 2;
}
/* Typography */
.slide h2 {
  font-size: clamp(28px, 7vw, 65px);
  margin-bottom: 10px;
  font-weight: 600;
  max-width: 18ch;
}
.slide p {
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.5;
  max-width: 50ch;
}
/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffeb00;
  color: #000;
  text-decoration: none;
  border-radius: 5px!important;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transition: left 0.4s ease;
}
.btn:hover::after { left: 0; }
/* Slide movement */
#s1:checked ~ .slides { transform: translateX(0%); }
#s2:checked ~ .slides { transform: translateX(-100%); }
#s3:checked ~ .slides { transform: translateX(-200%); }
/* Dots */
.dots {
  position: absolute;
  bottom: clamp(10px, 3vw, 20px);
  width: 100%;
  text-align: center;
}
.dots label {
  width: 12px;
  height: 12px;
  background: #666;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
#s1:checked ~ .dots label[for="s1"],
#s2:checked ~ .dots label[for="s2"],
#s3:checked ~ .dots label[for="s3"] {
  background: #fff;
}
/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 6vw, 28px);
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}
.prev { left: 10px; }
.next { right: 10px; }
.prev, .next { display: none; }
#s1:checked ~ .prev[for="s3"],
#s2:checked ~ .prev[for="s1"],
#s3:checked ~ .prev[for="s2"] { display: block; }
#s1:checked ~ .next[for="s2"],
#s2:checked ~ .next[for="s3"],
#s3:checked ~ .next[for="s1"] { display: block; }
@media (max-width:600px) {
.arrow {
display:none!important;
 }
}
/* Extra tiny devices (≤350px) */
@media (max-width: 350px) {
  .slide {
    min-height: 320px;
  }
  .slide-content {
    padding: 12px;
  }
  .dots label {
    width: 10px;
    height: 10px;
  }
}
/* MOBILE SWIPE MODE ONLY */
@media (max-width: 990px) {
  /* Make the whole slider horizontally scrollable with snap */
  .slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  /* Slides in a row for swiping */
  .slides {
    display: flex;
    white-space: normal;
    width: auto;
    transform: none !important; /* disable radio translate on mobile */
  }
  .slide {
    min-width: 100%;
    scroll-snap-align: start;
  }
  /* Arrows already hidden by your existing rule */
  .arrow {
    display: none !important;
  }
}
#cat-section { padding: 100px 50px 100px 50px; }
#cat-section {
  font-family: 'Montserrat';
  display: grid;
  gap: 20px;
  /* 3 equal columns on desktop */
  grid-template-columns: repeat(3, 1fr);
}
#cat-section a {
text-decoration:none;
color:black;
}
/* When it drops to 2 columns */
@media (max-width: 900px) {
  #cat-section {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center; /* centers the 2 columns */
  }
}
/* Optional: 1 column on very small screens */
@media (max-width: 600px) {
  #cat-section {
    grid-template-columns: 2fr;
  }
}
/* Optional: 1 column on extremely small screens */
@media (max-width: 300px) {
  #cat-section {
    grid-template-columns: 1fr;
  }
}
@media (min-width:768px) and (max-width:992px) {
	#cat-section { padding: 25px 25px 25px 25px; }
}
@media (max-width:768px) {
	#cat-section { padding: 10px 10px 10px 10px; }
}
/* Parent container */
#cat1 {
  text-align: center; /* centers inline-block children */
}
/* Image hover */
#cat1 .cat-img {
  transition: transform 0.4s ease;
}
#cat1:hover .cat-img {
  transform: scale(0.98);
}
/* Text block */
#cat1 .cat-txt {
  position: relative;
  display: inline-block; /* required for underline + centering */
  text-align: center;    /* centers text inside */
}
/* Underline */
#cat1 .cat-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Hover underline */
#cat1:hover .cat-txt::after {
  transform: scaleX(1);
}
.el-jgsRbUrIc { padding: 15px; }
.el-bhgCusGlJ {
	text-align: center;
	font-weight: 600;
}
/* Parent container */
#cat2 {
  text-align: center; /* centers inline-block children */
}
/* Image hover */
#cat2 .cat-img {
  transition: transform 0.4s ease;
}
#cat2:hover .cat-img {
  transform: scale(0.98);
}
/* Text block */
#cat2 .cat-txt {
  position: relative;
  display: inline-block; /* required for underline + centering */
  text-align: center;    /* centers text inside */
}
/* Underline */
#cat2 .cat-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Hover underline */
#cat2:hover .cat-txt::after {
  transform: scaleX(1);
}
.el-dqpVDJkWM { padding: 15px; }
.el-kfgAFFUIl {
	text-align: center;
	font-weight: 600;
}
/* Parent container */
#cat3 {
  text-align: center; /* centers inline-block children */
}
/* Image hover */
#cat3 .cat-img {
  transition: transform 0.4s ease;
}
#cat3:hover .cat-img {
  transform: scale(0.98);
}
/* Text block */
#cat3 .cat-txt {
  position: relative;
  display: inline-block; /* required for underline + centering */
  text-align: center;    /* centers text inside */
}
/* Underline */
#cat3 .cat-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Hover underline */
#cat3:hover .cat-txt::after {
  transform: scaleX(1);
}
.el-NPLhtPGsa { padding: 15px; }
.el-PjGCjeoPC {
	text-align: center;
	font-weight: 600;
}
/* Parent container */
#cat4 {
  text-align: center; /* centers inline-block children */
}
/* Image hover */
#cat4 .cat-img {
  transition: transform 0.4s ease;
}
#cat4:hover .cat-img {
  transform: scale(0.98);
}
/* Text block */
#cat4 .cat-txt {
  position: relative;
  display: inline-block; /* required for underline + centering */
  text-align: center;    /* centers text inside */
}
/* Underline */
#cat4 .cat-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Hover underline */
#cat4:hover .cat-txt::after {
  transform: scaleX(1);
}
.el-tUumFaCQu { padding: 15px; }
.el-KVxrvvaJJ {
	text-align: center;
	font-weight: 600;
}
/* Parent container */
#cat5 {
  text-align: center; /* centers inline-block children */
}
/* Image hover */
#cat5 .cat-img {
  transition: transform 0.4s ease;
}
#cat5:hover .cat-img {
  transform: scale(0.98);
}
/* Text block */
#cat5 .cat-txt {
  position: relative;
  display: inline-block; /* required for underline + centering */
  text-align: center;    /* centers text inside */
}
/* Underline */
#cat5 .cat-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Hover underline */
#cat5:hover .cat-txt::after {
  transform: scaleX(1);
}
.el-WVTkAjUUd { padding: 15px; }
.el-kLptvRvNo {
	text-align: center;
	font-weight: 600;
}
/* Parent container */
#cat6 {
  text-align: center; /* centers inline-block children */
}
/* Image hover */
#cat6 .cat-img {
  transition: transform 0.4s ease;
}
#cat6:hover .cat-img {
  transform: scale(0.98);
}
/* Text block */
#cat6 .cat-txt {
  position: relative;
  display: inline-block; /* required for underline + centering */
  text-align: center;    /* centers text inside */
}
/* Underline */
#cat6 .cat-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Hover underline */
#cat6:hover .cat-txt::after {
  transform: scaleX(1);
}
.el-eEVXbtNkX { padding: 15px; }
.el-IbInxxjDK {
	text-align: center;
	font-weight: 600;
}
#product-row {
	background-color: #FFFFFF;
}
#product-row { padding: 50px 50px 50px 50px; }
#product-row {
font-family:'montserrat';
border-top:1px solid #ebebeb
}
@media (max-width:480px) {
#product-row {
padding:25px;
}
}
#images-col { padding: 50px 50px 50px 50px; }
@media (min-width:768px) and (max-width:992px) {
	#images-col { padding: 0px 0px 0px 0px; }
}
@media (max-width:768px) {
	#images-col { padding: 0px 0px 0px 0px; }
}
#product-img img {
border:1px solid #ebebeb;
padding:20px;
}
#logos {
	text-align: center;
}
#logos { padding: 25px; }
#product-details { padding: 50px 50px 50px 50px; }
@media (min-width:768px) and (max-width:992px) {
	#product-details { padding: 0px 0px 0px 0px; }
}
@media (max-width:768px) {
	#product-details { padding: 0px 0px 0px 0px; }
}
#product-title {
	font-size: 2em;
	font-weight: 700;
	text-transform: capitalize;
}
#trusted-seller-rating {
	color: #FFFFFF;
	background-color: #000000;
}
#trusted-seller-rating { padding: 10px 15px 10px 15px; 	margin: 25px 0 0 0; }
#trusted-seller-rating a {
    color: #ffeb00;
}
#trusted-seller-rating {
border-radius:5px;
width:fit-content;
}
#prod-details .jd-accordion-item label p { color: #000000!important; }
#prod-details .jd-accordion-item label { background-color: #DCDCDC; }
.jd-accordion-item label {
padding:15px;
}
.jd-accordion-item label svg {
fill:black;
}
.el-CCgmlTRlv {
gap:20px;
}
@media (min-width:768px) and (max-width:992px) {
	.el-CCgmlTRlv {
gap:0px;
}
}
#btn1 {
	font-size: 1em;
}
#btn1 {
width:1000px;
}
#btn2 {
	font-size: 1em;
}
#btn2 {
width:fit-content;
}
#main-promo {
font-family:'montserrat';
}
/* Banner wrapper (mirrors .slide) */
.promo-banner {
  width: 100%;
  height: min(80vh, 600px); /* same as slider */
  min-height: 380px;        /* same as slider */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  display: block; /* ensure visibility */
  overflow: hidden;
}
/* Overlay (same as .slide::before) */
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: 1;
}
/* Vertical centering (same as .slide-inner) */
.promo-inner {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
/* Content cell (same as .slide-content) */
.promo-content {
  display: table-cell;
  vertical-align: middle;
  padding: clamp(15px, 5vw, 50px);
  position: relative;
  z-index: 2;
}
/* Typography (identical to slider) */
.promo-content h2 {
  font-size: clamp(28px, 7vw, 65px);
  margin-bottom: 10px;
  font-weight: 600;
  max-width: 18ch;
}
.promo-content p {
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.5;
  max-width: 50ch;
}
/* Button (copied from slider) */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffeb00;
  color: #000;
  text-decoration: none;
  border-radius: 5px !important;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transition: left 0.4s ease;
}
.btn:hover::after {
  left: 0;
}
/* Extra tiny devices (≤350px) — same as slider */
@media (max-width: 350px) {
  .promo-banner {
    min-height: 320px;
  }
  .promo-content {
    padding: 12px;
  }
}
#footer-section { padding: 50px 50px 50px 50px; }
#footer-section {
font-family:'montserrat';
gap:50px;
}
@media (max-width:990px) {
}
@media (max-width:768px) {
	#footer-section { padding: 25px 25px 25px 25px; }
}
#footer-logo { padding: 0px 50px 0px 50px; }
@media (min-width:768px) and (max-width:992px) {
	#footer-logo { padding: 0 0 0 0; }
}
@media (max-width:768px) {
	#footer-logo { padding: 0 0 0 0; }
}
.el-KRguelQum img {
width:250px;
}
#about-sec { padding: 0px 50px 0px 50px; }
@media (min-width:768px) and (max-width:992px) {
	#about-sec { padding: 0 0 0 0; }
}
@media (max-width:768px) {
	#about-sec { padding: 0 0 0 0; }
}
.el-YzebETDYB {
	font-size: 20px;
	font-weight: 600;
}
.el-veRhqHAbe {
	line-height: 2em;
}
.el-veRhqHAbe { padding: 25px 0 0 0; }
#menu-sec { padding: 0px 50px 0px 50px; }
@media (min-width:768px) and (max-width:992px) {
	#menu-sec { padding: 0 0 0 0; }
}
@media (max-width:768px) {
	#menu-sec { padding: 0 0 0 0; }
}
#Menu {
	text-align: right;
	font-size: 20px;
	font-weight: 600;
}
@media (min-width:768px) and (max-width:992px) {
	#Menu {
	text-align: left;
}
}
@media (max-width:768px) {
	#Menu {
	text-align: left;
}
}
.el-wDAXAjWkt {
	text-align: right;
	line-height: 2em;
}
.el-wDAXAjWkt { padding: 25px 0 0 0; }
.el-wDAXAjWkt  a {
text-decoration:none;
color:black;
}
@media (min-width:768px) and (max-width:992px) {
	.el-wDAXAjWkt {
	text-align: left;
}
}
@media (max-width:768px) {
	.el-wDAXAjWkt {
	text-align: left;
}
}
#jarilo-banner {
	text-align: center;
}
#jarilo-banner { padding: 25px 50px 25px 50px; }
#jarilo-banner {
font-family:'montserrat';
}
.el-jWfIqgMhC {
	font-weight: 700;
}
.el-jWfIqgMhC { padding: 25px 25px 25px 25px; }
.el-pYdsIsyyV img {
width:200px;
}