/* ==========================================================================
   HomeTest Lab — Private Health Testing At Home
   Single stylesheet | HTML5 + CSS3 only
   Sections:
   01. Design tokens (CSS variables)
   02. Base & reset
   03. Typography
   04. Layout helpers
   05. Buttons & badges
   06. Announcement bar / Header / Nav
   07. Hero
   08. Cards (product, feature, review, pricing)
   09. Sections (how it works, stats, trust, FAQ, newsletter)
   10. Shop toolbar & pagination
   11. Product detail
   12. Cart & checkout
   13. Contact
   14. Thank you
   15. Footer / floating buttons
   16. Animations
   17. Responsive breakpoints
   ========================================================================== */

/* 01. DESIGN TOKENS ======================================================= */
:root {
  --primary: #1e88e5;
  --primary-dark: #1565c0;
  --primary-soft: #e8f2fd;
  --secondary: #00bfa5;
  --secondary-soft: #e0f7f3;
  --accent: #4caf50;
  --danger: #e53935;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1a202c;
  --text-light: #718096;
  --border: #e5e7eb;

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(26, 32, 44, 0.05);
  --shadow-sm: 0 4px 14px rgba(26, 32, 44, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 32, 44, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 32, 44, 0.12);

  --container: 1200px;
  --gap: 24px;
  --section-y: 96px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 02. BASE & RESET ======================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* 03. TYPOGRAPHY ========================================================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(35px, 5vw, 68px);
    line-height: clamp(45px, 6vw, 84px);
    font-weight: 700;
}

h2 {
    font-size: clamp(28px, 3.4vw, 41px);
    line-height: clamp(34px, 4.4vw, 51px);
    font-weight: 600;
    text-transform: capitalize;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
  color: var(--text-light);
}

.lead {
    font-size: clamp(15px,3vw, 17px);
    max-width: 47ch;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--text-light);
}

/* 04. LAYOUT HELPERS ====================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
    position: relative;
}

.section {
  padding: var(--section-y) 0;
}

.section--tight {
  padding: clamp(40px,5vw, 64px) 0;
}

.section--alt {
  background: #fff;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(30px, 3vw, 56px);
  text-align: center;
}

.section-head p {
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/********************************/
.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: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: left 1s ease 0s;
    z-index: 10000010;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
}
.pop-innr p {
    margin: 0;
}
.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: var(--card);
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    background: var(--primary);
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 5px;
    border: none;
}
.no-btn {
    background: var(--danger);
}

.error-sec{

	text-align:center;
	}
.error-hed {
    color: red;
    font-size: 32px;
}
.card-error {
    max-width: 190px;
    margin: 0 auto 20px;
}	

/* 05. BUTTONS & BADGES ==================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(13px, 3vw, 15px);
    padding: clamp(10px, 2vw, 14px) 26px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease),
    color 0.25s var(--ease);
    text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.28);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 16px 32px rgba(30, 136, 229, 0.34);
}

.btn--teal {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 191, 165, 0.26);
}

.btn--teal:hover {
  color: #fff;
  background: #00a894;
}

.btn--ghost {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.btn--ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  color: var(--primary);
  background: #fff;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary-dark);
    
}

.badge--teal {
  background: var(--secondary-soft);
  color: #00806f;
    margin-bottom: 10px;
}

.badge--green {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge--danger {
  background: #fdecea;
  color: var(--danger);
}

.rating {
  color: #f5a623;
  font-size: 0.85rem;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.rating span {
  color: var(--text-light);
  font-size: 0.82rem;
}

/* 06. ANNOUNCEMENT BAR / HEADER / NAV ===================================== */
.announcement {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  font-size: 0.83rem;
  padding: 9px 0;
}

.announcement .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 32px;
}

.announcement p {
  margin: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
    position: relative;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    margin-top: clamp(-70px, -5.5vw, -50px);
    top: clamp(50px, 5.5vw, 70px);
    height: clamp(50px, 5.5vw, 70px);
    display: flex;
    align-items: center;
}
.top-fix-bar {	
	margin-bottom: clamp(50px, 5.5vw, 70px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.fixed-nav .site-header {
	position: fixed;
	z-index: 999999;
    -webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top: 0;
	top: 0;
	width: 100%;
}

.brand {width: clamp(120px,14vw,  180px); margin-right: -140px;display: inline-block;}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(30, 136, 229, 0.3);
}

.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
    width: clamp(28px, 5vw, 44px);
    height: clamp(28px, 5vw, 44px);
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    display: grid;
    place-items: center;
    position: relative;
    cursor: pointer;
    transition:
    box-shadow 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.icon-btn:hover {
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.icon-btn__count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: var(--card);
    font-size: clamp(8px, 2vw, 10px);
    font-weight: 700;
    min-width: clamp(15px, 3vw, 20px);
    height: clamp(15px, 3vw, 20px);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.nav-toggle {
  display: none;
}

/* Mobile nav (CSS-only checkbox toggle + minimal JS enhancement) */
.nav-check {
  display: none;
}

/* 07. HERO ================================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background:
    radial-gradient(1000px 500px at 85% -10%, var(--primary-soft), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, var(--secondary-soft), transparent 60%),
    var(--bg);
    padding: clamp(40px,7vw, 90px) 0 clamp(40px,7vw, 100px);
    z-index: 3;
    display: flex;
    align-items: center;
}
.hero:before{  
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.99);
    backdrop-filter: blur(10px);
    z-index: 2;
    opacity: 0.8;
}
.hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
    object-position: 110px bottom;
    transform: scale(1.2);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.98fr;
  gap: 60px;
  align-items: center;
    z-index: 3;
}

.hero h1 {
  margin-bottom: 20px;color: var(--secondary-soft);
}

.hero h1 em, h2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .lead {color: var(--bg);}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-soft);
}

.hero__meta i {
  color: var(--accent);
}

.hero__media {
  position: relative;
}

.hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__float {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 600;
}

.hero__float i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--secondary-soft);
  color: var(--secondary);
}

.hero__float--a {
  left: -22px;
  bottom: 42px;
}

.hero__float--b {
  right: -14px;
  top: 34px;
}

.hero__float small {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.76rem;
}

/* Page banner (inner pages) */
.page-hero {
  background:
    radial-gradient(800px 380px at 80% 0%, var(--primary-soft), transparent 65%),
    var(--card);
  border-bottom: 1px solid var(--border);
  padding: clamp(20px, 4vw, 56px) 0;
}
.page-hero .eyebrow {
    display: none;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  margin-bottom: 0;
  max-width: 60ch;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-light);
  /*margin-bottom: 18px;*/
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 8px;
  color: var(--border);
}

.breadcrumbs li:last-child::after {
  content: "";
}

/* 08. CARDS =============================================================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: clamp(18px, 3vw, 28px);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #dbeafe;
}

.feature-card i {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 18px;
}

.feature-card--teal i {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.feature-card--green i {
  background: #e8f5e9;
  color: var(--accent);
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* Product card */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--primary-soft);
}

.product-card__media img {
    /*aspect-ratio: 4 / 3;
    object-fit: cover;*/
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.07);
}

.product-card__media .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.product-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__body h3 {
  margin: 0;
  font-size: 1.08rem;
}

.product-card__body p {
  margin: 0;
  font-size: 0.92rem;
}

.price {
  font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.price del {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
}

.product-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.product-card__actions .btn {
  /*flex: 1;*/
}

/* Review card */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-card blockquote {
  margin: 14px 0 20px;
  font-size: 0.98rem;
  color: var(--text);
}

.review-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__person strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  display: block;
}

.review-card__person span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Pricing card */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-card .price {
  font-size: 2.2rem;
  margin: 10px 0 4px;
}

.pricing-card ul {
  margin: 20px 0 26px;
  display: grid;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-light);
}

.pricing-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-card li i {
  color: var(--accent);
  margin-top: 4px;
}

/* 09. SECTIONS ============================================================ */
.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 34px;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-soft);
}

.banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, #0f3f6d 0%, var(--primary) 55%, var(--secondary) 130%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.banner__body {
  padding: 56px;
}

.banner h2,
.banner p {
  color: #fff;
}

.banner p {
  opacity: 0.9;
}

.banner .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.banner img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Trust badges */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}

.trust-badge i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--secondary-soft);
  color: var(--secondary);
  flex: none;
}

.trust-badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.78rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-light);
}

.cert i {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Accordion / FAQ */
.accordion {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.accordion details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease);
}

.accordion details[open] {
  box-shadow: var(--shadow-sm);
  border-color: #dbeafe;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 32px 18px 0;
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}

.accordion details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion p {
  margin: 0 0 18px;
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 54px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.newsletter form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 26px auto 12px;
}

.newsletter input {
  flex: 1;
}

/* Forms */
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 8px;
}

legend {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding: 0;
}

.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.93rem;
  transition:
    border-color 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.choice:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.choice i {
  margin-left: auto;
  color: var(--text-light);
}

/* 10. SHOP TOOLBAR & PAGINATION =========================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.filter-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 104px;
}

.filter-panel h3 {
  font-size: 1rem;
}

.filter-group {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group li {
  margin-bottom: 10px;
}

.filter-group label {
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-light);
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.shop-toolbar .search {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.shop-toolbar .search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.85rem;
}

.shop-toolbar .search input {
  padding-left: 42px;
}

.shop-toolbar .sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--text);
  transition:
    background-color 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.pagination a:hover,
.pagination a[aria-current="page"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* 11. PRODUCT DETAIL ====================================================== */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 3vw, 56px);
  align-items: start;
}
.gallery{
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--bg);
    padding: clamp(15px, 3vw, 30px);
}
.gallery img {
  
  
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.gallery__thumbs img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.gallery__thumbs img:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.buy-card {
  position: sticky;
  top: 104px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-md);
}
.buy-card .badge {
    margin-bottom: 10px;
}

.buy-card h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  margin-bottom: 10px;
}

.buy-card .price {
      font-size: clamp(20px, 3vw, 32px);
    margin: 16px 0 6px;
    flex-wrap: wrap;
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-head);
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.qty button {
  width: 42px;
  height: 46px;
  border: none;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.25s var(--ease);
}

.qty button:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.qty input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 0;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}
.jar-txt {
        font-size: clamp(12px, 2vw, 14px);
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 3px;
    display: inline-block;
    width: 100%;
}
.pck-prc{
    margin: 4px 0 0px;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    color: var(--text-light);
    width: 100%;
    line-height: initial;
	}
.pkg-bx.addprice .pck-prc {
    color: var(--primary);
}
.pck-prc p{
	font-size:36px;
	line-height:36px;
	font-weight:bold;
	color:#0a0a0a;
	display:inline-block;
	vertical-align:middle;
	}
.pck-prc small{
	display:inline-block;
	vertical-align:middle;
	width:40px;
	font-weight:normal;
	font-style:normal;
	position:relative;
	font-size:20px;
	line-height:20px;
	margin-top:3px;
	padding-top:1px;
	color:#929292;
	}
.switch-opt {
    
    margin: 10px 0 10px;
}	
.buyopt {
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}		
.pkg-sec{
    position: relative;
    margin: 0px 0 clamp(20px, 3vw, 30px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: flex-start;
    
}
.pkg-bx{
	    border-radius: 15px;
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    padding: 15px 10px 15px;
    cursor: pointer;
    transition: all ease 1.5s;
    border: 2px solid #cbcbcb;
	}
.pkg-bx.addprice, .pkg-bx:hover{
	border: 2px solid var(--primary);
    animation: 0.5s infinite;
	}
.pkg-bx:hover{

	}
p.price {

}
.proDetls1-rgt-pnts {
	
	margin-top:10px;
}
.proDetls1-rgt-pnts li {
	float: left;
	text-align: left;
	position: relative;
	padding: 5px 0 0 38px;
	width: 100%;
}
.proDetls1-rgt-pnts li:last-child {
	border: none;
}
.proDetls1-rgt-pnts li img {
	position: absolute;
	top: 5px;
	left: 0;
	max-width: 28px;
}
.proDetls1-rgt-pnts li span {
	font-size: 16px;
	line-height: 25px;
	color:#000;
	font-weight:500;
}
ul.prdrgt-list1 {
    display: grid;
    row-gap: 10px;
    justify-content: space-between;
    width: 100%;
}
ul.prdrgt-list1 li {
	width: 100%;
    padding: 0 0 0 22px;
    margin: 0px 0 0 0;
    font-size: 15px;
    color: var(--text-light);
    text-align: left;
    position: relative;
    text-transform: capitalize;
    font-weight: 400;
}
ul.prdrgt-list1 li:before{
	content:"\21D2";
	position:absolute;
	top:0;
	left:0;
}
ul.prdrgt-list1 li strong {
    float: left;
    width: 20%;
}

.buy-card .btn + .btn {
  margin-top: 12px;
}

.mini-trust {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-light);
}

.mini-trust li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mini-trust i {
  color: var(--secondary);
  width: 18px;
  text-align: center;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  font-family: var(--font-head);
  font-weight: 600;
  width: 42%;
  color: var(--text);
}

.spec-table td {
  color: var(--text-light);
}

.check-list {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list i {
  color: var(--accent);
  margin-top: 5px;
}

.check-list--danger i {
  color: var(--danger);
}

/* 12. CART & CHECKOUT ===================================================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 0;
}

.panel h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item p {
  margin: 0;
  font-size: 0.86rem;
}

.cart-item__end {
  text-align: right;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.link-danger {
  color: var(--danger);
  font-size: 0.82rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}

.coupon {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.summary {
  position: sticky;
  top: 104px;
}

.summary ul {
  display: grid;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.summary li {
  display: flex;
  justify-content: space-between;
}

.summary .total {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 16px;
}

.pay-logos {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 14px;
  font-size: 1.6rem;
  color: var(--text-light);
}

/* 13. CONTACT ============================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.contact-model {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3.7;
    object-position: left center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.info-list {
  display: grid;
  gap: 18px;
}

.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-list i {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  flex: none;
}

.info-list strong {
  font-family: var(--font-head);
  display: block;
  font-size: 0.95rem;
}

.info-list span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: relative;
  background: var(--card);
}

.map-placeholder img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.85);
}

.map-placeholder__pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 63, 109, 0.28);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.map-placeholder__pin i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  transition:
    background-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.tems_bg {
	
	padding: 40px 0;
}

/* 14. THANK YOU =========================================================== */
.thankyou {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 0;
}

.success-mark {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 24px 50px rgba(76, 175, 80, 0.32);
  animation: pop 0.7s var(--ease) both;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 34px auto 0;
}

.order-meta div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.order-meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-meta strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
}

/* 15. FOOTER & FLOATING BUTTONS =========================================== */
.site-footer {
  background: #0f1b2a;
  color: #cbd5e1;
  padding: clamp(30px,6vw, 72px) 0 0;
  margin-top: 0;
}

.site-footer h4 {
    font-family: var(--font-head);
    color: var(--card);
    font-size: 0.85rem;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 300;
}

.site-footer p {
    color: #94a3b8;
    font-size:clamp(13px, 3vw, 14px);
}
.site-footer p:last-child{margin-bottom:0}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(25px, 3vw, 36px);
}

.site-footer a {
  color: #cbd5e1;
  font-size: clamp(13px, 3vw, 14px);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer li {margin-bottom: 10px;}
.site-footer li:last-child{margin-bottom: 0px;}

.site-footer .brand,
.site-footer .brand:hover {
  color: #fff;
}
.site-footer .brand img {
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.site-footer .brand__tag {
  color: #94a3b8;
}

.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-form input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-form input::placeholder {
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
    align-items: center;
    justify-content: center;
    padding-top: 5px;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
    margin-top: clamp(30px,6vw, 56px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
    align-items: center;
}
.footer-bottom p {
    text-transform: uppercase;
    margin: 0;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 12px;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(30, 136, 229, 0.35);
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.fab:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}

.fab--teal {
  background: var(--secondary);
  box-shadow: 0 14px 30px rgba(0, 191, 165, 0.32);
}

.fab--ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.fab--ghost:hover {
  color: var(--primary);
}

/* 16. ANIMATIONS ========================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeUp 0.8s var(--ease) both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

/* Scroll-driven section reveal where supported (progressive enhancement) */
@supports (animation-timeline: view()) {
  .reveal {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 26%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* 17. RESPONSIVE ========================================================== */
@media (max-width: 1920px) {
    .hero-bg{object-position: 110px -630px;}
}
@media (max-width: 1400px) {
    .hero-bg{object-position: 110px -270px;}
}
@media (max-width: 1024px) {
  :root {
    --section-y: 72px;
  }
    .site-header{backdrop-filter: unset;}

  .hero__grid,
  .split,
  .product-layout,
  .checkout-layout,
  .contact-layout,
  .banner {
    grid-template-columns: 1fr;
  }

  .banner__body {
    padding: 40px;
  }

  .banner img {
    min-height: 260px;
    order: -1;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .buy-card,
  .summary {
    position: static;
  }

  .grid-4,
  .stats,
  .trust-strip,
  .cert-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: span 2;
  }

  .hero__float--a,
  .hero__float--b {
    display: none;
  }

  /* Mobile navigation */
  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .nav-check:checked ~ .main-nav {
    max-height: 460px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: 40px;
    --gap: 18px;
  }
    .btn{width: 100%;}
    
    

  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .trust-strip,
  .cert-grid,
  .footer-grid,
  .field-row,
  .order-meta, .mini-trust {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: auto;
  }

  .hero {}
    .hero-bg{object-position: left center;}
  .newsletter {
    padding: 34px 22px;
  }

  .newsletter form,
  .coupon,
  .footer-form {
    flex-direction: column;
  }

  .banner__body {
    padding: 30px 24px;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
  }

  .cart-item img {
    width: 72px;
    height: 72px;
  }

  .cart-item__end {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }

  .product-card__actions {
    flex-direction: column;
  }

  .gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .announcement .container p:nth-child(n + 2) {
    display: none;
  }

  .header-actions .icon-btn--search {
    display: none;
  }
}
