@charset "utf-8";
/* CSS Document */
:root {
  /* Color */
  --white: #ffffff;
  --soft-blue: #eaf4ff;
  --navy: #273b65;
  --navy-deep: #6a4091;
  --green: #5e9b8a;
  --green-soft: #e8f2ef;
  --gray: #f6f8fa;
  --line: #e6ecf3;
  --ink: #074097;
  --muted: #6b7f93;

  /* Radius */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 24px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 2px 8px rgba(23, 59, 99, 0.04), 0 12px 32px rgba(23, 59, 99, 0.05);
  --sh-2: 0 4px 14px rgba(23, 59, 99, 0.06), 0 24px 60px rgba(23, 59, 99, 0.09);
  --sh-3: 0 30px 90px rgba(23, 59, 99, 0.16);
  --glow: 0 0 0 1px rgba(94, 155, 138, 0.5), 0 12px 36px rgba(94, 155, 138, 0.22);

  /* Type */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --pad: clamp(20px, 5vw, 64px);
  --max: 1280px;
  --nav-h: 78px;
}
/*----------------
RESET CSS
-----------------*/
body {
	margin: auto;
	padding: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--white);
	font-size: 16px;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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: #333;
	text-decoration: none;
}
a:hover {
	outline: none;
	text-decoration: none;
}
img {border: none; max-width:100%; vertical-align:middle; height:auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
}
h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}
p { margin: 0; }

.h-display { font-size: clamp(32px, 7vw, 80px); font-weight: 300; line-height: clamp(42px, 8vw, 90px); }

.h-display strong { font-weight: 700; }
.h-1 { font-size: clamp(28px, 4.4vw, 52px); font-weight: 300; line-height: clamp(36px, 5vw, 60px); text-transform: capitalize;}
.h-1 strong { font-weight: 700; }
.h-2 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.025em; }
.h-3 { font-size: 20px; font-weight: 700; line-height: 28px;}

.lede {
	font-size: clamp(16px, 1.3vw, 17px);
	color: var(--muted);
	line-height: clamp(26px, 2vw, 28px);
	font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.6;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(40px, 10vw, 100px) 0; }
.section--gray { background: var(--gray); }
.section--blue { background: linear-gradient(180deg, #f7fbff 0%, var(--soft-blue) 100%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(23, 59, 99, 0.22); }
.btn--primary:hover { background: var(--navy-deep); box-shadow: 0 18px 40px rgba(23, 59, 99, 0.3); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(94, 155, 138, 0.28); }
.btn--green:hover { box-shadow: 0 18px 40px rgba(94, 155, 138, 0.36); }
.btn--ghost { background: rgba(255, 255, 255, 0.6); border-color: rgba(23, 59, 99, 0.16); color: var(--navy); backdrop-filter: blur(12px); }
.btn--ghost:hover { background: #fff; border-color: rgba(23, 59, 99, 0.32); }
.btn--outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--outline:hover { border-color: var(--navy); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }


/*-------------------------
CSS FOR TOP LOGO BAR
--------------------------*/
.top-bar {
	float: left;
	width: 100%;
	/* background: #fff; */
	height: 78px;
	margin-top: -78px;
	position: relative;
	top: 78px;
	padding: 12px 0;
	transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
	border-bottom: 1px solid transparent;
}
.top-sec {
	float: left;
	width: 100%;
	margin-bottom: 78px;
	position: relative;
	z-index: 9;
	position: fixed;
	inset: 0 0 auto 0;
}
/*----------------
MENU BAR CSS
-----------------*/
.logo{
	float: left;
	max-width: 240px;
	margin: 0 0 0 0;
}
.menu-bar {
	margin: 18px 0 0 0;
    float: right;
}
.menu-bar li {
	float: left;
	position:relative;
}
.menu-bar li a {
	float: left;
	font-size: .85rem;
    letter-spacing: .14em;
	color: var(--ink);
    text-transform: uppercase;
	padding:0px 12px;
	transition: opacity .2s;
}

.menu-bar li a:hover, .menu-bar li a.active { opacity:.65;}
.index-bhar{
	float:left;
	width:100%;}
.index-bhar .menu-bar li a{color:#fff;}
.index-bhar .menu-bar li a:hover{opacity:.65;}
.index-bhar .logo{filter: brightness(0) invert(1);}
a.cart-top{
	float: right;
    font-size: 18px;
    line-height: 16px;
    color: #2d2d2d;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px #d2d2d2;
}

.fixed-nav {
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(180%) blur(18px);
	border-bottom-color: var(--line);
	box-shadow: 0 6px 26px rgba(23, 59, 99, 0.05);
	position: fixed;
	z-index: 99999999;
	top: 0;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top: 0;
}
.index-bhar .fixed-nav .menu-bar li a{color: var(--ink);}
.index-bhar .fixed-nav .logo{filter:none;}
.mobilemenu {
    left: 0;
    position: fixed;
    top: 80px;
    background: rgba(255, 255, 255, 1);
    z-index: 3;
    right: 0;
    bottom: 0;
    overflow: scroll;
    display: none;
    border-top: 1px solid #ccc;
}
/*-------------------------
CSS FOR top-strip
--------------------------*/
.top-strip{
	float: left;
    width: 100%;
    padding:7px 0;
	}
.top-strip p{
	font-size:18px;
	line-height:24px;
	color:#000;
	}
.top-strip2{ background:#000000;}
.top-strip2 p{color:#fff;}		
/*-------------------------
CSS FOR BANNER
--------------------------*/
/* ---------- BUTTONS (refreshed) ---------- */
.btn {
	--b-bg: var(--ink);
    --b-fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 15px 0;
    border: 1px solid var(--b-bg);
    background: var(--b-bg);
    color: var(--b-fg);
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease, color .35s ease;
    width: 330px;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.7,.0,.2,1);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; border-color: var(--accent-2); }

.btn-light  { --b-bg: #fff; --b-fg: var(--ink); }
.btn-light:hover { color: #fff; }
.btn-ghost  { --b-bg: transparent; --b-fg: var(--ink); border-color: var(--ink); }
.btn-accent { --b-bg: var(--accent); --b-fg: #fff; border-color: var(--accent); }
.btn-accent::before { background: var(--accent-2); }
.btn-block  { width: 100%; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding: calc(var(--nav-h) + clamp(40px, 6vw, 80px)) 0 clamp(80px, 9vw, 120px);
	overflow: hidden;
	background: radial-gradient(120% 90% at 50% -10%, #ffffff 20%, var(--soft-blue) 78%, #dfeeff 100%);
	text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.85;
  mix-blend-mode: multiply;
}
.hero__veil {
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 42%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%);
}
.hero__arc {
  position: absolute;
  left: 50%; bottom: -58%;
  width: 150vw; height: 100vw;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(234, 244, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}
.hero__inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 var(--pad); }
.hero .h-display { margin: 20px auto 0; }
.hero .lede { max-width: 710px; margin: 25px auto 0;}
.hero__cta {     
	display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
    z-index: 2;
    position: relative; 
}

/* Floating product composition */
.stage {
	position: relative;
	margin: clamp(30px, 5vw, 50px) auto 0;
	height: clamp(320px, 36vw, 420px);
	max-width: 1020px;
}
.stage__ring {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: min(660px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(23, 59, 99, 0.09);
}
.stage__ring--2 { width: min(880px, 96vw); border-style: dashed; opacity: 0.5; }
.stage__glow {
  position: absolute; left: 50%; top: 56%;
  transform: translate(-50%, -50%);
  width: min(540px, 70vw); aspect-ratio: 1.5;
  background: radial-gradient(50% 50% at 50% 50%, rgba(94, 155, 138, 0.16), rgba(94, 155, 138, 0) 70%);
}
.float {
  position: absolute;
  filter: drop-shadow(0 40px 50px rgba(23, 59, 99, 0.18));
  animation: bob 7s ease-in-out infinite;
}
.float img { width: 100%; height: 100%; object-fit: contain; }
.float--a { width: 30%; height: 74%; left: 3%; top: 20%; z-index: 2; animation-delay: -1.2s; }
.float--b { width: 42%; height: 96%; left: 29%; top: 2%; z-index: 3; }
.float--c { width: 32%; height: 76%; right: 1%; top: 22%; z-index: 2; animation-delay: -3.4s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--rot, 0deg)); }
}
.float--a { --rot: -6deg; }
.float--c { --rot: 5deg; }

.glass-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-1);
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
  z-index: 5;
  animation: bob 9s ease-in-out infinite;
}
.glass-chip span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.glass-chip--1 { left: 0; top: 8%; animation-delay: -2s; }
.glass-chip--2 { right: 2%; bottom: 14%; animation-delay: -5s; }

.hero__stats {
	background: #fafbfc;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(28px, 6vw, 50px);
    margin-top: clamp(20px, 4vw, 30px);
    padding: 20px 0;
    position: relative;
    z-index: 8;
    border: 1px solid rgba(23, 59, 99, 0.1);
}
.hero__stats div { text-align: center; }
.hero__stats b { display: block; font-size: 18px; font-weight: 700; color: var(--navy);  letter-spacing: 0.5px; line-height: 28px;}
.hero__stats span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Section head ---------- */
.sec-head {     
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: clamp(40px, 5vw, 50px);
}
.sec-head__text { max-width: 620px; }
.sec-head .h-1 { margin-top: 18px; }
.sec-head .lede { margin-top: 20px; max-width: 80%}

/* ---------- Feature cards ---------- */
.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--sh-1); }
.fcard__ico {
	width: 70px;
	height: 70px;
	border-radius: 10px;
	background: var(--green-soft);
	display: grid;
	place-items: center;
	color: var(--green);
	margin-bottom: 24px;
	transition: background 0.4s ease, color 0.4s ease;
}
.fcard__ico img{ max-width:50px;}
.fcard:hover .fcard__ico { background: var(--green); }
.fcard:hover .fcard__ico img{ filter: brightness(0) invert(1);}
.fcard p {
	color: var(--muted);
	font-size: clamp(15px, 1.3vw, 16px);
	line-height: clamp(24px, 2vw, 26px);
	margin-top: 10px;
}

/* ---------- Product cards ---------- */
.grid-3 { display: grid;  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; }
.center{ text-align:center;}
.hed_center{ justify-content: center;}
.step_sec .grid-2{gap: 70px; align-items: center;}
.steps::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 8%;
	bottom: 8%;
	border-left: 1px dashed rgba(23, 59, 99, 0.22);
}
.step {     
	position: relative;
	text-align: left;
	display: grid;
	gap: 24px;
	align-items: flex-start;
	grid-template-columns: 1fr 85%;
}
.step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-weight: 700; color: var(--green); font-size: 1.05rem;
  box-shadow: var(--sh-1);
  position: relative; z-index: 2;
  transition: all 0.45s var(--ease);
}
.step:hover .step__num { background: var(--green); color: #fff; transform: translateY(-4px); }
.step p {     
	color: var(--muted);
    font-size: 16px;
    margin-top: 5px;
    line-height: 26px;
}
.steps_img_box {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-2);
    aspect-ratio: 4 / 4;
	overflow:hidden;
}
.steps_img_box img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 22px 26px;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.4s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--sh-2); border-color: transparent; }
.pcard__media {
  position: relative;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, #f9fcff, var(--soft-blue));
  aspect-ratio: 4 / 3.2;
  display: grid; place-items: center;
  overflow: hidden;
  padding: 12px;
}
.pcard__media img { width: 86%; transition: transform 0.7s var(--ease); filter: drop-shadow(0 18px 26px rgba(23, 59, 99, 0.14)); }
.pcard:hover .pcard__media img { transform: scale(1.07) translateY(-4px); }
.pcard__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 6px 13px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green);
}
.pcard__quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(12px);
  transition: all 0.5s var(--ease);
}
.pcard:hover .pcard__quick { opacity: 1; transform: translateY(0); }
.pcard__quick .btn { flex: 1; padding: 11px 14px; font-size: 0.82rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-color: rgba(23,59,99,0.12); color: var(--navy); }
.pcard__quick .btn:hover { background: var(--navy); color: #fff; }
.wish {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 59, 99, 0.08);
  display: grid; place-items: center; cursor: pointer;
  color: var(--navy);
  transition: all 0.35s var(--ease);
}
.wish:hover, .wish.is-on { background: var(--green); color: #fff; border-color: transparent; }
.pcard__body { padding: 22px 4px 0; flex: 1; display: flex; flex-direction: column; }
.rating { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted); }
.stars { color: #e2a33c; letter-spacing: 1px; font-size: 0.85rem; }
.pcard__desc { color: var(--muted); font-size: 0.93rem; margin-top: 10px; line-height: 1.6; flex: 1; }
.pcard__foot {     
	display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    align-items: center;
 }
 .pcard__foot .btn{ width:auto; padding: 10px 30px;}
.price { font-size: 1.32rem; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.price s { font-size: 0.86rem; color: var(--muted); font-weight: 500; margin-left: 8px; text-decoration:none;}

.features {
    float: right;
    width: 100%;
    margin-bottom: 20px;
}
.hl {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 0;
	/* display: inline-block; */
	width: 100%;
}
.hl div {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 16px;
	color: var(--navy);
}
.hl div:before{ content:''; width:10px; height:10px; background:var(--green);}

/* ---------- Page banner ---------- */
.pbanner {
  padding: calc(var(--nav-h) + 70px) 0 62px;
  background: radial-gradient(100% 140% at 12% 0%, #fff 5%, var(--soft-blue) 95%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.pbanner_short{    padding: calc(var(--nav-h) + 20px) 0 10px;}
.pbanner::after {
  content: ""; position: absolute; right: -8%; top: -70%;
  width: 620px; height: 620px; border-radius: 50%;
  border: 1px solid rgba(23, 59, 99, 0.08);
}
.crumbs { font-size: 0.83rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--navy); }
.pbanner .h-1 { margin-top: 16px; }
.pbanner .lede { margin-top: 14px;}



/*-------------------------
CSS FOR FOOTER
--------------------------*/
footer, .foo-btm {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1d4d7f 55%, #2b6b8f 100%);
    color: #fff;
}
.foo-logo{
	display:inline-block;
	vertical-align: middle;
	max-width: 250px;
	margin-bottom:5px;
}
.ftrBox2 {
    float: left;
    width: 100%;
	background:#b34f26;
	padding:18px 0;
}
.ftr-nav {
	float:left;
    width:50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px 0 0;
	row-gap: 8px;
}
.ftr-nav li {
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    font-weight: 400;
}
.ftr-nav li a{color: #ffffff;}

ul.ftr-nav li a{color: #ffffff;}
.ftr-nav li img{    
	display: inline-block;
	vertical-align: top;
	padding-top: 6px;
}
.ftr-nav li:nth-child(2) a:hover{ color:#fff;}
.ftr-nav li:last-child{ margin-right:0;}
.other-links {
    float: right;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
}
.other-links li{
	position: relative;
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}
.other-links li a{color: #ffffff;}
.other-links li a:hover{color:#fff}
footer p, .foo-btm p {
        float: left;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    font-weight: 400;
    text-align: left;
}
footer .ftr-txt2{
    float: left;
    width: 100%;
    /* color: #000; */
    color: #ffffff;
    opacity: .75;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 20px;
	}
.ftr-txt2 a{ color: #ffffff;}	
footer p a{
	color: #2d2d2d;
	padding:0 5px;
}
.foo-btm{
    padding: 25px 0 25px 0;
    border-top: 1px solid #f4f4f4;
	background: #e7e7e7;
}
.foo-btm p{margin:0;}
/*-============================================
CSS FOR INNER PAGE
============================================-*/
.innrBreadcrm {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 14px;
    text-align: left;
    background: #a88b60;
    padding: 5px 0;
}
.innrBreadcrm a, .innrBreadcrm a:hover {color: #fff;}
.innrBreadcrm span{color: #fff;}
.prd-sec-1 {
	display: inline-block;
	width: 100%;
	padding: 60px 0;
}
.pdp {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(20px, 5vw, 72px);
    align-items: start;
}
.prd-s1-lft {
	    border-radius: var(--r-xl);
    background: linear-gradient(160deg, #fbfdff, var(--soft-blue));
    aspect-ratio: auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 8%;
    border: 1px solid var(--line);
    cursor: zoom-in;
}
.prd-slide-1{
	    display: inline-block;
    vertical-align: middle;
    max-width: 100%;}
.prd-lft-prc-box{
	float: left;
    width: 100%;
	margin:28px 0 0;
}
.prd-lft-row{
	float: left;
    width: 100%;
	padding:0 18px 0 0;
}
.prd-s1-lft-p1{
	float: left;
    color: #2d2d2d;
    font-size: 18px;
    line-height: 35px;
	text-align:left;
	position:relative;
	padding-left:65px;
	text-transform:uppercase;
}
.prd-s1-ic-1{
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
}
.prd-s1-lft-p2{
	float: right;
    color: #0d5896;
    font-size: 22px;
    line-height: 35px;
	text-align:right;
	font-weight:500;
}
.prd-s1-hr{
	float: left;
    width: 100%;
	border:none;
	height:1px;
	background-color:#d2daea;
	margin:15px 0;
}
.prd-s1-rit {
    float: right;
    text-align: left;
	    position: sticky;
    top: calc(var(--nav-h) + 24px);
}
.txt-box {
    float: left;
    width: 100%;
}
.prd-s1-p1 {
	float: left;
	width: 100%;
	font-family: var(--serif);
	color: var(--navy);
	line-height: clamp(40px, 5vw, 50px);
	font-size: clamp(32px, 4.4vw, 42px);
	font-weight: 700;
	margin-top:20px;
}
.prd-s1-p1 span {
	font-weight: 400;
	display: block;
	font-size: 18px;
	color: var(--muted);
}
.pdp__meta {     
	display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
    float: left;
}
.pill { padding: 6px 14px; border-radius: var(--r-pill); background: var(--green-soft); color: var(--green); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; }
.s1-p2 {
        font-size: 18px;
    line-height: 29px;
    color: #000000;
    font-weight: 400;
    text-align: left;
    float: left;
    width: 100%;
    margin: 12px 0 20px;
}
.s1-p2 span{
	display:block;
	font-size:23px;
	font-weight:700;
	}
.pric-box {
    float: left;
    width: 100%;
    padding-left: 0;
}
.prd-strength-row, .prd_quantity {
    width: 100%;
    margin: 0px 0 20px 0;
    float: left;
}
.prd-strength-p1 {
   font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 400;
    width: 22%;
    padding: 20px 0 0 0;
    margin: 0 10px 10px 0;
    display: inline-block;
    text-transform: uppercase;
}
.prd-strength-row .option-field {
    height: 51px;
    width: 270px;
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    text-align: left;
    padding: 10px 13px;
    outline: none;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    font-family: inherit;
}
.txt-box .price {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.pkg-label {     
	font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 10px 0 20px; 
}
.pkgs { display: grid; gap: 12px; }
.pkg {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s ease, background 0.35s ease;
}
.pkg:hover { border-color: rgba(94, 155, 138, 0.45); transform: translateY(-2px); }
.pkg.is-on {
  border-color: var(--green);
  background: linear-gradient(180deg, #fff, var(--green-soft));
  box-shadow: var(--glow);
  transform: translateY(-3px);
}
.pkg__radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line); flex: none;
  display: grid; place-items: center;
  transition: border-color 0.3s ease;
}
.pkg.is-on .pkg__radio { border-color: var(--green); }
.pkg.is-on .pkg__radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.pkg__info b { display: block; color: var(--navy); font-size: 1rem; }
.pkg__info span { font-size: 0.84rem; color: var(--muted); }
.pkg__price { margin-left: auto; text-align: right; }
.pkg__price b { display: block; color: var(--navy); font-size: 1.1rem; letter-spacing: -0.02em; }
.pkg__price s { font-size: 0.8rem; color: var(--muted); }
.badge {
  position: absolute; top: -10px; right: 18px;
  padding: 4px 11px; border-radius: var(--r-pill);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--green); color: #fff;
}
.badge--navy { background: var(--navy); }

.add-to-cart{
	display: inline-block;
	margin: 30px 0px 10px;
	width: 100%;
	text-align: center;
}
.prd-cards{display: block; margin: 5px auto 0;} 
.prd-txt1 {
    float: left;
    width: 100%;
    font-size: 25px;
    line-height: 38px;
    color: #161d25;
    font-weight: bold;
    margin-top: 0px;
}
.prd-list {
    float: left;
    width: 100%;
    padding: 2px 0 18px;
}
.prd-list li {
    float: left;
    width: 100%;
    margin: 8px 0 0;
    position: relative;
    text-align: left;
    padding-left: 20px;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    font-weight: 400;
}
.prd-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 50px;
}
.prd-list li span {
    float: left;
    margin-right: 10px;
    font-weight: 700;
    font-size: 16px;
    width: 41%;
}
a.add-to-cart.shop-btn {  display: inline-block;
    vertical-align: top;
   background-image: linear-gradient(#b45128, #c27150);
    border-radius: 5px;
    width: 200px;
    height: 39px;
    font-size: 15px;
    line-height: 39px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-top:0px;
    position: relative;
    border: 1px solid #000;}
.prd-faq-box{
    float: left;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 0 5px #d2d2d2;
    border-radius: 10px;
    padding: 25px 20px;
	background: #fff;
}
.accordion {
    float: left;
    width: 100%;
    padding: 0px 20px 15px 0px;
    font-size: 28px;
    line-height: 30px;
    color: #253f5f;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    text-align: left;
    position: relative;
}
.acdn-heading.accordion-open {border-bottom:1px solid #253f5f;}
.accordion:after{
	content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    height: 17px;
    width: 17px;
    background: url(../images/faq-plus.png) no-repeat right center;
    transition: transform 0.375s linear;
	margin-top:-8px;
}
.acdn-heading.accordion-open:after {transform: rotate(135deg);}
.acdn-content {
	float: left;
	width: 100%;
	text-align: left;
}
.acdn-content p{
	padding:6px 0;
	float: left;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #282828;
	font-weight:400;
}
.acdn-content p.blue-fnt{color:#0d5896;}
.acdn-content p span{
	    font-weight: 700;
    color: #074097;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
}
.certi-50-div{
	width:46%;
	text-align:center;
}
.prd-mbg-block{
	float:left;
	width:100%;
	padding-left:125px;
	position:relative;
}
.prd-mbg{
	position:absolute;
	left:0;
	top:10px;
	width:110px;
}
.lab-ana-p1{
	float:left;
	width:100%;
    font-size: 20px;
    line-height: 26px;
    font-weight:600;
	color:#0d5896;
	margin:8px 0 15px;
}
.lab-300-dtls{
	display:inline-block;
	max-width:100%;
	margin-bottom:6px;
}
.revw-row{
	float: left;
    width: 100%;
    padding: 0 0 0 73px;
    text-align: left;
    position: relative;
	margin:6px 0;
}
.rvw-nm {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    font-size: 25px;
    line-height: 52px;
    border: 1px solid #d3d3d3;
    background: #e3e3e3;
    border-radius: 50%;
    text-align: center;
    color: #23262d;
    font-weight: 500;
    text-transform: uppercase;
}
.rev-star{
	float: left;
    max-width: 100%;
	margin:8px 0 0;
}
.revw-tik {
    position: absolute;
    left: 37px;
    top: 35px;
}
.revw-p1, .revw-p2{
	float: left;
    width: 100%;
    font-size: 20px;
    line-height: 25px;
    color: #0d5896;
    font-weight: 500;
}
.revw-p2{
    color: #282828;
    font-weight: 500;
	margin-top:2px;
	font-size: 18px;
}
.revw-p2 span{
	color:#6b6b6b;
	font-weight:400;
	font-size:16px;
}
.revw-hr{
	float: left;
    width: 100%;
    background: #e1e1e1;
    height: 1px;
	border:none;
    margin: 8px 0;
    }
.prd-dtl-vari-cust{
	display:inline-block;
	vertical-align:middle;
	margin-left:5px;
    }
/*-============================================
CSS FOR SHOP PAGE
============================================-*/
.shop-sec-1{
	float: left;
    width: 100%;
	background:#fff;
    padding: 40px 0 50px 0;
    }
.shop-sec-1 .s2-price-div{margin-top: 0;}
.shops2-hding{background:none;margin:0;}
.s1-p2{
	font-size: clamp(16px, 1.3vw, 17px);
	color: var(--muted);
	line-height: clamp(26px, 2vw, 28px);
	font-weight: 400;
	text-align: left;
	float: left;
	width: 100%;
	margin: 20px 0;
    }
.shop-prc{
	font-weight:bold;
	font-size:40px;
	line-height:46px;
	text-align:left;
	margin:20px 0 0 0;
    }
.shop-line{
	margin:15px 0;
	height:1px;
	background:#ccc;
    }
.txt-box {
    float: left;
    width: 100%;
}
.pric-box {
    float: right;
    width: 100%;
    /* border-left: 1px solid #f5f5f5; */
    padding-left: 0;
}
.pric-box .s1-btn-bx{ margin-top:10px;}
/*-============================================
CSS FOR ABOUT PAGE
============================================-*/
.in-pg-cont .s1-p1{
	font-size: 45px;
    line-height: 50px;
}
.abt-sec-1{
	float: left;
    width: 100%;
    padding: 45px 0 70px;
}
.abt-s1-lft{
	float: left;
    width: 550px;
	text-align:left;
}
.abt-s1-lft .s4-p1{
    font-size: 23px;
    color: #2d2d2d;
}
.pad-3{padding:5px 0 12px;}
.abt-s1-ul{
	float: left;
    width: 100%;
	margin:30px 0 38px;
}
.abt-s1-ul li {
    float: left;
    background: url(../images/s2-line.png) no-repeat right bottom;
	text-align:center;
	padding:0 30px;
}
.abt-s1-ul li:last-child {background: none;}
.abt-s1-ul li:nth-child(1){padding-left:0;}
.abt-s1-ic-1{
	display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
	height: 44px;
}
.abt-s1-p1 {
    display: inline-block;
    font-size: 16px;
    line-height:18px;
    color: #2d2d2d;
}
.abt-s1-img{
	position:absolute;
	right:0;
	top:0;
}
/*-------------------------
CSS FOR SECTION 2
--------------------------*/
.abt-sec-2{
	float: left;
    width: 100%;
    padding: 50px 0;
	background:#f1f5f9;
}
.abt-s2-ul{
	float: left;
    width: 100%;
	padding:35px 95px 0;
}
.abt-s2-ul li{
	float: left;
    width: 300px;
	border:1px solid #cccccc;
	background:#fff;
	padding-bottom:20px;
}
.abt-s2-ul li:nth-child(2){margin:0 35px;}
.abt-s2-img-1{
	display:inline-block;
	max-width:100%;
	vertical-align:middle;
}
.abt-s2-p1{
	float: left;
    width: 100%;
    font-size: 25px;
    line-height: 28px;
    color: #0d5896;
    font-weight: 500;
}
.pad-4{padding:15px 5px 15px;}
.abt-s2-p-minht{
	min-height:216px;
	margin-bottom:15px;
}
.abt-s2-p2{
	float: left;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #636363;
    font-weight: 400;
	padding:5px 5px 0;
}
.abt-s2-ul li .s4-p2{padding:0 11px;}
/*-------------------------
CSS FOR SECTION 3
--------------------------*/
.abt-sec-3{
	float: left;
    width: 100%;
    padding: 50px 0 90px;
}
.abt-sec-3 .shop-btn{margin-top:55px;}
.abt-s3-lft {
    float: left;
    width: 609px;
    text-align: left;
}
.abt-s3-lft .s4-p2{width:90%;}
.abt-s3-img {
    position: absolute;
    right: 70px;
    top: 0;
}
/*-============================================
CSS FOR FAQ PAGE
============================================-*/
.faq-block{
	float: left;
    width: 100%;
	padding:10px 70px 0;
}
.faq-block .acdn-content p{
	font-size: 20px;
    line-height: 28px;
    color: #1e1e1e;
	padding:2px 0 20px;
}
.faq-block .acdn-content {padding: 0 20px;}
.faq-block .accordion {
    font-size: 22px;
    line-height: 28px;
    color: #014979;
    border-top:none;
	padding: 12px 50px 12px 20px;
	background:#f0f0f0;
	margin:9px 0;
}
.faq-block .acdn-heading.accordion-open {border-bottom: none;}
.faq-block .accordion:after {
    background: url(../images/faq-plus-new.png) no-repeat right center;
	height: 21px;
    width: 22px;
	margin-top: -10px;
}
/*-============================================
CSS FOR LAB PAGE
============================================-*/
.lab-sec-1 {
    float: left;
    width: 100%;
    padding:40px 0 60px;
}
.lab-row{
	float:left;
	width:100%;
	margin:30px 0 0;
}
.lab-btl-300{
	display:inline-block;
	max-width:100%;
	vertical-align:middle;
}
.lab-box{
	display:inline-block;
	width:540px;
	margin:0 25px;
	vertical-align:middle;
}
.lab-ul{
	float:left;
	width:100%;
	margin:20px 0 0;
}
.lab-ul li{
	display:inline-block;
	padding:0 25px;
	background: url(../images/s2-line.png) no-repeat right center;
}
.lab-ul li:last-child{background:none;}
.lab-s1-ic{
	display:inline-block;
	max-width:100%;
}
.lab-s1-p1{
	display:inline-block;
    color: #2d2d2d;
    font-size: 18px;
    line-height: 23px;
    font-weight:400;
    text-transform: uppercase;
}
.lab-ul li .s4-p2{
	color:#0d5896;
	font-weight:normal;
	line-height:23px;
	float:none;
	display:inline-block;
}
.lab-row .lab-300-dtls{
	vertical-align:middle;
	margin:0;
}
.lab-box .s4-p1{
	color:#154369;
	font-weight:bold;
}
.lab-hr{
	float:left;
	width:100%;
	height:1px;
	background:#e1e1e1;
	border:none;
	margin:50px 0 15px;
}
/*-============================================
CSS FOR REVEW PAGE
============================================-*/
.revw-container{
	float:left;
	width:100%;
	padding:30px 70px 0;
}
.revw-block{
	float:left;
	width:100%;
}
.revw-lft{
	float:left;
	width:300px;
	position:relative;
	padding:0 0 0 95px;
	text-align:left;
	background: url(../images/revw-lft-line.png) no-repeat right center;
}
.r-y-stars{
	float:left;
	max-width:100%;
	margin:5px 0 7px;
}
.marg-3{margin:5px 0;}
.revw-right{
	float:left;
	width:698px;
	position:relative;
	padding-left:42px;
	margin-left:28px;
	text-align:left;
}
.blue-clr{color:#154369;}
.marg-4{margin-bottom:4px;}
.rev-coat{
	position:absolute;
	left:0;
	top:3px;
}
.revw-container .lab-hr {margin: 30px 0;}
/*-============================================
CSS FOR CONTACT PAGE
============================================-*/
.cont-sec-1{
	float:left;
	width:100%;
	padding:60px 0;
}
.cont-box{
	float: left;
    width: 100%;
}
.cont-lft{
	float: left;
    width: 56%;
    padding: 35px 12px 35px 35px;
    text-align: left;
}
.cont-right{
	float: right;
    width: 480px;
    padding: 20px 0px 0;
}
.rgt-cont-img{
	border-radius:15px;
	}
.cont-p1{
	    float: left;
    width: 100%;
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}
.cont-ul{
	float: left;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
    margin-top: 0;
}

.cont-ul li{
	float: left;
    width: 100%;
    padding: 0 0 0 62px;
    position: relative;
    line-height: 26px;
}
.cont-ul li .s4-p2{
	font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
    display: block;
    color: var(--navy);
}
.cont-ic-1{
	    position: absolute;
    left: 0;
    top: 4px;
    filter: grayscale(1);
}
p.s4-p1 {
    float: left;
    width: 100%;
    font-size: 16px;
	color: var(--muted);
}
.cont-frm-box{
	float: left;
    width: 100%;
}
.cont-input-box{
	float: left;
    width: 100%;
    height: 50px;
    text-align: left;
    background-color: #ffffff;
    outline: none;
    margin: 15px 0;
    position: relative;
}
.cont-hlf{width: 46%;}
.cont-frm-ic-1 {
    position: absolute;
    left: 8px;
    top: 50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
}
.cont-field-all, .cont-input-box textarea {
    float: left;
    width: 100%;
	border:none;
    border-bottom: 1px solid #24334a;
    outline: none;
    height: 100%;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    padding: 0 0px 0 49px;
}
.cont-btn {
    -webkit-appearance: none;
    border: none;
    outline: none;
    margin: 30px 0 0;
    padding: 0;
    background: #547398;
	color: #fff;
    font-size: 24px;
	line-height:56px;
	padding:0 27px;
	float:left;
	border-radius:30px;
	 cursor:pointer;
}
/*===========CART_DRAWER_PAGE============*/
.drawer {
	width: 300px;
	right: 0;
	border-left: 1px solid #e5e5e5;

	-ms-transform: translateX(300px);
	-webkit-transform: translateX(300px);
	transform: translateX(300px);

	position: fixed;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	top: 0;
	bottom: 0;
	padding: 0 10px 10px;
	z-index: 22;
	color: #000000;
	background-color: #ffffff;
	transition: all ease 0.5s;
	}
.cart_open .drawer{
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
.shifter_page{transition: all ease 0.5s;}
.cart_open .shifter_page{
	-ms-transform: translateX(-300px);
	-webkit-transform: translateX(-300px);
	transform: translateX(-300px);
}	
.drawer__header {
	float:left;
	height: 70px;
	width: 100%;
	padding-top:30px;
	border-bottom: 1px solid #e5e5e5;
	}
.table-cell {
	float:left;
	width: 50%;
	font-size:18px;
	color:#2d2d2d;
	text-align:left;
	}
.cart-icon{
	float:left;
	margin:3px 10px 0 0;
	}
.cross-icon{
	float:right;
	cursor:pointer;
	width:16px;
	margin-top:4px;
	}
.drawer_row{
	float:left;
	width:100%;
	padding:20px 0 20px;
	border-bottom:1px solid #d0d0d0;
	}
.drawer-prod-lft{
	float:left;
	width:60px;
	height:60px;
	border:1px solid #d8d8d8;
	border-radius:5px;
	text-align:center;
	background:#f9f9f9;
	position:relative;
	}
.drawer-prod{
	display:inline-block;
	vertical-align:middle;
	margin-top:13px;
	max-width:80%;
	}
.drawer-prod-lft span{
	position:absolute;
	width:20px;
	height:20px;
	right:-10px;
	top:-10px;
	background:#104775;
	border-radius:50%;
	text-align:center;
	font-size:16px;
	color:#ffffff;
	line-height:17px;
	}
.drawer-prod-rght{
	float:right;
	width:200px;
	text-align:left;
	}
.drwer-prod-name{
	float:left;
	width:100%;
	font-size:14px;
	line-height:16px;
	color:#1e1e1e;
	font-weight:600;
	}
.drwer-txt1{
	float:left;
	width:100%;
	font-size:13px;
	line-height:18px;
	color:#1e1e1e;
	font-weight:400;
	}
.drwer-txt2{
	float:left;
	width:100%;
	font-size:16px;
	line-height:20px;
	color:#104775;
	font-weight:500;
	}
.drwer-txt2 a{
	float:right;
	font-size:14px;
	color:#959595;
	font-weight:400;
	}
.sub-total{
	float:left;
	width:100%;
	font-size:19px;
	line-height:27px;
	color:#1e1e1e;
	font-weight:600;
	margin-top:10px;
	text-align:left;
	}
.sub-total span{float:right;}
a.chk-btn{
    float: left;
    width: 100%;
    background: #24334a;
    color: #ffffff;
    font-size: 21px;
	line-height:21px;
    text-decoration: none;
    padding: 18px 0;
	text-align:center;
	border-radius:5px;
	margin-top:20px;
	}
a.chk-btn img{
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
	margin-top:-3px;
	}
.cards-img{
	display:inline-block;
	vertical-align:middle;
	margin-top:10px;
	max-width:100%;
}
.qsn-popup{
	position:absolute;
	right:8px;
	top:16px;
	background:#0d5896;
	color:#fff;
	text-align:center;
	border-radius:50%;
	width:20px;
	font-size:14px;
	height:20px;
	}
.qsn-popup a{ color:#fff;}
.toltip-content{
	position:absolute;
	right:-30px;
	width:500px;
	top:55px;
	background:#0d3353;
	z-index:99;
	padding:12px;
	color:#fff;
	border-radius:5px;
	text-align:left;
	font-size:14px;
	font-weight:400;
	line-height:20px;
	letter-spacing:0.5px;
	box-shadow: 0px 0 25px -5px rgba(0,0,0,0.5);
	}
.toltip-content:after{
	content:'';
	position:absolute;
	top:-11px;
	right:40px;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: 11px solid #0d3353;
	}
.close-ttp{
	position:absolute;
	right:0px;
	top:0;
	width:20px;
	height:20px;
	background:#0d5896;
	border-radius:0 5px 0 5px;
	cursor:pointer;
	line-height:20px;
	text-align:center;
	font-size:10px;
	color:#fff;
	font-family:Arial, Helvetica, sans-serif;
}
/*================checkout_section===============*/
.checkout_section{
	float:left;
	width:100%;
	padding:50px 0;
	background:#ffffff;
	}
.chk-container-box{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	max-width:1030px;
	}
.chk-left{
	float:left;
	width:62%;
	}
.steps-chk{
	float:left;
	width:50%;
	text-align:center;
	border:1px solid #d7d7d7;
	font-size:20px;
	line-height:20px;
	color:#1e1e1e;
	font-weight:400;
	background:#f6f6f6;
	padding:15px 0;
	border-radius:5px 5px 0 0;
	}
.steps-chk.actv{
	background:#0d5896;
	color:#fff;
	font-weight:500;
	}
.frmBox {
	float: left;
	width: 100%;
	padding:25px 24px;
	border:1px solid #d7d7d7;
	border-radius:0 0 5px 5px;
	text-align:left;
	border-top:none;
	}
.input-box {
	float: left;
	width: 100%;
	height: 44px;
	border: 1px solid #cfcfcf;
	text-align: left;
	padding: 0 0px 0 40px;
	border-radius: 3px;
	background-color: #ffffff;
	outline: none;
	margin:7px 0;
	position: relative;
	}
.input-box.hlf {width: 48%;}
.input-box.fr {float: right;}
.input-box.payfld {padding:0 0 0 15px;}
.fldicon {
	position: absolute;
	left: 12px;
	top: 12px;
	}
.field-all {
	float: left;
	width: 100%;
	border: none;
	outline: none;
	height: 100%;
	color: #000;
	font-size: 16px;
	padding: 0 10px 0 5px;
	font-family: inherit;
	border-radius:0 3px 3px 0;
	}
.dwn-arw {
	position: absolute;
	right: 4px;
	top: 0px;
	}
.input-box select {
	-webkit-appearance: none;
	background: url(../images/dwn-arw.jpg) no-repeat right center;
	padding: 3px 42px 0 5px;
	}
a.continue-btn{
	float:left;
	width:355px;
	max-width:100%;
	font-size: 22px;
    line-height: 50px;
    color: #24334a;
	margin-top:25px;
    letter-spacing: 1px;
    border: 2px solid #24334a;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 3px;
    position: relative;
    transition: all ease 0.2s;
	}
a.continue-btn i {
    margin: -1px 0 0 9px;
    vertical-align: middle;
    font-size: 13px;
	}
a.continue-btn:hover{
	color:#fff;
	background:#24334a;
	transition:all ease 0.2s;
	}
.cvv-img{
	float:left;
	margin:10px;
	}
/*==================*/
.chk-right{
	float:right;
	width:36%;
	background:#f7f7f7;
	padding:15px;
	}
.order-smry-hdng{
	float:left;
	width:100%;
	font-size:23px;
	line-height:26px;
	color:#104775;
	font-weight:500;
	padding-bottom:15px;
	border-bottom:1px solid #d0d0d0;
	text-align:left;
	}
.prc-p1{
	float:left;
	width:75%;
	text-align:left;
	font-size:18px;
	line-height:24px;
	color:#1e1e1e;
	margin-top:20px;
	}
.prc-p1 span{ 
	color:#4e4e4e;
	font-size:16px;
	font-weight:400;
	}
.prc-p2{
	float:right;
	width:25%;
	text-align:right;
	font-size:18px;
	line-height:24px;
	color:#1e1e1e;
	margin-top:20px;
	}
.rvw-hr {
    float: left;
    width: 100%;
    height: 1px;
    border: none;
    background: #d0d0d0;
	margin-top:20px;
	margin-bottom:0;
	}
.mrgn-10{ margin-top:12px;}
/*================Payment-section===========*/
.frmBox2{padding:20px 30px;	}
.fieldToggle {
	display:inline-block;
	vertical-align:middle;
    color: #363636;
    font-size: 18px;
    line-height: 22px;
    margin:5px 0;
    cursor: pointer;
    padding-left: 30px;
    position: relative;
	text-align:left;
	}
.fieldToggle input[type=checkbox]{
	position:absolute;
	opacity:0;
	}
.fieldToggle input[type=checkbox] + span,
.protectionHeading label input[type=checkbox] + span{
	display:inline-block;
	vertical-align:middle;
	margin-right:5px;
	width:18px;
	height:18px;
	border:1px solid #808080;
	border-radius:2px;
	position:relative;
	}
.fieldToggle input[type=checkbox] + span{position:absolute; left:0; top:3px;}
.fieldToggle input[type=checkbox]:checked + span:after{
	position:absolute;
	content:'';
	width:13px;
	height:13px;
	background:url(../images/tik-blk.png) no-repeat center center;
	background-size:100%;
	left:1px;
	top:1px;
	}
a.whats-dis {
    float: left;
    color: #257d20;
    font-size: 19px;
    margin: 17px 0 0 20px;
    text-decoration: underline;
}
.card-accept {
    float: left;
    width: 100%;
    margin: 10px 0;
    color: #2d2d2d;
    font-size: 16px;
    text-align: left;
}
.card-accept img {
    display: inline-block;
    vertical-align: middle;
}
/*****************************/
/*TERMS- PRIVACY*/

.tems_bg {
	float: left;
	width: 100%;
	padding: 40px 0;
}
.trm-bx {
	width: 100%;
    float: left;
    text-align: left;
    font-size: 15px;
    line-height: 25px;
}
.trm-bx img{ max-width:600px;}
.trm-bx h1 {
	line-height: 30px;
    color: #000000;
    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 #000000;
}
.trm-bx h3 {
	line-height: 28px;
	text-align: left;
	font-size: 24px;
	float: left;
	width: 100%;
	margin: 0px 0 15px;
	color: #000;
	font-weight: 500;
}
.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: 24px;
	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 10px;
    max-width: 630px;
    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;}
.thank-pg {
        float: left;
    width: 100%;
    text-align: center;
    padding: 30px 0
}
.thank-pg .s1-p2{
font-size: 18px;
    line-height: 28px;
    text-align: center;
    float: left;
    width: 100%;
    margin: 5px 0
}
.thank-hdg {
    float: left;
    width: 100%;
    font-size: 25px;
    margin: 10px 0;
}
.trm-bx table td, .trm-bx table th {
    padding: 14px;
    border: 1px solid #ccc;
}
.trm-bx table {
    float: left;
    width: 100%;
    border-collapse: collapse;
}


/*********************************/
.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: 14px;
    text-align: center;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    background:var(--navy);
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 50px;
    border: none;
}
.no-btn {
    background: #333;
}
.error-sec{ float:left; width:100%;text-align:center;}
.card-error {
    max-width: 250px;
    margin-bottom: 20px;
}	

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .tools .desk-only { display: none; }
  .burger { display: grid; }
  .float--a, .float--c { display: none; }
  .float--b { width: 62%; left: 19%; height: 100%; }
  .stage { height: 300px; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .steps, .trust, .fgrid { grid-template-columns: 1fr; }
  .fgrid .col-2 { grid-column: span 1; }
  .citem { grid-template-columns: 80px 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .glass-chip { display: none; }
}
