selector {
font-family:'monsterrat';
}

body::before {
    display: none !important;
}

#header-cta {
	background-color: #010B75;
}
#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: #FFFFFF;
}
#cta-2 {
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}
#cta-3 {
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}
#cta-4 {
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}
#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(25px, 7vw, 55px);
  margin-bottom: 10px;
  font-weight: 600;
  max-width: 20ch;
}
/* Typography */
.slide h3 {
  font-size: clamp(20px, 6vw, 40px);
  margin-bottom: 10px;
  font-weight: 400;
  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: #E30613;
  color: #fff;
  text-decoration: none;
  border-radius: 0px!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;
  }
}
#product-row {
	background-color: #F5F5F5;
}
#product-row { padding: 50px 50px 50px 50px; }
#product-row {
font-family:'montserrat';
display:grid;
grid-template-columns:1fr 3fr;
gap:20px;
}
@media (max-width:767px) {
#product-row {
  display: flex!important;
  grid-template-columns: 1fr!important;
  gap: 1rem;
}
}
@media (max-width:480px) {
#product-row {
padding:25px;
}
}
#images-col { padding: 0 0 0 0; }
#images-col {
    position: sticky;
    top: 20px; /* adjust how far from the top you want it */
    align-self: flex-start; /* important inside flex layouts */
    z-index: 10;
}
@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; }
}
.el-NwPTgpPfg {
	color: #FFFFFF;
}
.el-NwPTgpPfg {
padding:20px;
background-color:#010B75;
}
.el-oTHqHbSoI { padding: 25px 25px 25px 25px; }
.el-oTHqHbSoI a {
text-decoration:none;
color:black;
line-height:3em;
}
#logos {
	text-align: center;
}
#logos { padding: 25px; }
#product-details {
	background-color: #FFFFFF;
}
#product-details { padding: 0px 25px 25px 25px; }
@media (min-width:768px) and (max-width:992px) {
	#product-details { padding: 0px 0px 0px 0px; }
}
@media (max-width:768px) {
	#product-details { padding: 25px 25px 25px 25px; }
}
#product-img {
	text-align: center;
	background-color: #FFFFFF;
}
#product-img { padding: 0 0 20px 0; }
@media (min-width:981px) {
#product-img {
width:
}
}
#product-title {
	font-size: 24px;
	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;
}
.el-VhJCyHHQo {
	font-size: 14px;
	line-height: 24px;
}
.el-VhJCyHHQo { padding: 25px 0 0 0; }
.el-uRRWjSNHb {
	background-color: #F5F5F5;
}
.el-lNKUlCzSG {
	text-align: center;
	color: #000000;
	background-color: #F5F5F5;
	font-size: 40px;
	font-weight: 700;
}
.el-lNKUlCzSG { padding: 0 0 50px 0; }
.el-lNKUlCzSG {
font-family:'montserrat';
}
#cat-section {
	background-color: #F5F5F5;
}
#cat-section { padding: 0px 50px 50px 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; }
}
.el-REReSRMQG {
	text-align: center;
	font-weight: 600;
}
.catbox-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.catbox-new {
    height: 400px;
    background: var(--cat-img) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}
/* Remove gradient since the red bar replaces it */
.catbox-new::after {
    display: none;
}
/* Full-width red bar */
.catbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E3061399; /* adjust red as needed */
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}
/* Text styles */
.cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rangetitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
/* Hover effect: slightly darker red */
.catbox-link:hover .catbox-overlay {
    background: #b9020c99;
}
.el-mvBHRgGfd {
	text-align: center;
	font-weight: 600;
}
.catbox-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.catbox-new {
    height: 400px;
    background: var(--cat-img) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}
/* Remove gradient since the red bar replaces it */
.catbox-new::after {
    display: none;
}
/* Full-width red bar */
.catbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E3061399; /* adjust red as needed */
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}
/* Text styles */
.cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rangetitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
/* Hover effect: slightly darker red */
.catbox-link:hover .catbox-overlay {
    background: #b9020c99;
}
.el-drtwpHgde {
	text-align: center;
	font-weight: 600;
}
.catbox-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.catbox-new {
    height: 400px;
    background: var(--cat-img) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}
/* Remove gradient since the red bar replaces it */
.catbox-new::after {
    display: none;
}
/* Full-width red bar */
.catbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E3061399; /* adjust red as needed */
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}
/* Text styles */
.cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rangetitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
/* Hover effect: slightly darker red */
.catbox-link:hover .catbox-overlay {
    background: #b9020c99;
}
.el-mYdsKIEaJ {
	text-align: center;
	font-weight: 600;
}
.catbox-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.catbox-new {
    height: 400px;
    background: var(--cat-img) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}
/* Remove gradient since the red bar replaces it */
.catbox-new::after {
    display: none;
}
/* Full-width red bar */
.catbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E3061399; /* adjust red as needed */
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}
/* Text styles */
.cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rangetitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
/* Hover effect: slightly darker red */
.catbox-link:hover .catbox-overlay {
    background: #b9020c99;
}
.el-ghPbHElkM {
	text-align: center;
	font-weight: 600;
}
.catbox-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.catbox-new {
    height: 400px;
    background: var(--cat-img) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}
/* Remove gradient since the red bar replaces it */
.catbox-new::after {
    display: none;
}
/* Full-width red bar */
.catbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E3061399; /* adjust red as needed */
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}
/* Text styles */
.cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rangetitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
/* Hover effect: slightly darker red */
.catbox-link:hover .catbox-overlay {
    background: #b9020c99;
}
.el-QbsPkKKbq {
	text-align: center;
	font-weight: 600;
}
.catbox-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.catbox-new {
    height: 400px;
    background: var(--cat-img) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}
/* Remove gradient since the red bar replaces it */
.catbox-new::after {
    display: none;
}
/* Full-width red bar */
.catbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E3061399; /* adjust red as needed */
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: background 0.3s ease;
}
/* Text styles */
.cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rangetitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
/* Hover effect: slightly darker red */
.catbox-link:hover .catbox-overlay {
    background: #b9020c99;
}
#banners-sections {
	background-color: #F5F5F5;
}
#banners-sections { padding: 100px 50px 100px 50px; }
#banners-sections {
gap:10px;
font-family:'Montserrat';
}
.banner1-menu {
    background: var(--banner-img) center/cover no-repeat;
    padding: 50px 50px;
    position: relative;
    border-radius: 0px;
    color: #fff;
    overflow: hidden;
min-height:400px;
}
/* Optional dark overlay for readability */
.banner1-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.banner-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.banner-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.banner-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
.banner-btn {
    display: inline-block;
    background: #c40000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.banner-btn:hover {
    background: #a30000;
}
.banner1-menu {
    background: var(--banner-img) center/cover no-repeat;
    padding: 50px 50px;
    position: relative;
    border-radius: 0px;
    color: #fff;
    overflow: hidden;
min-height:400px;
}
.el-FMNtqrtcr {
	text-align: center;
}
.jd-carousel figure {
    position: relative;
    margin-right: var(--jd-carousel-margin);
    border: 0px solid #ccc;
    border-radius: 3px;
    display: flex;
padding-top:50px;
padding-bottom:0px;
}
.jd-carousel[data-visible="4"] {
    padding-bottom: 17%;
}
.el-FMNtqrtcr {
    opacity: 40%;
}
#footer-section {
	background-color: #000000;
}
#footer-section { padding: 75px 50px 75px 50px; }
#footer-section {
font-family:'montserrat';
gap:70px;
display:grid;
grid-template-columns:1fr 1.25fr 1.25fr;
border-top:3px solid red;
}
@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-VpWISgGEv img {
width:250px;
}
#about-sec { padding: 0px 25px 0px 25px; }
@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-PelIAWWnh {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 600;
}
.el-FbauWNDYV {
	color: #FFFFFF;
	font-size: 12px;
	line-height: 2em;
}
.el-FbauWNDYV { padding: 25px 0 0 0; }
#menu-sec { padding: 0px 25px 0px 25px; }
@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: left;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
}
@media (min-width:768px) and (max-width:992px) {
	#Menu {
	text-align: left;
}
}
@media (max-width:768px) {
	#Menu {
	text-align: left;
}
}
.el-PDxsMPoad {
	color: #FFFFFF;
	font-size: 12px;
	line-height: 2em;
}
.el-PDxsMPoad { padding: 25px 0 0 0; }
#jarilo-banner {
	text-align: center;
}
#jarilo-banner { padding: 25px 50px 25px 50px; }
#jarilo-banner {
font-family:'montserrat';
}
.el-qpYIyIQrC {
	font-weight: 700;
}
.el-qpYIyIQrC { padding: 25px 25px 25px 25px; }
.el-VDDQfWJtz img {
width:150px;
}