@charset "utf-8";
/* CSS Document */
:root{
  /* Color */
  --white:#FFFFFF;
  --soft-white:#FAFAFA;
  --light-gray:#F4F5F7;
  --navy:#1F2A44;
  --navy-80:rgba(31,42,68,.80);
  --navy-60:rgba(31,42,68,.60);
  --navy-45:rgba(31,42,68,.45);
  --blue:#4E8CCF;
  --blue-dark:#3C74B0;
  --blue-tint:#EEF4FB;
  --green:#7AAE9F;
  --green-tint:#EEF5F3;
  --line:#E6E8EC;
  --line-soft:#EEF0F3;

  /* 8px spacing grid */
  --s1:8px; --s2:16px; --s3:24px; --s4:32px; --s5:40px;
  --s6:48px; --s8:64px; --s10:80px; --s12:96px; --s16:128px;

  /* Radius */
  --r-sm:10px; --r-md:16px; --r-lg:20px; --r-pill:999px;

  /* Shadows — subtle only */
  --sh-1:0 1px 2px rgba(31,42,68,.04);
  --sh-2:0 8px 24px -14px rgba(31,42,68,.18);
  --sh-3:0 24px 60px -32px rgba(31,42,68,.28);

  --ease:cubic-bezier(.22,.61,.36,1);
  --container:1240px;
}

/*----------------
RESET CSS
-----------------*/
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:var(--soft-white);
	color:var(--navy);
	font-family:"Inter","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:16px;line-height:24px;
	-webkit-font-smoothing:antialiased;
}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin:0;padding:0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border:0;}
a{outline: none; color:inherit; text-decoration:none;}
a:hover {}
img {border:none; max-width:100%;}
li {list-style:none;}
*{box-sizing:border-box;}
.img-full{max-width:100%;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}
.forMob,.forTab, .show-mob{ display:none;}


/* ---------- Typography ---------- */
h1,h2,h3,h4{
	font-family:"Newsreader","Iowan Old Style",Georgia,serif;
	font-weight:400;
	letter-spacing:1px;
	margin:0;
	text-transform: capitalize;
}
.display{font-size: clamp(38px, 5.4vw, 68px); line-height: clamp(44px, 6vw, 74px);}
.h2{font-size: clamp(30px, 3vw, 44px); line-height: clamp(38px, 4vw, 52px);}
.h3{font-size: clamp(30px, 3.6vw, 44px); line-height: clamp(40px, 4vw, 54px)}
.h4{font-size: 20px; line-height: 24px;}
p{margin:0;}
.lead{
	    font-size: clamp(16px, 1.35vw, 17px);
    color: var(--navy-60);
    line-height: clamp(26px, 2vw, 28px);
    max-width: 100%;
}
.muted{color:var(--navy-60);}
.small{font-size:14px;}
.eyebrow{
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--blue);font-weight:600;
}
.eyebrow.green{color:var(--green);}

/* ---------- Layout ---------- */
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:24px;}
.section{padding-block:var(--s12);}
.section--tight{padding-block:var(--s10);}
.section-head{display:flex;flex-wrap:wrap;gap:var(--s3);align-items:flex-end;justify-content:space-between;margin-bottom:var(--s6);}
.stack-8{display:flex;flex-direction:column;gap:8px;}
.stack-16{display:flex;flex-direction:column;gap:16px;}
.stack-24{display:flex;flex-direction:column;gap:24px;}
.divider{height:1px;background:var(--line);border:0;margin:0;}
.center{ 
	display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

/* ---------- Buttons ---------- */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    padding: 14px 0px;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease);
    background: none;
    width: 300px;
}
.btn:hover{transform:translateY(-1px);}
.btn:active{transform:translateY(0);}
.btn--primary{background:var(--navy);color:#fff;box-shadow:var(--sh-2);}
.btn--primary:hover{background:#162034;box-shadow:var(--sh-3);}
.btn--accent{background:var(--blue);color:#fff;}
.btn--accent:hover{background:var(--blue-dark);}
.btn--ghost{border-color:var(--line);background:rgba(255,255,255,.7);color:var(--navy);}
.btn--ghost:hover{border-color:var(--navy-45);background:#fff;}
.btn--quiet{padding:12px 0;color:var(--navy-60);}
.btn--quiet:hover{color:var(--navy);}
.btn--block{width:100%;}
.btn--sm{padding:10px 18px;font-size:13.5px;}
.btn[disabled]{opacity:.45;pointer-events:none;}
.link-arrow{display:inline-flex;align-items:center;gap:8px;font-size:14.5px;font-weight:500;color:var(--navy);border-bottom:1px solid var(--line);padding-bottom:4px;transition:gap .3s var(--ease),border-color .3s var(--ease);}
.link-arrow:hover{gap:14px;border-color:var(--navy);}

/* ---------- Icons ---------- */
.ico{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;flex:none;}
.ico--sm{width:16px;height:16px;}
.ico--lg{width:24px;height:24px;}
/*-------------------------
CSS FOR HEADER
--------------------------*/
.top-fix-bar {
    margin-bottom: 80px;
    vertical-align: top;
	}
.header{
	width: 100%;
	background: #f6f6f6;
	position: relative;
	padding: 15px 0;
	vertical-align: top;
	background: rgba(250, 250, 250, .82);
	backdrop-filter: saturate(180%) blur(18px);
	-webkit-backdrop-filter: saturate(180%) blur(18px);
	border-bottom: 1px solid var(--line-soft);
	height: 80px;
	margin-top: -80px;
	top: 80px;
	}
.fixed-nav .header{
	position: fixed;
	    z-index: 99999999;
	top: 0;
	-webkit-transition: margin .3s ease-out;
    transition: margin .3s ease-out;
	margin-top:0;
	
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}
.call-us{
	float:left;
	font-size:14px;
	line-height:16px;
	letter-spacing:1px;
	text-transform:uppercase;
	margin-top:24px;
	font-weight:500;
	}
.logo{
	max-width: 210px;
	float: left;
	margin: 0;
	}
.header-btn{ float:right; width:150px; margin:20px 0 0 20px;}
	
.hdr-menu{
    float: right;
    margin-top: 11px;
	}	
ul.mainMenu{
    float: left;
    padding: 0px 0 0;
	}
ul.mainMenu li{
	display:inline-block;
	vertical-align:middle;
	position:relative;
	}
ul.mainMenu li a{
	float: left;
	color: var(--navy-60);
	font-size: 16px;
	letter-spacing: 0px;
	font-family: inherit;
	text-transform: capitalize;
	border-right: 1px solid #e1e9f4;
	padding: 0 25px;
	letter-spacing: 1px;
	}
ul.mainMenu li:last-child a{ border:none;}
ul.mainMenu li a.active{color:#f16c2a;}
.search-ic {
	display:inline-block;
	vertical-align:middle;
    -webkit-appearance: none;
    margin:3px 10px 7px 5px;
    vertical-align: middle;
	position:relative;
	z-index:10;
	}
.search{
	display:inline-block;
	vertical-align:middle;
	position:relative;
	margin-right:10px;
	}
.search input{
	position:absolute;
	right:0;
	top:-8px;
    width:0;
	height:40px;
    border:1px solid #ccc;
    outline: none;
    background: #fff;
    color: #000;
    font-size: 16px;
	padding:5px 0;
	opacity:0;
	transition:all ease 0.5s;
	}
.search input.open{
	width:200px;
	transition:all ease 0.5s;
	padding:5px 25px 5px 10px;
	opacity:1;
	}
.top-rit {
    float: right;
    margin:25px 0 0;
	}
.cart-p {
	display:inline-block;
	vertical-align:middle;
    position: relative;
    padding-right:20px;
	}
.top-bar-ic-1, .top-bar-ic-2 {
    float: right;
	}
.cart-p span {
    position: absolute;
    right: 0;
    top: -6px;
    width: 17px;
    height: 17px;
    background: #f16c2a;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    font-weight: normal;
    padding: 2px 0 0;
	}

ul.mainMenu li .dropdown-menu {
	position:absolute;
	opacity: 0;
	visibility: hidden;
	display: block;
	padding:0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	background:#fff;
	left:0;
	top:15px;
	width:250px;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
	border: 1px solid rgba(0,0,0,0.1);
	border-radius:5px;
	overflow:hidden;
	z-index:99;
	}
ul.mainMenu li:hover > .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(18px);
	-webkit-transform: translateY(18px);
	-ms-transform: translateY(18px);
	}
ul.dropdown-menu li{
	width:100%;
	background:none;
	padding:0;
	}
ul.dropdown-menu li a{
	font-size:16px;
	line-height:18px;
	width:100%;
	text-align:left;
	padding:14px 10px;
	text-align:left;
	font-weight:500;
	text-transform:capitalize;
	letter-spacing:0.5px;
	}
ul.dropdown-menu li a:hover{
	background: #f16c2a;
	color:#fff;
	}

/*MOBILE MENU CSS*/
.mob-mnu-ic{
    cursor: pointer;
    position:absolute;
    right: 10px;
    top: 30px;
	z-index:16;
	height:30px;
	}
.mob-mnu-ic button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	margin:0;
	}
.mob-mnu-ic span{
	color:#fff;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width: 30px;
	height: 4px;
	background-color: #3a3a3c;
	transition: 0.4s;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 6px 0;}

.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-7px, 6px);
	transform: rotate(-45deg) translate(-7px, 6px);
	background:#3a3a3c;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -7px);
	transform: rotate(45deg) translate(-8px, -7px);
	background:#3a3a3c;
	}
	
.mobilemenu{
	left:0;
	position:fixed;
	top:67px;
	background:rgba(255,255,255,1);
	z-index:3;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top:1px solid #ccc;
	}
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #CCC;
	}
.mobilemenu li a{
	float: left;
	width: 100%;
	padding: 15px 20px;
	font-size: 16px;
	color: #000;
	letter-spacing: 1px;
	}

/* ---------- Hero ---------- */
.hero{
	position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: url(../images/hero-family.webp) no-repeat center top;
    background-size: cover;
}
.hero__glow{position:absolute;border-radius:50%;filter:blur(90px);opacity:.5;pointer-events:none;}
.hero__glow--a{width:520px;height:520px;background:rgba(78,140,207,.20);top:-180px;left:-140px;}
.hero__glow--b{width:460px;height:460px;background:rgba(122,174,159,.18);bottom:-220px;right:-120px;}
.hero__grid{position:relative;display:grid;grid-template-columns:1fr; align-items:center;}
.hero__copy{max-width:640px;}
.hero__copy .display{ margin: 20px 0;}
.hero__cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:var(--s5);}
.hero__proof{display:flex;flex-wrap:wrap;gap:var(--s4);margin-top:var(--s6);padding-top:var(--s4);border-top:1px solid var(--line);}
.hero__proof div span{ display: block; font-family: "Newsreader", Georgia, serif; font-size: 20px; line-height: 28px;}
.hero__proof div small{font-size:13px;color:var(--navy-60);}
.hero__media{position:relative;}
.hero__photo{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-3);border:1px solid var(--line-soft); aspect-ratio: 4 / 4;}
.hero__photo img{width:100%;height:100%;object-fit:cover;}
.hero__inset{position:absolute;right:-18px;bottom:-34px;width:190px;border-radius:var(--r-md);overflow:hidden;border:6px solid var(--soft-white);box-shadow:var(--sh-2);background:#fff;}
.hero__inset img{height:170px;width:100%;object-fit:cover;}
.badge-float{
  position:absolute;display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.78);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.9);box-shadow:var(--sh-2);
  border-radius:var(--r-md);padding:12px 16px;font-size:13px;font-weight:500;
  animation:float 7s ease-in-out infinite;
}
.badge-float svg{color:var(--blue);}
.badge-float small{display:block;font-weight:400;font-size:11.5px;color:var(--navy-60);}
.badge-float--a{top:26px;left:-26px;}
.badge-float--b{bottom:96px;left:-40px;animation-delay:-3.5s;}
.badge-float--b svg{color:var(--green);}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}
@media(prefers-reduced-motion:reduce){.badge-float{animation:none}}
@media(max-width:980px){
  .hero__grid{grid-template-columns:1fr;gap:var(--s8);}
  .badge-float--a{left:auto;right:16px;top:16px;}
  .badge-float--b{left:16px;bottom:16px;}
  .hero__inset{display:none;}
}

/* ---------- Marquee / trust strip ---------- */
.trustbar{border-block:1px solid var(--line);background:var(--white);}
.trustbar__inner{display:flex; gap:var(--s6);justify-content:space-between;padding-block:var(--s3);}
.trustbar__item{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--navy-60);}
.trustbar__item img{ max-width:16px;}	

/* ---------- Feature cards (Why choose) ---------- */
.grid-why{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--s3);}
@media(max-width:1040px){.grid-why{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.grid-why{grid-template-columns:1fr;}}
.card-why{
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 250px;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card-why:hover{transform:translateY(-4px);box-shadow:var(--sh-2);}
.card-why__ico{    
	width: 70px;
    height: 70px;
    border-radius: 14px;
    background: var(--blue-tint);
    color: var(--blue);
    display: grid;
    place-items: center;
    padding: 10px;
}
.card-why__ico img{ max-width:40px;}
.card-why p{font-size:14px;color:var(--navy-60);line-height:1.65;}
.card-why__no{margin-top:auto;font-size:12px;letter-spacing:.14em;color:var(--navy-45);}

/* ---------- Editorial split ---------- */
.editorial{display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;}
.editorial--flip{grid-template-columns:.85fr 1.15fr;}
.editorial__img{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line-soft);box-shadow:var(--sh-2); aspect-ratio:4/4}
.editorial__img img{width:100%;height:100%;object-fit:cover;}
.editorial__list{list-style:none;margin:var(--s4) 0 0;padding:0;display:flex;flex-direction:column;gap:14px;}
.editorial__list li{ display: flex; gap: 12px; font-size: 17px; color: var(--navy-60); text-transform: capitalize; align-items: center;}
.editorial__list img{ max-width:20px;}
@media(max-width:900px){
  .editorial,.editorial--flip{grid-template-columns:1fr;gap:var(--s5);}
  .editorial__img img{height:100%;}
}

/* ---------- Product cards ---------- */
.grid-products{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--s3);}
.grid-products--2{grid-template-columns:repeat(2,1fr);gap:var(--s4);}
@media(max-width:1040px){.grid-products{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.grid-products,.grid-products--2{grid-template-columns:1fr;}}

.card-product{
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 14px 14px 20px;
	display: flex;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
	gap: 15px;
}
.card-product:hover{transform:translateY(-4px);box-shadow:var(--sh-3);border-color:var(--line-soft);}
.card-product__media{position:relative;border-radius:var(--r-md);overflow:hidden;background:var(--light-gray);}
.card-product__media img{width:100%;aspect-ratio:1/1;object-fit:cover;transition:transform .8s var(--ease);}
.card-product:hover .card-product__media img{transform:scale(1.045);}
.tag{position:absolute;top:12px;left:12px;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border:1px solid var(--line);border-radius:var(--r-pill);padding:5px 12px;font-size:11px;letter-spacing:.06em;text-transform:uppercase;font-weight:600;}
.tag--green{color:#4d7f70;border-color:#d8e7e2;background:rgba(238,245,243,.92);}
.wish{position:absolute;top:10px;right:10px;width:36px;height:36px;border-radius:var(--r-pill);border:1px solid var(--line);background:rgba(255,255,255,.9);display:grid;place-items:center;cursor:pointer;opacity:0;transform:translateY(-4px);transition:all .35s var(--ease);}
.card-product:hover .wish{opacity:1;transform:translateY(0);}
.wish.is-on{color:#c2596a;border-color:#eccdd3;}
.wish.is-on svg{fill:currentColor;}
.quickview{
  position:absolute;left:12px;right:12px;bottom:12px;opacity:0;transform:translateY(10px);
  transition:all .4s var(--ease);
  background:rgba(255,255,255,.82);backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.9);
  border-radius:var(--r-pill);padding:11px;text-align:center;font-size:13.5px;font-weight:500;cursor:pointer;
}
.card-product:hover .quickview{opacity:1;transform:translateY(0);}
.card-product__body{padding:18px 6px 0;display:flex;flex-direction:column;gap:9px;flex:1;}
.card-product__cat{font-size:11.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--navy-45);}
.card-product__title{font-family:"Newsreader",Georgia,serif;font-size:19px;}
.card-product__feat{ font-size: 14px; color: var(--navy-60); line-height: 24px;}
.rating{display:flex;align-items:center;gap:7px;font-size:12.5px;color:var(--navy-60);}
.stars{display:inline-flex;gap:2px;color:#D9A441;}
.stars svg{width:13px;height:13px;fill:currentColor;stroke:none;}
.price{display:flex;align-items:baseline;gap:9px;margin-top:2px;}
.price b{font-size:18px;font-weight:600;letter-spacing:-.01em;}
.price s{font-size:13.5px;color:var(--navy-45);}
.card-product__body .btn{margin-top:auto;padding-top:11px;padding-bottom:11px;}
.card-product__body .price{margin-bottom:14px;}

/*==========footer============*/
.footer{
	float: left;
    width: 100%;
    padding: 45px 0 35px;
	background: #f1f1f1;
	}
.footer-sec {
	float: left;
	width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr 3fr;
}
.ftr-logo, .ftr-box1 {
    float: left;
    text-align: left;
    padding: 20px;
}
.ftr-logo img{
	display:inline-block;
	vertical-align:middle;
	max-width:60%;
	}
.ftr-logo p{
	float:left;
	width:100%;
	font-size:15px;
	line-height:24px;
	color:#2d2d2d;
	margin-top:20px;
	}
.ftr-box1{}
.ftr-box2 {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.ftr-p1{
	font-size: 20px;
    line-height: 20px;
    color: var(--navy);
    font-weight: 500;
    width: 100%;
    float: left;
    font-family: "Newsreader", Georgia, serif;
	}
.ftr-tags {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    justify-content: flex-start;
    margin-top: 10px;
    column-gap: 9px;
}
.ftr-tags a {
    display: inline-block;
    color: #113e81;
    box-shadow: 1px 1px 10px #ccc;
    padding: 4px;
}
ul.ftr-list{
	float: left;
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    row-gap: 6px;
	}
ul.ftr-list li{
	float: left;
    width: 100%;
    font-size: 15px;
    color: #2d2d2d;
    line-height: 26px;
}
.ftr-p2{
	font-size:15px;
	line-height:22px;
	color:#3a3a3a;
	width: 100%;
    float: left;
	}
.cards{
	float:left;
	margin-top:15px;
	max-width:100%;
	}
.ftr-box4{}
.footer-txt{
	float:left;
	width:100%;
	padding-top:30px;
	border-top:1px solid #bdcaba;
	margin-top:40px;
	}
.ftr-txt1 {
    float: left;
	width:100%;
    font-size: 16px;
    line-height: 22px;
    color: #626262;
    text-align: center;
	padding:0 30px;
	}
.ftr-txt2 {
    float: left;
	width:100%;
    font-size: 16px;
    line-height: 22px;
    color: #626262;
    text-align: center;
	margin-top:20px;
	}
/* ---------- Page banner ---------- */
.banner{   
	background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}
.banner__glow{position:absolute;width:520px;height:520px;border-radius:50%;filter:blur(100px);background:rgba(78,140,207,.14);top:-260px;right:-120px;}
.banner__inner{position:relative;display:flex;flex-wrap:wrap;gap:var(--s5);align-items:flex-end;justify-content:space-between;}
.crumb{ font-size: 12.5px; color: var(--navy-45); display: flex; gap: 8px; align-items: center; line-height: 12px;}
.crumb a:hover{color:var(--navy);}
/*====================
CONTACT_SECTION
==========================*/
.contact-sec {
	float:left;
	width:100%;
	background:#fff;
	padding:80px 0;
	}
ul.contact-list{
	float: left;
	width: 100%;
	margin-top: 40px;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	flex-wrap: balance;
	gap: 30px;
	}
ul.contact-list li{
	display: inline-block;
    vertical-align: top;
    border-right: 1px solid #e5e4e4;
	}
ul.contact-list li:last-child{ border:none;}	
ul.contact-list li img{
	display: inline-block;
    vertical-align: middle;
    margin: 0 0 10px;
	}
ul.contact-list li p{
	float: left;
    width: 100%;
    font-weight: 400;
    padding: 0 9px;
    font-size: clamp(16px, 1.35vw, 17px);
    color: var(--navy-60);
    line-height: clamp(26px, 2vw, 28px);
    max-width: 100%;
	}				
ul.contact-list li p span{
	float: left;
    width: 100%;
    font-size: 24px;
    color: var(--navy);
    margin: 10px 0;
    font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
	}
.cntct-form{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	text-align:center;
	margin-top:70px;
	}
.cntct-form .contact-img {
    border-radius: 20px;
    max-width: 100%;
}


/*===========================================
PRODUCT DETAILS PAGE
==============================================*/
.prdcts-details-s1{
	width: 100%;
	padding: 80px 0;
	background: linear-gradient(150deg, #fff 50% 50%, #fff 50% 50%);
	display:inline-block;
}
.prdcts-mid{
	background: linear-gradient(90deg, #fff 40% 40%, #fff 40% 40%);
    float: left;
    width: 100%;
    padding: 0px 0;
    border-radius: 0px;
    box-shadow: 0px 0px 0px #333;
	display: grid;
    grid-template-columns: 1fr 1fr;
	gap:50px;
	}
.prodSlider-Left{
	float: left;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--light-gray);
	padding: 20px;
	position: sticky;
	top: 120px;
	height: 580px;
}
.prd-det-rgt{
	float:right;
	text-align:left;
}
.prd-det-rgt small{
	font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy-45);
}
.prd-det-rgt h2{ margin-top:10px; font-size: clamp(26px, 3vw, 44px); line-height: clamp(34px, 4vw, 52px);}
.prd-det-rgt .lead{ margin:20px 0;}
.comn-hdg {
    color: #1b2e35;
    font-size: 38px;
    line-height: 48px;
    padding-bottom: 0px;
    font-weight: 700;
    text-transform: capitalize;
}
.s1-p2 {
    font-size: 18px;
    line-height: 27px;
    float: left;
    width: 100%;
    margin: 18px 0 15px;
}
.prd-txt1 {
	float: left;
	width: 100%;
	font-size: 22px;
	line-height: 38px;
	color: var(--navy);
	margin-top: 0px;
	font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
	font-weight: 500;
}
ul.prd-det-list{
	float: left;
    width: 100%;
    margin: 10px 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    row-gap: 2px;
}
ul.prd-det-list li{
	font-size: 15px;
	line-height: 30px;
	width: 100%;
	float: left;
	position: relative;
	text-align: left;
	margin-bottom: 0;
	font-weight: 400;
	color: var(--navy-60);
	border-bottom: 1px solid var(--line);
	padding: 10px 0px;
}
ul.prd-det-list li span {
	float: left;
    width: 48%;
    font-weight: 700;
    margin-right: 5px;
	}
.prd-det-prc{
	font-size: 40px;
    line-height: 44px;
    color: #538b01;
    font-weight: 500;
    float: left;
    width: 100%;
    margin: 20px 0;
}
.chk-s1-txt1{ display:none;}

.pkg-sec{
	float: left;
	width: 100%;
	display: flex;
    flex-direction: column;
    gap: 12px;
    margin-block: var(--s3);
	}
.pkg-bx{
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 18px;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: all .3s var(--ease);
	}
.pkg-bx.addprice{
	border:2px solid #4e8cd9;
	animation: shadow-pulse 0.5s infinite;
	}
.pkg-bx:hover{
	animation: shadow-pulse 0.5s infinite;
 	border:2px solid #4e8cd9;  
 	-webkit-box-shadow: 0 9px 4px rgba(0,0,0,0.2);
	box-shadow: 0 0 9px 4px rgba(0,0,0,0.2); 
	}
p.price {
    font-size: 36px;
    line-height: 36px;
    font-weight: bold;
    color: #0a0a0a;
    display: inline-block;
    vertical-align: middle;
}
.pkg-bx1{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	top:-2px;
	}
.jar-txt{
	font-size: 22px;
	line-height: 20px;
	font-weight: 500;
	color: var(--navy);
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
	width: 100%;
	font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
	}
.pck-prc {
        float: left;
    width: 100%;
    font-size: 26px;
    color: var(--navy);
    margin-top: 0px;
    font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
    font-weight: 500;
    text-align: right;
}	

/****************************************/
.thank-you {
    min-height: 38vh;
    text-align: center;
    padding: 50px 0;
	float:left;
	width:100%;
}
.thnx-txt1 {
   display: inline-block;
    width: 100%;
    font-size: 40px;
    line-height: 55px;
    font-weight: 600;
    color: #2fa999;
    margin-bottom: 10px;
}
.thnx-txt2 {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

/*TERMS- PRIVACY*/
.tems_bg {
	float: left;
	width: 100%;
	padding: 40px 0;
}
.trm-bx {
	background: #fff;
	width: 100%;
	float: left;
	text-align: left;
}
.trm-bx h1 {
	line-height: 30px;
    color: #333;
    margin: 0;
    padding: 0px 0 10px;
    font-size: 22px;
    float: left;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 5px solid #333;
}
.trm-bx h3 {
	line-height: 28px;
	text-align: left;
	font-size: 24px;
	float: left;
	width: 100%;
	margin: 0px 0 15px;
	color: #000;
	font-weight: 600;
}
.trm-bx li {
	font-size: 16px;
    line-height: 24px;
    float: left;
    width: 100%;
    list-style: decimal;
}
.trm-bx ol li {
    list-style: lower-roman;
}
.trm-bx li ol li {
    list-style: lower-alpha;
}
.trm-bx strong {
	text-transform: capitalize;
}
.trm-bx span {
	text-transform: capitalize;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}
.trm-bx p {
	font-size: 16px;
	line-height: 26px;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	font-weight: 400;
}
.trm-bx h4, .trm-bx h5 {
	    font-size: 22px;
    float: left;
    width: 100%;
    margin: 0px 0 10px;
    font-weight: 500;
    line-height: 30px;
}
.ingr-lst h4 {
    text-align: center;
}
.ingr-lst img {
    display: block;
    margin: 0 auto 20px;
    max-width: 530px;
    width: 100%;
}
.trm-bx h5 {
	font-size: 20px;
	font-weight: 500;
}
.privacy-list {
	padding: 0 0 0 30px
}
.privacy-list li {
	font-weight: bold;
}
.privacy-list li p {
	font-weight: normal;
	margin-top: 10px;
}
.mrg-tp {
	margin: 15px 0 !important;
	float: left;
	width: 100%
}
.trm-txt {
	float: left;
	width: 100%;
	background: #fff;
	padding: 20px 20px
}
.disclr-bx {
	border: 2px solid #000;
	padding: 10px;
	font-weight: 500;
	float: left;
	width: 100%;
	margin: 0;
}
.disclr-bx p {
	margin-bottom: 0;
	font-weight: bold;
}
.trm-bx ol, .trm-bx ul {
	margin-bottom: 20px;
    float: left;
    width: 100%;
    font-weight: 400;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.trm-bx .disclmr {
	width: 100% !important;
}
.trm-bx table {
    float: left;
    width: 100%;
    border-collapse: collapse;
}
.trm-bx table td, .trm-bx table th {
    padding: 14px;
    border: 1px solid #ccc;
}
/********************************/
.age-pop-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0
}
.pop-up-bg {
	    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    margin: 0px;
    padding: 0px;
    z-index: 9999600;
    border: 0px;
    opacity: 0.3;
    background: #000;
}
.pop-up-bg-in {
	position: fixed;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    background: #000;
    transition: left 1s ease 0s;
    z-index: 10000010;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
}
.pop-up-left {
	width: 100% ;
	height: 100% ;
	position: fixed ;
	left: 0px ;
	top: 0px ;
	border: 0px;
	background-color: rgb(0, 0, 0) ;
	display: none ;
	opacity: 0.8 ;
	z-index: 10000001 ;
}
.pop-up-left-txt {
	font-size: 16px;
    box-sizing: initial;
    overflow-wrap: break-word;
    transition: left 1s ease 0s;
    display: flex;
    text-align: left;
    padding: 20px;
    line-height: 24px;
    color: #fff;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
	flex-wrap: wrap;
}
.pop-innr {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 200px);
}
.pop-btn {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
}
.pop-up-left-txt span{
	font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
	}
.pop-up-left-txt a{ text-decoration:underline;     display: inline-block; color: #fff}
.yes-btn, .no-btn {
    cursor: pointer;
    margin-top: 10px;
    height: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    outline: none;
    box-shadow: none;
   	background: #293d6f;
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 5px;
    border: none;
}
.no-btn {
    background: #333;
}

.error-hed {
    color: red;
    font-size: 32px;
}
.card-error {
    max-width: 250px;
    margin-bottom: 20px;
}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal.is-in{opacity:1;transform:none;}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none;}}

