@charset "utf-8";
/* CSS Document */
:root{
  --cream:        #F8F5F0;
  --cream-deep:   #F0E9DB;
  --paper:        #FFFFFF;
  --ink:          #16322B;
  --ink-soft:     #4D6660;

  --green:        #0E4B3E;
  --green-700:    #0B3C32;
  --green-100:    #DCEAE3;
  --green-50:     #EFF5F1;

  --blue:         #4BC3F2;
  --blue-100:     #E3F6FD;

  --yellow:       #F5C84C;
  --yellow-100:   #FBF0D6;
  
  --white:       #fff;
  --black:       #000;

  --coral:        #F2876B;
  --coral-100:    #FDEAE3;

  --radius-lg:    30px;
  --radius-md:    24px;
  --radius-sm:    16px;
  --radius-pill:  999px;

  --shadow-soft:  0 20px 50px -25px rgba(14,75,62,0.25);
  --shadow-card:  0 14px 34px -18px rgba(22,50,43,0.18);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --container:    1240px;
}
  
  @media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:600; color: var(--ink); }
p{ margin:0; }

:focus-visible{
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.fl{ float:left;}
.fr{ float:right;}	

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background: var(--coral);
  flex-shrink:0;
}

.section{ padding: 80px 0; position:relative; }
@media (max-width: 900px){ .section{ padding: 76px 0; } }

.section-head{
  max-width: 680px;
  margin: 0 auto 50px;
  text-align:center;
}
em.accent{
  font-style: italic;
  color: var(--green);
  position: relative;
  white-space: nowrap;
}

.smile-underline{
  display:inline-block;
  position:relative;
}
.round {max-width: 160px;}
.smile-underline svg{
  position:absolute;
  left:2%;
  bottom:-6px;
  width:96%;
  height:14px;
}

/* Buttons */
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 0;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 15px;
	border: 2px solid transparent;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
	white-space: nowrap;
	width: 310px;
}
.btn:hover{ transform: translateY(-3px); }
.btn-primary{
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 16px 30px -14px rgba(14,75,62,0.55);
}
.btn-primary:hover{ background: var(--green-700); }
.btn-ghost{
  background: transparent;
  border-color: rgba(14,75,62,0.22);
  color: var(--green);
}
.btn-ghost:hover{ border-color: var(--green); background: var(--green-50); }
.btn-light{
  background: var(--cream);
  color: var(--green);
}
.btn-light:hover{ background: var(--paper); }
.btn-yellow{
  background: var(--yellow);
  color: var(--green-700);
  box-shadow: 0 16px 30px -14px rgba(245,200,76,0.55);
}
.btn-yellow:hover{ background: #f7d469; }
.btn-sm{ padding: 11px 22px; font-size: 13.5px; }
.btn svg{ width:16px; height:16px; }
	
.topStrip{
	background: #523574;
	float:left;
	width:100%;
	padding:6px 0 8px;
	}
.topStrip p{
	float:left;
	width:100%;
	font-size:17px;
	line-height:16px;
	color:#fff;
	
	letter-spacing:0.5px;
	}
.topStrip p img{
	display:inline-block;
	vertical-align:middle;
	margin:0 5px 0 0;
	}		
	
/*-----------------------
CSS FOR NAV BAR
------------------------*/	
.top-fix-bar {
	float: left;
	width: 100%;
	margin-bottom: 70px;
	background: linear-gradient(155deg, var(--yellow) 0%, var(--coral) 100%);
	padding: 10px 0;
	}
.nav-sec{
	float: left;
	width: 100%;
	background: #fff;
	height: 80px;
	margin-top: -80px;
	top: 80px;
	position: relative;
	padding: 20px 0;
}
.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);		
	}
.logo{ 
	    float: left;
        max-width: 178px;
    margin: -7px 0 0;
}	
ul.menu-list{
	float: right;
    margin: 13px 0 0 0;
	}
ul.menu-list li{
	float:left;
	font-size:17px;
	line-height:18px;
	padding:0 15px;
	position:relative;
	
	letter-spacing:0.5px;
	}
ul.menu-list li:after{
	content:'';
	width:1px;
	background:#000000;
	top:3px;
	bottom:0px;
	position:absolute;
	right:0;
	}	
ul.menu-list li:last-child:after{display:none;}	
ul.menu-list li a{color:#000000; font-weight:400;}
ul.menu-list li a.active{color:#681ebf;}

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:#fff;
	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:#006dc7;
    color: #fff;
    font-size:16px;
    text-align: center;
    width: 138px;
    height: 40px;
    line-height:38px;
	border-radius:20px;
	
	font-weight:600;
	margin-top:20px;
	letter-spacing:0.5px;
	}	
	
/* ============================================================
   BACKDROP BLOBS (shared)
   ============================================================ */
.blob{ position:absolute; border-radius:50%; filter: blur(2px); z-index:0; pointer-events:none; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
	    position: relative;
    padding: 110px 0;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    background: linear-gradient(90deg, rgb(14 75 62), rgb(14 75 62 / 0.8)), url(../images/hero-bg.webp) center -190px no-repeat;
    background-size: cover;
}
.hero .blob-a{ width:480px; height:480px; background: radial-gradient(circle at 30% 30%, var(--blue-100), transparent 70%); top:-160px; right:-120px; }
.hero .blob-b{ width:320px; height:320px; background: radial-gradient(circle at 30% 30%, var(--yellow-100), transparent 70%); bottom:-60px; left:-100px; }

.hero-grid{
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	align-items: center;
	text-align: center;
	justify-items: center;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background: var(--paper);
  border: 1px solid rgba(14,75,62,0.12);
  padding: 9px 18px 9px 12px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight:800;
  letter-spacing: 0.1em;
  color: var(--green);
  box-shadow: var(--shadow-card);
}
.hero-badge .dot-tooth{ width:22px; height:22px; }

.hero h1{
	margin-top: 22px;
	font-size: clamp(34px, 5.4vw, 68px);
	line-height: 1.04;
	letter-spacing: -0.015em;
	line-height: clamp(40px, 5.4vw, 78px);
	color: var(--white);
}
.hero-sub{
	    margin-top: 30px;
	font-size: clamp(14px, 2vw, 17px);
	line-height: clamp(24px, 3vw, 26px);
    color: var(--white);
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top: 34px;
}
.hero-grid .hero-cta{ justify-content: center;}
.hero-proof{
	display:flex;
	align-items:center;
	gap:14px;
	margin-top: 44px;
	justify-content: center;
}
.avatar-stack{ display:flex; }
.avatar-stack span{
  width:38px; height:38px;
  border-radius:50%;
  border: 3px solid var(--cream);
  margin-left:-12px;
  overflow:hidden;
  background: var(--green-100);
}
.avatar-stack span:first-child{ margin-left:0; }
.hero-proof-text{ font-size: 14px; color: var(--white); }
.stars{ display:flex; gap:2px; margin-bottom:2px; }
.stars svg{ width:13px; height:13px; fill: var(--yellow); }

/* hero visual composition */
.hero-visual{
  position:relative;
  height: 560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.orbit-ring{
  position:absolute;
  width: 480px; height:480px;
  border-radius:50%;
  border: 1.5px dashed rgba(14,75,62,0.22);
  animation: spin 38s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes float-y{
  0%,100%{ transform: translateY(0) rotate(var(--rot,0deg)); }
  50%{ transform: translateY(-14px) rotate(var(--rot,0deg)); }
}

.hero-frame-main{
	position: relative;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: linear-gradient(155deg, var(--yellow) 0%, var(--coral) 100%);
	padding: 8px;
	box-shadow: var(--shadow-soft);
	z-index: 3;
}
.hero-frame-main .inner{ width:100%; text-align:center; display:inline-block; position: relative;}
.hero-frame-main .inner img{
	max-width: 320px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 40px;
}

.float-card{
  position:absolute;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 12px;
  z-index:4;
  animation: float-y 5.5s ease-in-out infinite;
}
.float-card.fc-1{ top: -6px; left: -36px; --rot: -4deg; animation-delay: .2s; }
.float-card.fc-2{ bottom: 36px; right: -54px; --rot: 3deg; animation-delay: .9s; }
.float-card.fc-3{ bottom: -22px; left: 10px; --rot: -2deg; animation-delay: 1.6s; }
.float-card.fc-4{ top: 80px; right: -70px; --rot: 4deg; animation-delay: .5s; }
.float-card svg{ width:46px; height:46px; }

.trust-chip{
  position:absolute;
  display:flex;
  align-items:center;
  gap:8px;
  background: var(--paper);
  padding: 9px 16px 9px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  font-size: 12.5px;
  font-weight:700;
  color: var(--green);
  z-index:5;
  animation: float-y 6s ease-in-out infinite;
}
.trust-chip .ic{
  width:26px; height:26px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.trust-chip.tc-1{ top: 18px; right: 18px; }
.trust-chip.tc-1 .ic{ background: #f8f5f0; }
.trust-chip.tc-2{ bottom: 110px; left: -64px; animation-delay: 1.1s; }
.trust-chip.tc-2 .ic{ background: #f8f5f0; }
.trust-chip.tc-3{ bottom: 22px; right: 32px; animation-delay: .6s;}
.trust-chip.tc-3 .ic{ background: #f8f5f0; }
.trust-chip.tc-4{ top: 80px; left: -8px; --rot: 0; animation-delay: .2s;}
.trust-chip.tc-4 .ic{ background: #f8f5f0; }
.trust-chip .ic img{ max-width:20px;}

@media (max-width: 980px){
  .hero-visual{ height: 480px; transform: scale(0.86); }
}
@media (max-width: 560px){
  .hero-visual{ transform: scale(0.72); margin: 0 -30px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items:center;
}
@media (max-width: 940px){ .about-grid{ grid-template-columns:1fr; } }

.about-visual{ position:relative; }
.about-visual .blob{ width:300px; height:300px; background: radial-gradient(circle, var(--blue-100), transparent 70%); top:-40px; left:-40px; z-index:0; }
.about-card{
	position: relative;
	z-index: 1;
	background: var(--paper);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	/* padding: 7px; */
	overflow: hidden;
	border: 5px solid #fff;

}
.about-card img{
	border-radius: 10px;
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.common-heading{
	font-family: var(--font-display);   
	margin: 0;
	font-weight: 600;
	color: var(--ink);
	font-size: clamp(28px, 4vw, 46px);
    line-height: clamp(36px, 4vw, 54px);
	margin-top:10px;
	}
.common-text{
	margin-top:18px; 
	color:var(--ink-soft); 
	font-size: clamp(14px, 2vw, 16.5px);
	line-height: clamp(24px, 2vw, 26px);
}

.about-list{ margin-top: 28px; display:flex; flex-direction:column; gap: 18px; }
.about-list li{ 
	display:flex; 
	align-items:flex-start; 
	gap:14px;
	font-size: clamp(16px, 2vw, 18px); 
	color: var(--ink-soft);
	font-weight:700;
	
}
.about-list .check{
  width:26px; height:26px; flex-shrink:0;
  border-radius:50%;
  background: linear-gradient(155deg, var(--yellow) 0%, var(--coral) 100%);
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
}
.about-list .check img{     
	width: 12px;
    height: 10px;
}
.about-link{
  margin-top: 30px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color: var(--green);
  font-size: 15px;
}
.about-link svg{ width:18px; height:18px; transition: transform .2s ease; }
.about-link:hover svg{ transform: translateX(5px); }
/* ============================================================
   BANNER
   ============================================================ */
.banner-wrap{ padding: 0 0; }
.banner{
  position:relative;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 60px;
  overflow:hidden;
  color: var(--cream);
}
.banner-grid{
  display:grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items:center;
  position:relative;
  z-index:2;
}
@media (max-width: 920px){ .banner-grid{ grid-template-columns:1fr; } .banner{ padding: 54px 30px; } }

.banner .eyebrow{ color: var(--yellow); }
.banner .eyebrow::before{ background: var(--blue); }
.banner h2{color: var(--cream);}
.banner p{ color: rgba(248,245,240,0.78);}
.banner .btn{ margin-top: 30px; }
.banner-dot{ position:absolute; border-radius:50%; opacity:.18; }
.banner-doodle{ position:absolute; opacity:.5; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefit-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 980px){ .benefit-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .benefit-grid{ grid-template-columns: 1fr; } }

.benefit-card{
  position:relative;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.benefit-icon{
  width:58px; height:58px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.benefit-icon svg{ width:30px; height:30px; }
.benefit-card:nth-child(1) .benefit-icon{ background: var(--blue-100); }
.benefit-card:nth-child(2) .benefit-icon{ background: var(--yellow-100); }
.benefit-card:nth-child(3) .benefit-icon{ background: var(--coral-100); }
.benefit-card:nth-child(4) .benefit-icon{ background: var(--green-100); }
.benefit-card h3{ font-size: 19px; line-height:1.3; }
.benefit-card p{ margin-top:10px; font-size: clamp(14px, 2vw, 16px); line-height: clamp(24px, 2vw, 26px); color: var(--ink-soft); }
.benefit-avatar{
  position:absolute;
  top: -16px; right: 18px;
  width: 44px; height:44px;
  border-radius:50%;
  border: 3px solid var(--cream);
  box-shadow: var(--shadow-card);
  overflow:hidden;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#shop .hero-cta{ justify-content: center;}
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px){ .product-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper);
  display:flex;
  flex-direction:column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-media{
  height: 280px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.product-media svg{ width: 130px; height:130px; position:relative; z-index:2; }
.product-card.p1 .product-media{ background: var(--blue-100); }
.product-card.p2 .product-media{ background: var(--coral-100); }
.product-card.p3 .product-media{ background: var(--yellow-100); }
.product-card.p4 .product-media{ background: var(--green-100); }
.product-card .product-media img{ max-width: 200px;}
.product-media .puff{ position:absolute; border-radius:50%; opacity:.55; }
.product-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-tag{ font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); opacity:.7; }
.product-body h3{ font-size: 20px; }
.product-body p{ font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; flex:1; }
.product-body .btn{ align-self:flex-start; width:100%; margin-top: 10px;}

/* TOOLBAR */
.toolbar {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.filter-btn {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 7px 30px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--muted);
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }

.filter-btn.active {
    background: var(--ink);
    border-color: var(--ink-soft);
    color: var(--white);
}
.result-count {
	font-size: 12px;
	color: var(--muted);
	font-weight: 400;
}


/* ============================================================
   BLOG
============================================================ */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.blog-media{
  height: 170px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.blog-card.b1 .blog-media{ background: var(--yellow-100); }
.blog-card.b2 .blog-media{ background: var(--blue-100); }
.blog-card.b3 .blog-media{ background: var(--coral-100); }
.blog-media svg{ width:84px; height:84px; }
.blog-body{ padding: 24px 24px 28px; }
.blog-tag{
  display:inline-block;
  font-size: 11.5px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  color: var(--green);
  background: var(--green-100);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.blog-body h3{ font-size: 19px; line-height:1.32; }
.blog-body p{ margin-top: 10px; font-size: clamp(14px, 2vw, 16px); line-height: clamp(24px, 2vw, 26px); color: var(--ink-soft); }
.blog-read{
  margin-top: 18px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:700;
  font-size: 14px;
  color: var(--green);
}
.blog-read svg{ width:16px; height:16px; transition: transform .2s ease; }
.blog-card:hover .blog-read svg{ transform: translateX(5px); }

#blog .hero-cta{justify-content: center;}

/* ============================================================
   FOOTER
============================================================ */
footer{
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 30px;
  padding-top: 80px;
}
.footer-top{
	display: grid;
    grid-template-columns: 4fr 3fr 5fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(248, 245, 240, 0.14);
}
@media (max-width: 880px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

.footer-brand .brand{ width: 180px; display: inline-block; filter: brightness(0) invert(1);}
.footer-brand p{ margin-top: 16px; color: rgba(248,245,240,0.65); font-size: 14.5px;}
.social-row{ display:flex; gap:12px; margin-top: 24px; }
.social-row a{
  width:38px; height:38px;
  border-radius:50%;
  border: 1.5px solid rgba(248,245,240,0.25);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, border-color .2s ease;
}
.social-row a:hover{ background: rgba(248,245,240,0.12); border-color: rgba(248,245,240,0.5); }
.social-row svg{ width:16px; height:16px; }

.footer-col h4{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:13px;font-size: 14px; color: rgba(248,245,240,0.65); }
.footer-col a{ font-size: 14.5px; color: rgba(248,245,240,0.72); transition: color .2s ease; }
.footer-col a:hover{ color: var(--cream); }

.newsletter p{ color: rgba(248,245,240,0.65); font-size: 14.5px; margin-bottom: 18px; }
.newsletter-form{ display:flex; gap:8px; }
.newsletter-form input{
  flex:1; min-width:0;
  padding: 13px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(248,245,240,0.25);
  background: rgba(248,245,240,0.08);
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input::placeholder{ color: rgba(248,245,240,0.5); }
.newsletter-form input:focus-visible{ outline: 2px solid var(--yellow); outline-offset: 2px; }
.newsletter-note{ margin-top: 10px; font-size: 12.5px; color: rgba(248,245,240,0.45); }
.newsletter-success{ display:none; align-items:center; gap:8px; font-size:14px; color: var(--yellow); font-weight:700; margin-top:10px; }
.newsletter-success.show{ display:flex; }

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap: 28px;
  padding: 32px 0;
}
.trust-row .item{ display:flex; align-items:center; gap:10px; font-size: 13.5px; font-weight:600; color: rgba(248,245,240,0.78); }
.trust-row svg{ width:22px; height:22px; flex-shrink:0; }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(248,245,240,0.14);
  font-size: 13px;
  color: rgba(248,245,240,0.55);
}
.footer-bottom .legal-links{ display:flex; gap:22px; }
.footer-bottom a:hover{ color: var(--cream); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }
	

/*------------------------------
          INNER SECTION
--------------------------------*/

					
/*===========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 0 10px;
	z-index: 22;
	color: #000000;
	background-color: #ffffff;
	transition: all ease 0.5s;
	opacity:0;
	}
.cart_open .drawer{
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity:1;
	}
.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:50px;
	width: 100%;
	background:#523574;
	padding:15px;
	}
.table-cell{
	float:left;
	width: 50%;
	font-size:20px;
	line-height:22px;
	font-weight:600;
	color:#ffffff;
	letter-spacing:0.5px;
	text-align:left;
	}
.cart-icon{
	float: right;
    margin:15px 25px 0 0;
	position:relative;	
	}
.cart-icon img{ display:inline-block; vertical-align:middle;}
.cart-icon span{
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    top: -10px;
    background: #ef5237;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    line-height: 19px;
	}
.table-cell .cart-icon{margin:4px 40px 0 0;}

.cross-icon{
	float:right;
	cursor:pointer;
	margin-top:4px;
	}
.drower-mdlbx{
	float:left;
	width:100%;
	padding:0 20px 20px;
	}
.drawer_row{
	float:left;
	width:100%;
	padding:15px 0 15px;
	border-bottom:1px solid #eaeaea;
	text-align:left;
	}
.drawer-prod-lft{
	float:left;
	width:44px;
	}
.drawer-prod{
	display:inline-block;
	vertical-align:middle;
	margin-top: 2px;
    max-width: 90%;
	}
.drawer-prod-lft span{
	position:absolute;
	width:20px;
	height:20px;
	right:-10px;
	top:-10px;
	background:#0c426d;
	border-radius:50%;
	text-align:center;
	font-size:14px;
	color:#ffffff;
	line-height:19px;
	}
.drawer-prod-rght{
	float:right;
	width:190px;
	text-align:left;
	}
.drwer-prod-name{
	float:left;
	width:100%;
	font-size:16px;
	line-height:22px;
	color:#000000;
	letter-spacing:0.5px;
	
	font-weight:600;
	}
.drwer-prod-name span{}
.drwer-txt1{
	float:left;
	width:100%;
	font-size:15px;
	line-height:24px;
	color:#3e3e3e;
	
	font-weight:500;
	letter-spacing:0.5px;
	}
.drwer-txt1 span{}
.drwer-txt2{
	float:left;
	width:100%;
	font-size:12px;
	line-height:17px;
	color:#393733;
	font-weight:500;
	}
.drwer-prod-name a{
	float:right;
	font-size:14px;
	color:#959595;
	}
.cart-remv img{
	display:inline-block;
	vertical-align:middle;
	}	
.cart-qty-div{
	display:inline-block;
	vertical-align:middle;
	margin-top:7px;
	}
.sub, .add {
    float: left;
    width: 35px;
    border: 1px solid #ced4da;
    height: 36px;
    padding: 2px 0px 0;
    text-align: center;
	background:#fff;
    outline: none;
	
    cursor: pointer;
	}
.cart-qty-div input{
    float: left;
    border: none;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    background: none;
    width: 50px;
    text-align: center;
    height: 36px;
    font-size: 18px;
	font-weight:normal;
    color: #2d2d2d;
	
	font-weight:normal;
	-webkit-appearance:none;
	border-radius:0;
	outline:none;
	}
.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:#523574;
    color: #fff;
    font-size: 20px;
	line-height:22px;
    text-decoration: none;
    padding: 15px 0 15px;
	text-align:center;
	font-weight: bold;
	letter-spacing:0.5px;
	margin-top:20px;
	}
a.continue-btn{
	float: left;
    width: 100%;
	border:2px solid #523574;
    color: #000;
    font-size: 20px;
	line-height:22px;
    text-decoration: none;
    padding: 12px 0;
	text-align:center;
	font-weight: bold;
	letter-spacing:0.5px;
	margin-top:8px;
	}
.cards-img{
	display:inline-block;
	vertical-align:middle;
	margin-top:10px;
	max-width:100%;
	}
.cart-smry{
	float:left;
	width:100%;
	margin:10px 0 0;
	}
.crt-smry-hdng{
	float:left;
	width:100%;
	font-size:19px;
	line-height:23px;
	color:#363636;
	
	font-weight:600;
	padding:0 0 8px 0;
	text-align:left;
	letter-spacing:0.5px;
	border-bottom:1px solid #eaeaea;
	}
.cart-prc-p1{
	float:left;
	width:100%;
	text-align:left;
	font-size:15px;
	line-height:18px;
	letter-spacing:0.5px;
	
	padding:5px 0;
	}
.cart-prc-p1 span{
	float:right;
	}
.cart-prc-p2{ font-weight:600;}

/*==================================
CSS FOR DETAILS_PAGE
=====================================*/
.prodBreadcrm{
	display: inline-block;
	width: 100%;
	text-align: left;
	background: #f6fffd;
}
.prodBreadcrm p{
    float: left;
    width: 100%;
    font-size: 14px;
	line-height:18px;
	color: #222;	
	
	font-weight:600;
	padding:8px 0;	
	}	
.prodBreadcrm p a{ color:#222; font-weight:normal;}	

.products-sec{
	background:#fff;	
    float: left;
    width: 100%;
    padding:55px 0 65px;
	}
	
	
/*==========PRODUCT DETAILS PAGE==========*/
.prodDtls1-left{
	float:left;
	width:43%;
	text-align:center;
	}
.prod-dtls1-slide{
	float:left;
	width:100%;
	position:relative;
	}	
.prod-lft-list{
	float:left;
	width:100%;
	text-align:center;
	margin-top:10px;
	padding-left:125px;
	}
.prod-lft-list li{
	float:left;
	width:33.33%;
    position: relative;
	margin-top:25px;
	}			
.prod-lft-list li img{
	max-width:100%;
	margin:0 auto 0;
	display:block;
	width:60px;
	}	
.prod-lft-list p{
	float:left;
	width:100%;
	font-size:17px;
	line-height:20px;
	color:#292929;
	
	letter-spacing:0.5px;
	margin-top:10px;
	}
			
/*============RIGHT============*/
.prodDtls1-rght{
	float:right;
	width:51%;
	text-align:left;
	}
.prod-nameHdng{
    float: left;
    width: 100%;
    font-size: 36px;
    line-height: 38px;
    color: #2c1a4d;
	
    font-weight: 600;
    letter-spacing: 0.5px;
	}	
.prod-namesubHdng{
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 26px;
    color: #292929;
	
    font-weight: 500;
    letter-spacing: 0.5px;
	margin-top:7px;
	}		
.prod-str{
	display:inline-block;
	vertical-align:middle;
	margin-top:7px;
	}
.proDetls1-rgt-pnts{
	float:left;
	width:100%;
	margin-top:20px;
	border-top:1px solid #d7d7d7;
	border-bottom:1px solid #d7d7d7;
	padding:5px 0;
	}	
.proDetls1-rgt-pnts li{
	float:left;
	text-align:left;
	position:relative;
	border-right:1px solid #d7d7d7;
	padding:8px 25px 8px 40px;
	}
.proDetls1-rgt-pnts li:nth-child(2){ margin:0 3%;}	
.proDetls1-rgt-pnts li:last-child{ border:none;}	
.proDetls1-rgt-pnts li img{
	position:absolute;
	top:3px;
	left:0;
	}
.proDetls1-rgt-pnts li p{
	font-size:18px;
	line-height:20px;
	color:#292929;
	
	}
.details-para{
	float: left;
    width: 100%;
	color:#000000;
	font-size:17px;
	line-height:24px;
	margin-top:15px;
	
	letter-spacing:0.5px;
	}		
ul.proDetls1-rgt-list{
	float: left;
    width: 100%;
    margin-top: 12px;
	}
ul.proDetls1-rgt-list li{
    background: url(../images/prd-dot.png) no-repeat left center;	
	float: left;
    width: 100%;
	text-align: left;
    font-size:18px;
    line-height: 24px;
    color: #000;
    padding-left: 22px;
    margin-top:8px;
	
	letter-spacing:0.5px;
	}
.select-txt{
	float:left;
	width:100%;
	text-align:left;
	font-size:20px;
	line-height:22px;
	color:#292929;
		
	font-weight:500;
	letter-spacing:0.5px;
	margin-top:35px;
	}	
	
.pack-sec{
    float: left;
    width: 100%;
    background: #fff;
    text-align: center;
    position: relative;
	margin-top:25px;
	}
.package{
	width:31%;
	float:left;
	border-radius:5px;
	border:2px solid #d0d0d0;
	cursor:pointer;
	}
.package.left{ float:left;}	
.package.right{ float:right;}	
.package.mid{
	position:absolute;
	top:0;
	left:50%;
	margin-left:-15.5%;
	}	
.package.active{
	background:#fffef1;
	border:2px solid #523574;
	}		
.pkgInner{
	float:left;
	width:100%;
	text-align:left;
	background:#fff;
	padding:12px 12px 12px;
	border-radius:5px;
	position:relative;
	}	
.pkgInner:before{
	content:'';
	position:absolute;
	top:-13px;
	left:9px;
	width:26px;
	height:26px;
	background:url(../images/pkg-deactive.png) no-repeat;
	}	
.package.active .pkgInner:before{
	background:url(../images/pkg-active.png) no-repeat;
	}	
.prod-items{
	float: left;
    width: 100%;
    font-size: 18px;
    color: #292929;
	
	font-weight:500;
	letter-spacing:0.5px;	
	}
.prod-price{
	float: left;
    width: 100%;
    font-size: 28px;
	line-height:30px;
    color: #1a1a1a;
	
	letter-spacing:0.5px;
	margin-top:10px;	
	}	
.save-text{
	float: left;
    width: 100%;
    font-size: 18px;
    color: #553876;
	
	letter-spacing:0.5px;
	margin-top:5px;	
	}
.pkg1, .pkg2, .pkg3{
	position:absolute;
	top:15px;
	right:4px;
	}
.pkg2{ right:17px;}	
.pkg3{ right:30px;}		
	
.switch-opt{
	float:left;
	width:100%;
	margin-top:20px;
	}
.buyopt{
	float:left;
	width:48.5%;
	background:#fff;
	letter-spacing:0.5px;
	cursor:pointer;
	position:relative;
	padding:11px 5px 13px 32px;
	border:1px solid #efedd1;
	border-radius:4px;
	}
.buyopt.fr{float:right;}
.buyopt.active{ background:#fffef1; border:1px solid #d7d185;}
.buyopt input[type=radio]{
	position:absolute;
	left:0;
	opacity:0;
	}
.buyopt input[type=radio] + span{
	position:absolute;
	left:10px;
	width:15px;
	height:15px;
	border-radius:50%;
	background:#361758;
	border:1px solid #888888;
	top:15px;
	background:#fff;
	}
.buyopt input[type=radio]:checked + span:after{
	content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #523574;
    border-radius: 50%;
    left: 3px;
    top: 3px;
	}
.buy-opt-t1{
	font-size:18px;
	line-height:20px;
	color:#1f1f1f;
	
	}	
.cart-btn-box{
	float:left;
	width:100%;
	margin-top:27px;
	}
a.add-to-cart{
	display:inline-block;
	vertical-align:middle;
	max-width:295px;
	}
.purchase-price{
	float:left;
	width:100%;
	text-align:left;
	margin-top:30px;
	}
.retail-prc{
	display:inline-block;
	vertical-align:middle;
    font-size: 20px;
    color: #505050;
	}
.retail-prc span{
	position:relative;
	padding:0 2px;
	}
.retail-prc span img{
	position:absolute;
	top:7px;
	left:2px;
	}
.disct-prc{
	display:inline-block;
	vertical-align:middle;
    font-size: 40px;
    color: #141b4d;
	font-weight:600;
	margin-left:10px;	
	}

/*=========PRODUCT TAB SECTION=========*/	
.prod-tab-sec{
	float:left;
	width:100%;
	padding:50px 0;
	background:#fcf8ff;
	position:relative;
	}
.prod-tab-sec .container{
	height:100%;
	position:static;
	}
.pro-set-bg{
	position:absolute;
	top:0;
	bottom:0;
	background:#f6f0fc;
	width:398px;
	}
.pro-set-bg:after{
	content:'';
	position:absolute;
	left:-4000px;
	width:4000px;
	top:0;
	bottom:0;
	background:#f6f0fc;
	}
.tab-logo{
	float:left;
	position:relative;
	z-index:1;
	}
.prd-s2-hdng{
    float: left;
    width: 100%;	
    font-size: 30px;
    line-height: 44px;
	color:#202020;
	
    font-weight: 500;
	letter-spacing:0.5px;
	}
.prd-s2-txt1{
    float: left;
    width: 100%;	
    font-size: 22px;
    line-height: 28px;
	color:#202020;
	
    font-weight: 500;
	letter-spacing:0.5px;
	margin-top:25px;	
	}	
ul.prd-s2-list{
	float: left;
    width: 100%;
    margin-top: 5px;
	}
ul.prd-s2-list li{
    background: url(../images/prd-s2-tk.png) no-repeat left 8px;	
	float: left;
    width: 100%;
	text-align: left;
    font-size:20px;
    line-height: 28px;
    color: #202020;
    padding-left: 28px;
    margin-top:12px;
	
	letter-spacing:0.5px;
	}	
.bott2-bg{
	position:absolute;
	right:0;
	bottom:0;
	background:url(../images/botl2-bg.png) no-repeat center top;
	width:319px;
	height:303px;
	}
.bott2-bg img{
	max-width:100%;
	margin:20px auto 0;
	display:block;
	width:141px;
	}
.label-img{
	float:left;
	max-width:100%;
	margin-top:25px;
	box-shadow:0 0 8px 2px rgba(0,0,0,0.1);
	}				
.revw-row{
	float:left;
	width:100%;
	}	
.revw-row{
	float: left;
    width: 100%;
    padding: 15px 0 25px 73px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #e1e1e1;
	}
.rvw-nm {
    position: absolute;
    left: 0;
    top: 25px;
    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{
	float: left;
    width: 100%;
	font-size:20px;
	line-height:26px;
	color: #2c1a4d;
    
    font-weight: 600;
	letter-spacing:0.5px;
	}
.revw-p2{
	float: left;
    width: 100%;	
    color: #282828;
	
    font-weight: 600;
	margin-top:15px;
	font-size: 18px;
	}
.revw-p2 .prd-dtl-vari-cust{
	display:inline-block;
	vertical-align:middle;
	margin:-8px 0 0 8px;
	}
.revw-hr{
	float: left;
    width: 100%;
    background: #e1e1e1;
    height: 1px;
	border:none;
    margin: 8px 0;
	}
.products-sec .prodBox{ margin-top:40px;}	
.products-sec .prodbox-row{ margin:2% 0.5% 0;}			
.prd-slide2{
    max-width: 80%;
    margin: 0 auto 0;
    display: block;
	}

/*------------------------------
		FAQ SECTION
--------------------------------*/
	
/*------------------------------
		CONTACT SECTION
--------------------------------*/	

ul.cont-list li{
	float:left;
	width:33.33%;
	text-align:center;
	}

.cont-list-p1{
	float:left;
	width:100%;
    color: #333333;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
	
	font-weight: 500;
	letter-spacing:0.5px;
	margin-top:15px;	
	}
.cont-list-p2{
	float:left;
	width:100%;
	color:#4b4d4a;
	
	letter-spacing:0.5px;
	}
.cont-frm{
	width:71.11%;
	display:table;
	margin:30px auto 0 auto;
	}
.cont-frmElmnts{
	float:left;
	width:100%;
	margin:15px 0 0 0;
	display:block;
	position:relative;
	}
.cont-frmElmnts input, .cont-frmElmnts textarea{
	width:100%;
	background:#f9f9f9;
	height:41px;
	border:1px solid #ebebeb;
	box-sizing:border-box;
	padding:0 10px 0 10px;
	
	font-size:14px;
	color:#000;
	border-radius:4px;
	text-align:left;
	}
.cont-lft{ width:49%; float:left;}
.cont-rgt{ width:49%; float:right;}
.cont-frmElmnts textarea{
	height:141px;
    width: 99.83%;
    padding:14px 10px 0 10px;
    border: 1px solid #d2cfcc;}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #8b8b8b;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #8b8b8b;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #8b8b8b;
}
:-moz-placeholder { /* Firefox 18- */
  color: #8b8b8b;
}
.contact-btn{
	display:inline-block;
	vertical-align:middle;
	width: 300px;
	text-align:center;
	height:55px;
	overflow: hidden;
	color: #ffffff;
	font-size: 24px;
	line-height:53px;
	position: relative;
    
    font-weight: 600;	
	border-radius: 34px;
	background: #006dc7;
	outline:none;
	border:none;
	letter-spacing:0.5px;
	margin-top:30px;
	}	
	
/*=============Fooetr Link============*/	
.terms-cont{
	float:left;
	width:100%;
	text-align:left;
	}
.terms-cont .common-para{
	font-size:17px;
	line-height:25px;
	margin-top:17px;
	}	
.terms-cont .common-para a{ color:#3279b2;}	
.terms-hd{
	float:left;
	width:100%;
	font-size:30px;
	line-height:30px;
	color:#000;
	}	
.terms-subhd{
	float:left;
	width:100%;
	font-size:20px;
	line-height:30px;
	color:#000;
	margin-top:30px;	
	}	
.terms-cont ul{
	float:left;
	width:100%;
	margin-top:17px;
	padding-left:40px;
	}
.terms-cont ul li{
	float:left;
	width:100%;
	font-size:17px;
	line-height:25px;
	list-style:disc;
	margin-bottom:10px;	
	}	
.terms-cont ul li:last-child{ margin-bottom:0;}		

/*=========Thankyou========*/
.thank-section-1{
	float:left;
	width:100%;
	font-weight:normal;
	padding:0 100px;
	}
.thnk-txt1{
    float: left;
    width: 100%;
    font-size: 36px;
    line-height: 40px;
    color: #393733;
	
    font-weight: 600;
	letter-spacing:0.5px;
	}
.thnk-txt2{
    float: left;
    width: 100%;
    font-size: 17px;
    line-height: 25px;
    color: #1c1c1c;
	
	margin-top:10px;
	letter-spacing:0.5px;
	}
.cart-col-1, .cart-col-2, .cart-col-3, .cart-col-4{
	float: left;
	width: 20%;
	}
.cart-col-1{
	width: 60%;
	padding: 0 0 0 20px;
	text-align: left;
	position: relative;
	}
.cart-col-4{
	text-align: right;
	padding: 0 20px 0 0;
	}
.cart-prd-row .cart-col-3, .cart-prd-row .cart-col-4{margin-top:20px;}
.cart-prd-row{
	float: left;
	width: 100%;
	border-bottom: 1px solid #e2e2e2;
	padding: 25px 0;
	}
.cart-prd-row:last-child{
	border: none;
	}
.cart-prd-1{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 72px;
	}
.thank-p1{
	float: left;
	width: 100%;
	font-size: 23px;
	line-height: 30px;
	color: #393733;
	
	font-weight: 600;
	margin:40px 0 -17px;
	position:relative;
	z-index:1;
	letter-spacing:0.5px;
	}
.thank-p1 span{
	background:#fff;
	padding:0 8px;
	}
.thank-ord{
	float: left;
	width: 100%;
	border-top:1px solid #e2e2e2;
	border-bottom:1px solid #e2e2e2;
	padding:18px 7px;
	font-size: 17px;
	line-height: 22px;
	
	color: #2d2d2d;
	letter-spacing:0.5px;
	}
.thank-dtl-box{
	float: left;
	width: 100%;
	margin:30px 0;
	}
.cart-heading-row{
	float:left;
	width:100%;
	font-size: 20px;
	line-height: 50px;
	color: #fff;
	
	font-weight:500;
	letter-spacing:0.5px;
	background: #523574;
	}
.cart-prd-name{
	float: left;
	width: 100%;
	padding: 0 0 0px 80px;
	color:#666;
	
	font-size: 15px;
	line-height: 22px;
	letter-spacing:0.5px;
	}
.cart-prd-name span{
	font-size: 18px;
	color: #393733;
	font-weight: 500;
	}
.unit-price{
	float: left;
	width: 100%;
	color: #393733;
	
	font-size: 18px;
	line-height: 22px;
	}
.thnk-rit-price-row{
	float: right;
	width: 46%;
	padding: 10px 0;
	}
.cart-rit-price{
    float: left;
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    font-size: 20px;
    line-height: 22px;
    color: #1e1e1e;
    text-align: left;
    padding: 12px 3px;
	
    font-weight: 500;
	}
.cart-prc-spn{
	float: right;
	text-align: right;
	}
.thnk-rit-price-row .cart-rit-price{
	font-size: 18px;
	padding: 15px 3px;
	font-weight: normal;
	}
.thnk-rit-price-row .cart-prc-spn{
	text-align: left;
	width: 90px;
	}
.thnk-Addressinfo{
	float: left;
	width: 100%;
	}
.ty-lft-Address, .ty-rgt-Address{
	float: left;
	width: 48%;
	text-align: left;
	}
.sh-heading{
	float: left;
	width: 100%;
	color: #393733;
	font-size: 22px;
	
	font-weight:600;
	line-height:38px;
	letter-spacing:0.5px;
	}
ul.user-info{
	float: left;
	width: 100%;
	margin-top: 10px;
	border:5px solid #ebebeb;
	padding:15px;
	background:#fff;
	}
ul.user-info li{
	float: left;
	width: 100%;
	position: relative;
	padding-left: 110px;
	margin: 5px 0;
	color: #393733;
	font-size: 16px;
	line-height: 21px;
	
	word-break:break-all;
	}
ul.user-info li span{
	position: absolute;
	left: 0;
	color: #2b2b2b;
	font-weight: 500;
	}
.ty-rgt-Address{float: right;}	

/*-------------------------
CANCELLATION
--------------------------*/
/* The Modal (background) */
.modal {
  z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
	display:inline-block;
}

/* Modal Content */
.modal-content {
       background-color: #fefefe;
    margin: auto;
    padding: 20px;
    /* border: 1px solid #888; */
    width: 70%;
    display: inline-block;
    box-shadow: 0 0 5px #d2d2d2;
}

/* The Close Button */
.close {
  color: #aaaaaa;
    float: right;
    font-size: 38px;
    font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.cancel-form{
	float: left;
    width: 100%;
    text-align: left;
    min-height: 270px;
	}
.cancel-form .btn-box{
	margin-top:20px;
	}
.modal__title, .modal__title-result {
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	text-align: center;
	}
.cancel-form label.radio {
	float: left;
	width: 100%;
	margin: 5px 0;
	}
.cancel-form__item input[type=text], textarea {
	    height: auto;
    padding: 10px 11px;
    border: 1px solid #d2d2d2;
    font-size: 14px;
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
    -webkit-appearance: none;
    font-weight: 400;
    margin-top: 10px;
    font-family: inherit;

	}
.cancel-form .btn{ max-width:100%;}		


.dsplay.pro-sec1 {
        float: left;
    width: 100%;
    padding: 120px 0;
    line-height: 32px;
}


@media only screen and (max-width: 767px){
.modal-content	{ width:100%;}
}


/*TERMS- PRIVACY*/

.tems_bg {
	display: inline-block;
	width: 100%;
	padding: 0px 0 40px;
}
.page-header.text-center {
    float: left;
    width: 100%;
    background: #f3f3f3;
}
.trm-bx {
	    width: 100%;
    display: inline-block;
    text-align: left;
    margin-top: 30px;
}
.trm-bx h1 {
	    line-height: 30px;
    color: #333;
    font-size: 24px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 600;
    /* border-bottom: 4px solid linear-gradient(155deg, var(--yellow) 0%, var(--coral) 100%); */
    padding-bottom: 5px;
}
.trm-bx img {
    display: block;
    margin: 10px 0;
}
.trm-bx h3 {
	    line-height: 28px;
    text-align: left;
    font-size: 22px;
    float: left;
    width: 100%;
    margin: 0px 0 15px;
    color: #fff;
    font-weight: 600;
    background: var(--green);
    padding: 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;
}

.prd-s1-btn {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
padding-top:20px;
row-gap: 10px;
}

.btn_strip {
    display: inline-block;
    width:100%;
    vertical-align: top;
    padding: 9px 12px 8px;
    background: #ffdd2b;
    position: relative;
    margin-bottom: 25px;
}
.btn_strip p img {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    margin: -4px 7px 0 0;
}
.btn_strip:before {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    border-bottom: 7px solid transparent;
    border-right: 9px solid #ffdd2b;
    border-top: 7px solid transparent;
}
.btn_strip p {
    font-size: 14px;
    line-height: 18px;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: left;
}
a.no_thanks{

.shipbx{
	    width: 660px;
    height: 110px;
    border-radius: 14px;
    margin: 25px auto 0px auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 17px 25px 15px 130px;
    overflow: hidden;
	    box-shadow: 0px 5px 5px #b7b7b7;
}
.shipbx:before{
	    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 4px;
    background: linear-gradient(to right, #ffe67e, #ffe15b, #ffdd2b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    
}
.shipiconbx{
	    background: linear-gradient(to right, #ffe67e, #ffe15b, #ffdd2b);
    padding: 14px 5px 18px 12px;
    position: absolute;
    left: 0;
    top: 0;
}
.taddaY{
	animation-name: tadda;
	-webkit-animation-name: tadda;
	animation-duration: 2s;
	-webkit-animation-duration: 2s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	}
@keyframes tadda {
	0% {transform:translateY(0px)}
	50% {transform: translateY(15px);}
	100% {transform: translateY(0px);}
	}
.shipiconbx img{margin:0 auto;display:block;max-width:100%;}
.shipiconbx::after{
	content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 53px solid transparent;
    border-left: 15px solid #ffde37;
    border-bottom: 53px solid transparent;
}
.shipbx-txt1{
	font-size:24px;
	line-height:30px;
	text-align:left;	
	font-weight: 700;
}
.shipbx-txt1 span.red {
        color: #000000;
    text-shadow: 1px 1px #ffdd31;
}
.shipbx-txt2{
	font-size:16px;
	line-height:24px;
	text-align:left;
}

