@charset "utf-8";
/* CSS Document */
:root {
  --navy: #123b4a;
  --navy-deep: #0d2c38;
  --aqua: #3fb7b0;
  --aqua-dark: #2f9b95;
  --mint: #ddf4f1;
  --mint-soft: #eef9f7;
  --white: #ffffff;
  --ink: #1b2a31;
  --muted: #5c6f77;
  --line: #e3edeb;
  --danger: #d6455d;
  --gold: #f2b84b;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(18, 59, 74, 0.06);
  --shadow: 0 12px 34px rgba(18, 59, 74, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 59, 74, 0.16);

  --grad-mint: linear-gradient(135deg, #ffffff 0%, var(--mint) 100%);
  --grad-aqua: linear-gradient(135deg, var(--aqua) 0%, #2d8f98 100%);
  --grad-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
	-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:#333; text-decoration:none;}
a:hover {outline: none; text-decoration:none;}
img {border:none; max-width:100%; vertical-align:middle;}
li {list-style:none;}
*{box-sizing:border-box;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--navy); letter-spacing: 1px;}
h1 { font-size: clamp(40px, 5.5vw, 84px); line-height: clamp(48px, 6vw, 90px); text-transform: capitalize;}
h2 { font-size: clamp(32px, 3.6vw, 48px); line-height: clamp(40px, 4vw, 56px); text-transform: capitalize; }
h3 { font-size: 1.5rem; }
p { margin: 0; }
.muted { color: var(--muted); }

/*-----------------------
MAIN CSS START
------------------------*/
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; position: relative;}
.section { padding: clamp(40px, 8vw, 100px) 0; }
.section--mint { background: var(--grad-mint); }
.section-head { margin: 0 auto 50px; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
	display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--aqua-dark);
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }	

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    border: 1.5px solid transparent;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s;
    white-space: nowrap;
    width: 330px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(18, 59, 74, 0.25); }
.btn--primary:hover { background: var(--navy-deep); box-shadow: 0 14px 30px rgba(18, 59, 74, 0.32); }
.btn--aqua { background: var(--grad-aqua); color: var(--white); box-shadow: 0 10px 24px rgba(63, 183, 176, 0.35); }
.btn--aqua:hover { box-shadow: 0 14px 30px rgba(63, 183, 176, 0.45); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(18, 59, 74, 0.25); }
.btn--ghost:hover { background: var(--mint); border-color: var(--mint); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--mint); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--block { width: 100%; }
.btn--lg {}
	
/*-----------------------
CSS FOR NAV BAR
------------------------*/	
.announce {
	background: var(--navy);
	color: var(--white);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	padding: 8px 0;
}
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-fix-bar {
	display: inline-block;
    width: 100%;
    margin-bottom: 80px;
    vertical-align: top;
	}
.nav-sec{
	float:left;
	width:100%;
	height:80px;
	margin-top:-80px;
	top:80px;
	position:relative;
	padding:15px 0;
    overflow: hidden;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}
.fixed-nav .nav-sec{
	position: fixed;
	z-index: 10;
	transition: margin .3s ease-out;
	-webkit-transition: margin .3s ease-out;
	margin-top:0;
	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);
	}
.header-inner{
	display: flex;
    align-items: center;
    justify-content: space-between;
	}
.logo{ 
	    float: left;
    max-width:180px;
    margin-top: 0px;
	}	
ul.menu-list{
	float: right;
	z-index: 1;
    position: relative;
	}
ul.menu-list li{
	float:left;
	font-size:16px;
	line-height:26px;
	position:relative;
	letter-spacing:0.5px;
	transition:all 0.3s;
	}
ul.menu-list li:after {
	position: absolute;
	content: '';
	width: 1px;
	background: #dbdbdb;
	top: 5px;
	bottom: 5px;
	right: -2px;
	}
ul.menu-list li.active a, ul.menu-list li a:hover{
	
    color: #2d2d2d;
}
ul.menu-list li:last-child:after{display:none;}	
ul.menu-list li a{	color:#2d2d2d; font-weight:400;padding: 0px 15px; transition:all 0.3s; border-radius: 0px 0px 0 0;}
ul.menu-list li a.active:hover{color:#2d2d2d;}
ul.menu-list li a:hover{ }

ul.nav-rgt{
	width:auto;
	text-align:left;
	margin:21px 20px 0 0;
	}
ul.nav-rgt li{
	display:inline-block;
	vertical-align:middle;
	font-size:17px;
	line-height:18px;
	border-radius:20px;
	color:#484848;
	
	}
ul.nav-rgt li a{
	float:left;
	width:100%;
	height:100%;
	color:#484848;
	line-height:36px;
	position:relative;
	}
ul.nav-rgt li img{
    display: inline-block;
    vertical-align: middle;
    margin: -7px 5px 0 0;	
	}
ul.nav-rgt li a span{
	float:right;
	height:100%;
	border-left:1px solid #ffe2ae;
	text-align:center;
	width:35px;
	}	
a.nav-btn{
    float: right;
	background:#ed3131;
    color: #fff;
    font-size:16px;
    text-align: center;
    width: 138px;
    height: 40px;
    line-height:38px;
	
	font-weight:600;
	margin-top:20px;
	letter-spacing:0.5px;
	}	
/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--mint-soft); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 38%, rgba(255,255,255,0.15) 70%, rgba(255,255,255,0) 100%); }
.hero__content { position: relative; max-width: 600px; padding: 80px 0; }
.hero__content h1 em { font-style: normal; color: var(--aqua-dark); }
.hero__content p { margin: 30px 0; font-size: 16px; color: var(--muted); max-width: 94%; line-height: 26px;}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__trust { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--muted); font-weight: 600; }
.hero__trust li { display: flex; align-items: center; gap: 0.45rem; }
.hero__trust li::before { content: "✓"; color: var(--aqua); font-weight: 800; }

/* ---------- Intro ---------- */
.intro { text-align: center; padding: clamp(40px, 7vw, 80px) 0; }
.intro h2 { max-width: 760px; margin: 0 auto;}
.intro h2 em { color: var(--aqua-dark); font-style: italic; }
.intro p {max-width: 90%; margin: 20px auto 0; color: var(--muted); font-size: clamp(16px, 2vw, 17px); line-height: clamp(26px, 2.5vw, 28px);}

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
	background: var(--white); border-radius: var(--radius-lg); padding: 25px;
	box-shadow: var(--shadow-sm); border: 1px solid rgba(227,237,235,0.8);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit__icon {    
	width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--mint);
    color: var(--aqua-dark);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    padding: 10px; 
}
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: clamp(22px, 2.5vw, 26px); line-height: clamp(22px, 2.5vw, 26px); margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: clamp(16px, 2vw, 17px); line-height: clamp(26px, 2.5vw, 28px); }

/* ---------- Why choose us ---------- */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4; }
.why__stat { position: absolute; left: 1.4rem; bottom: 1.4rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); padding: 1rem 1.3rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.why__stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--navy); line-height: 1; }
.why__stat span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.why__list { margin-top: 2rem; display: grid; gap: 1.2rem; }
.why__list li { display: flex; gap: 1rem; }
.check { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--mint); color: var(--aqua-dark); display: grid; place-items: center; font-weight: 800; }
.why__list h4 { 
	font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 26px); 
	line-height: clamp(22px, 2.5vw, 26px);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize; 
}
.why__list p { color: var(--muted); font-size: clamp(16px, 2vw, 17px); line-height: clamp(26px, 2.5vw, 28px); }
/* ---------- Product cards ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
	position: relative; background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow-sm); border: 1px solid var(--line);
	transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
	display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__media { 
	position: relative;
    aspect-ratio: 1 / 1;
    background: var(--mint);
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card__media img { transition: transform 0.7s var(--ease); max-width: 270px;}
.card:hover .card__media img { transform: scale(1.05); }
.tag { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.8rem; border-radius: var(--radius-pill); background: var(--navy); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tag--aqua { background: var(--aqua); }
.tag--gold { background: var(--gold); color: var(--navy); }
.card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__body h3 { font-size: 1.5rem; }
.card__body p {  color: var(--muted); font-size: 16px; flex: 1; line-height: 26px; }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }
.stars small { color: var(--muted); letter-spacing: 1px; font-weight: 600; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; gap: 0.8rem; }
.card__foot .btn{ width: 170px; padding: 10px 0; font-size: 14px;}
.price { font-weight: 800; font-size: 1.25rem; color: var(--navy); }
.price s { color: var(--muted); font-weight: 500; font-size: 14px; line-height:14px; text-decoration:none;}	

/* ---------- CTA banner ---------- */
.cta { position: relative; background: var(--grad-navy); color: var(--white); overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(63,183,176,0.45), transparent 65%); top: -280px; right: -160px; }
.cta::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(221,244,241,0.18), transparent 65%); bottom: -220px; left: -100px; }
.cta { position: relative; text-align: center; padding: clamp(4rem, 8vw, 6.5rem) 0; }
.cta h2 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 500; }
.cta h2 em { font-style: italic; color: var(--mint); }
.cta p {margin: 20px auto 35px; color: rgba(255, 255, 255, 0.78); font-size: clamp(16px, 2vw, 17px); line-height: clamp(26px, 2.5vw, 28px);}
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }	

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-mint); padding: 15px 0; text-align: left; }
.page-hero p { color: var(--muted); margin-top: 0.8rem; }
.crumbs { font-size: 13px; color: #3fb7b0; line-height: 13px;}
.crumbs a:hover { color: var(--aqua-dark); }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
.gallery { position: sticky; top: 100px; }
.gallery__main { 
	border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--mint);
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 30px;
}
.gallery__main img {}
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 0.8rem; }
.gallery__thumbs img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s; }
.gallery__thumbs img.is-active, .gallery__thumbs img:hover { border-color: var(--aqua); }
.pdp__info h1 { font-size: clamp(34px, 3.6vw, 50px); line-height: clamp(40px, 3.6vw, 56px);}
.pdp__meta { display: flex; align-items: center; gap: 1rem; margin: 0.8rem 0 1rem; flex-wrap: wrap; }
.pdp__price { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.pdp__price s { font-size: 1rem; color: var(--muted); font-weight: 500; margin-left: 0.5rem; }
.pdp__desc { 
	color: var(--muted);
    font-size: 17px;
    margin: 20px 0;
    line-height: 28px; 
}
.pdp__label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--navy); margin-bottom: 0.8rem; }
.packages { display: grid; gap: 0.8rem; margin-bottom: 1.6rem; }
.package { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 15px 20px; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--white); cursor: pointer; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.package:hover { border-color: var(--aqua); }
.package input { accent-color: var(--aqua); width: 18px; height: 18px;}
.package:has(input:checked) { border-color: var(--aqua); background: var(--mint-soft); box-shadow: 0 0 0 4px rgba(63,183,176,0.14); }
.package__name { font-weight: 700; color: var(--navy); }
.package__sub { display: block; font-size: 0.83rem; color: var(--muted); font-weight: 500; }
.package__price { text-align: right; font-weight: 800; color: var(--navy); }
.package__price s { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.package .tag { top: -0.7rem; left: 1.2rem; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.qty button { width: 44px; height: 48px; background: transparent; border: 0; color: var(--navy); font-size: 1.2rem; }
.qty button:hover { background: var(--mint); }
.qty input { width: 48px; text-align: center; border: 0; font-weight: 700; color: var(--navy); }
.pdp__buy { display: grid; grid-template-columns: 1fr; align-items: center; margin-bottom: 15px; }
.pdp__buy .btn{ width:100%;}
.pdp__buy .btn--aqua { grid-column: 1 / -1; }
.pdp__perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 1.4rem; }
.pdp__perks li { text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--muted); padding: 0.9rem 0.5rem; background: var(--mint-soft); border-radius: var(--radius-sm); }
.pdp__perks svg { width: 20px; height: 20px; display: block; margin: 0 auto 0.4rem; color: var(--aqua-dark); }

.secure {    
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: var(--muted);
	margin-top: 15px;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.secure svg { width: 16px; height: 16px; color: var(--aqua-dark);}

.included { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.included li { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.4rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.included strong {     display: block; color: var(--navy); margin-bottom: 5px; font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 26px); line-height: clamp(22px, 2.5vw, 26px); }
.included span { color: var(--muted); font-size: clamp(16px, 2vw, 17px); line-height: clamp(26px, 2.5vw, 28px); }

.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.steps__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.steps ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 1.5rem; counter-reset: step; }
.steps li { display: flex; gap: 1.2rem; counter-increment: step; }
.steps li::before { content: counter(step, decimal-leading-zero); flex: none; font-family: var(--font-display); font-size: 1.6rem; color: var(--aqua); font-weight: 600; line-height: 1; width: 2.4rem; }
.steps h4 {     
	display: block;
    color: var(--navy);
    margin-bottom: 5px;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 26px);
    line-height: clamp(22px, 2.5vw, 26px);
}
.steps p {   
	color: var(--muted);
    font-size: clamp(16px, 2vw, 17px);
    line-height: clamp(26px, 2.5vw, 28px);
}

.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.5rem; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 1.25rem 0; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--aqua); font-weight: 300; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.3rem; color: var(--muted); font-size: 0.95rem; }

.reviews-summary { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: center; background: var(--white); border-radius: var(--radius-lg); padding: 2.4rem; border: 1px solid var(--line); margin-bottom: 1.6rem; }
.reviews-summary .big { font-family: var(--font-display); font-size: 4.5rem; color: var(--navy); line-height: 1; }
.bars { display: grid; gap: 0.5rem; }
.bar { display: grid; grid-template-columns: 2.2rem 1fr 2.5rem; gap: 0.8rem; align-items: center; font-size: 0.85rem; color: var(--muted); }
.bar i { height: 8px; border-radius: 4px; background: var(--mint); overflow: hidden; display: block; }
.bar i::after { content: ""; display: block; height: 100%; width: var(--w); background: var(--aqua); border-radius: 4px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: var(--white); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.7rem; }
.review p { color: var(--ink); font-size: 0.97rem; flex: 1; }
.review__who { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--muted); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-aqua); color: var(--white); display: grid; place-items: center; font-weight: 700; }
.verified { color: var(--aqua-dark); font-weight: 700; font-size: 0.75rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact .section-head{ text-align: left; position: sticky; top: 120px;}
.contact-cards { display: grid; gap: 1rem; }
.contact-card {     
	display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); 
}
.contact-card .benefit__icon { width: 46px; height: 46px; margin: 0; flex: none; }
.contact-card strong { display: block; color: var(--navy); margin-bottom: 0.2rem; }
.contact-card span, .contact-card a { color: var(--muted); font-size: 0.92rem; display: block; }
.contact-card a:hover { color: var(--aqua-dark); }
.hours { padding: 1.5rem; background: var(--navy); color: var(--white); border-radius: var(--radius); }
.hours h4 { font-family: var(--font-body); color: var(--mint); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.8rem; }
.hours div { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours div:last-child { border: 0; }

/* ---------- Status (Card declined) ---------- */
.status { min-height: 70vh; display: grid; place-items: center; padding: 4rem 0; background: var(--grad-mint); }
.status__card { max-width: 560px; width: 100%; background: var(--white); border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.status__icon {  width: 180px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: #fdecef; color: var(--danger); padding: 10px; }
.status__icon svg { width: 38px; height: 38px; }
.status__card h1 {     font-size: clamp(24px, 3vw, 40px); line-height: clamp(30px, 3vw, 48px); }
.status__card > p { color: var(--muted); margin: 0.9rem 0 1.8rem; }
.status__reasons { text-align: left; background: var(--mint-soft); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1.8rem; font-size: 0.9rem; color: var(--muted); display: grid; gap: 0.5rem; }
.status__reasons strong { color: var(--navy); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.status__reasons li { display: flex; gap: 0.6rem; }
.status__reasons li::before { content: "•"; color: var(--aqua); font-weight: 800; }
.status__actions { display: grid; gap: 0.7rem; }
.status__help { margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted); }
.status__help a { color: var(--aqua-dark); font-weight: 700; }
		
/* ---------- Footer ---------- */
.footer { background: var(--mint-soft); border-top: 1px solid var(--line); padding: 60px 0 40px; font-size: 14px; }
.footer__grid {display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 40px; }
.footer h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.1rem; }
.footer__brand p { color: var(--muted); margin-top: 0.8rem; max-width: 320px; }
.footer li + li { margin-top: 0.55rem; }
.footer li a { color: var(--muted); transition: color 0.2s; }
.footer li a:hover { color: var(--aqua-dark); }
.newsletter { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.newsletter input { flex: 1; min-width: 0; padding: 0.8rem 1rem; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--white); }
.newsletter button { padding: 0.8rem 1.2rem; }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: 0.8rem; }
.footer__pay { display: flex; gap: 0.5rem; }
.footer__pay span { padding: 0.2rem 0.6rem; border-radius: 6px; background: var(--white); border: 1px solid var(--line); font-weight: 700; font-size: 0.7rem; color: var(--navy); }
.disclaimer { font-size: 14px; line-height: 24px; color: var(--muted); margin-top: 20px; }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.rise { animation: rise 0.9s var(--ease) both; }
.rise-2 { animation-delay: 0.12s; }
.rise-3 { animation-delay: 0.24s; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1024px) {
	.hero__content{max-width: 480px;}
	.hero__content p{ max-width: 75%;}
	.hero__trust{gap: 15px;}
	.hero__img{object-position: 40% center;}
	
	.intro p{ max-width:100%;}
	
	.products{grid-template-columns: repeat(2, 1fr);}
	
	.benefits { grid-template-columns: repeat(2, 1fr); }
	.why, .steps, .pdp, .checkout, .contact { grid-template-columns: 1fr; gap: 0; }
	.why{  gap: 30px;}
	 .pdp{ gap: 40px;}
	.gallery, .summary { position: static; }
	.included { grid-template-columns: repeat(2, 1fr); }
	.reviews { grid-template-columns: 1fr 1fr; }
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.shop { grid-template-columns: 220px 1fr; gap: 2rem; }
	.shop .products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { height: 66px; }
  .nav__links {
    position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
  }
  .nav__links a { padding: 1rem 1.25rem; border-top: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  #nav-check:checked ~ .nav__links { max-height: 320px; }
  .nav__toggle { display: block; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); cursor: pointer; padding-top: 12px; }
  .hero { min-height: auto; }
  .hero__img { object-position: 65% center; opacity: 0.1; }
  .hero::before { background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 55%, rgba(255,255,255,0.35) 100%); }
  .hero__content { padding: 50px 0; }
  .hero__content p { margin: 15px 0 20px; max-width: 100%;}
  .hero__trust{ margin-top: 30px; gap: 15px;}
  
  .intro p{ max-width: 100%; margin: 15px auto 0;}
  .section-head{margin: 0 auto 30px;}
  .products, .benefits, .shop .products, .reviews, .included { grid-template-columns: 1fr; }
  .pdp__perks {grid-template-columns: repeat(2, 1fr);}
	

  .shop { grid-template-columns: 1fr; }
  .filters { position: static; grid-template-columns: 1fr 1fr; gap: 1.2rem; padding: 1.2rem; background: var(--mint-soft); border-radius: var(--radius); }
  .filter--wide { grid-column: 1 / -1; }
  .form-row, .form-row--3 { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .shop-promo { flex-direction: column; text-align: center; }
  .panel { padding: 1.5rem; }
  .status__card { padding: 2.2rem 1.5rem; }
  .pdp__buy { grid-template-columns: 1fr; }
  .why__stat { left: 1rem; bottom: 1rem; }
  
  .contact .section-head{ position:static;}
}
					
/*--------------------PLUSE--------------------*/	
.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
 0% {
 transform: scale(0.9);
}
 50% {
 transform: scale(1);
}
 100% {
 transform: scale(0.9);
}
}
@-webkit-keyframes pulse {
 0% {
 -webkit-transform: scale(0.95);
}
 50% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: scale(0.95);
}
}


/*TERMS- PRIVACY*/
.tems_bg {
	display: inline-block;
	width: 100%;
	padding: 0px 0 0;
	background: #fff;
}
.page-header.text-center {
    float: left;
    width: 100%;
    background: #f3f3f3;
}
.trm-bx {
	background: #fff;
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 30px;
}
.trm-bx img {
    display: block;
    margin: 10px 0;
	    max-width: 660px;

}
.ingredients-pannel {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.trm-bx h1 {
	    line-height: 30px;
    color: #123b4a;
    font-size: 22px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 4px solid #2c9c96;
    padding-bottom: 5px;
}
.trm-bx h3 {
	    line-height: 28px;
    text-align: left;
    font-size: 22px;
    float: left;
    width: 100%;
    margin: 0px 0 5px;
    color: #333;
    font-weight: 600;
}
.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 li {
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
	float: left;
	width: 100%;
	list-style: disc;
}
.trm-bx strong {
	text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.trm-bx span {
	text-transform: uppercase;
}
.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: 10px 0;
	font-weight: 500;
}
.ing-blk h4 {
    text-align: center;
}
.ing-blk img {
    display: block;
    margin: 0 auto 10px;
}
.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 {
	margin: 0px;
	float: left;
	width: 100%;
	font-weight: 400;
	padding: 0 20px;
	margin-bottom: 20px;
}
.trm-bx .disclmr {
	width: 100% !important;
}

.trm-bx table {
    float: left;
    width: 100%;
    border-collapse: collapse;
	text-align:left;
}
.trm-bx table td, .trm-bx table th {
    padding: 14px;
    border: 1px solid #ccc;
}


/*----------- popup ---------------- */
a.prod-ingd.sccode {
    /* float: left; */
    /* width: 100%; */
    font-size: 18px;
    text-decoration: underline;
    padding-bottom: 20px;
    padding: 0;
    margin: 0 0 1.5rem;
    display: inline-block;
}
#pop_overlay {
	background-color: rgba(0, 0, 0, 0.6);
	clear: none;
	display: none;
	height: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}
#pop_content {
	height: auto;
	max-width:96%;
	width: 600px;
	background-color: white;
	border-radius: 4px;
	margin: 8% auto 0 auto;
	position: relative;
	text-align: center;
	padding: 30px 20px 20px 20px;
}
#pop_content_ing {
    max-width: 960px;
    background-color: white;
    border-radius: 4px;
    margin: 5% auto 0 auto;
    position: relative;
    text-align: center;
    padding: 10px 20px;
    overflow: scroll;
    width: 100%;
}

#pop_content_ing img {
    max-width: 100%;
    margin-bottom: 10px;
    display: inline-block;
}
#pop_content_ing .select-txt {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    background: #578265;
    padding: 10px 0;
    color: #fff;
}
.cross {
	position: sticky;
    cursor: pointer;
    background: rgba(255,255,255,0.7);
    padding: 10px;
	top: 0;
    float: right;
    right: 10px;
}

/********************************/
.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;
	background: rgba(0, 0, 0, 0.7);
}
.pop-up-bg-in {
	position: fixed;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    background: #0f0605;
    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: var(--navy);
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 5px;
    border: none;
}
.no-btn {
    background: #ed3131;
}
.yes-btn {
	
}	

@media(max-device-width:767px){
	.pop-innr {
    width: calc(100% - 10px);
}
	}
