*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f8f6ef;
  color:#1d1d1d;
}

.hero{
  min-height:380px;
  background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:40px 20px;
}

.heroContent{
  max-width:800px;
}

.hero span,
.videoText span{
  display:inline-block;
  background:#d6a84f;
  color:#111;
  padding:9px 18px;
  border-radius:30px;
  font-weight:bold;
  margin-bottom:18px;
}

.hero h1{
  font-size:70px;
  margin-bottom:15px;
}

.hero p{
  font-size:20px;
  line-height:1.6;
}

.catalog{
  max-width:1200px;
  margin:60px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.card{
  background:white;
  border-radius:22px;
  padding:22px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  transition:.3s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,.14);
}

.card img{
  width:100%;
  height:220px;
  object-fit:contain;
  margin-bottom:20px;
}

.card h3{
  font-size:24px;
  margin-bottom:8px;
  color:#183b20;
}

.card h4{
  font-size:15px;
  color:#d6a84f;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.card p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

.videoSection{
  max-width:1200px;
  margin:70px auto;
  padding:50px 20px;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  align-items:center;
}

.videoText h2{
  font-size:42px;
  color:#183b20;
  margin-bottom:15px;
}

.videoText p{
  font-size:17px;
  line-height:1.7;
  color:#555;
}

.videoBox{
  background:white;
  padding:18px;
  border-radius:24px;
  box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.videoBox video{
  width:100%;
  border-radius:18px;
  display:block;
}

@media(max-width:900px){
  .catalog{
    grid-template-columns:repeat(2,1fr);
  }

  .videoSection{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:52px;
  }
}

@media(max-width:600px){
  .hero{
    min-height:300px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:16px;
  }

  .catalog{
    grid-template-columns:1fr;
    margin:35px auto;
  }

  .card img{
    height:190px;
  }

  .videoText h2{
    font-size:32px;
  }
}.cartIcon{
  position:fixed;
  top:22px;
  right:24px;
  background:#1f8f3a;
  color:white;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.cartIcon span{
  position:absolute;
  top:-7px;
  right:-7px;
  background:#ff3b30;
  color:white;
  font-size:13px;
  font-weight:bold;
  min-width:24px;
  height:24px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}.cartModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:10000;
  padding:20px;
}

.cartModal.active{
  display:flex;
}

.cartBox{
  width:100%;
  max-width:520px;
  background:white;
  border-radius:24px;
  padding:28px;
  position:relative;
  max-height:85vh;
  overflow-y:auto;
}

.closeCart{
  position:absolute;
  top:16px;
  right:18px;
  border:none;
  background:#f1f1f1;
  width:34px;
  height:34px;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
}

.cartItem{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid #eee;
}

.cartItem img{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:14px;
}

.cartItem div{
  flex:1;
}

.cartItem h4{
  margin:0;
  font-size:16px;
}

.cartItem p{
  margin:4px 0 0;
  font-size:13px;
  color:#666;
}

.cartItem button{
  border:none;
  background:#ffe8e8;
  color:#c62828;
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
}

.checkoutBtn{
  width:100%;
  margin-top:20px;
  border:none;
  background:#1f8f3a;
  color:white;
  padding:15px;
  border-radius:14px;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
}.topBar{
    position:fixed;
    top:20px;
    left:20px;
    right:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
    pointer-events:none;
}

.homeBtn,
.cartIcon{
    pointer-events:auto;
}

.homeBtn{
    background:#1f8f3a;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:999px;
    font-weight:700;
    font-size:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.25s;
}

.homeBtn:hover{
    background:#166d2b;
    transform:translateY(-2px);
}

.cartIcon{
    position:relative;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#FFD700; /* Bright Gold */
    color:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    border:3px solid #fff;
    transition:.25s ease;
}

.cartIcon:hover{
    background:#FFC107;
    transform:scale(1.05);
}

.cartIcon span{
    position:absolute;
    top:-6px;
    right:-6px;
    min-width:24px;
    height:24px;
    border-radius:50%;
    background:#E53935;
    color:#fff;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 6px;
}

@media (max-width:768px){

    .topBar{
        top:12px;
        left:12px;
        right:12px;
    }

    .homeBtn{
        padding:10px 18px;
        font-size:14px;
    }

    .cartIcon{
        width:50px;
        height:50px;
        font-size:22px;
    }
}/* FULL WIDTH BANNER */

/* FLUID FULL-WIDTH BANNER */

/* FULL WIDTH BANNER */

.bottomBanner{
    width:100%;
    margin:0;
    padding:0;
    display:block;
    overflow:hidden;
}

.bottomBanner img{
    display:block;
    width:100%;
    height:auto;          /* Shows the entire image */
    max-height:none;
}
/* FOOTER */

footer{
    background:#111827;
    color:#fff;
    padding:70px 20px;
    text-align:center;
}

.footerContent{
    max-width:700px;
    margin:0 auto;
}

.footerContent h2{
    font-size:38px;
    margin-bottom:10px;
}

.footerContent > p{
    color:#cbd5e1;
    margin-bottom:40px;
}

.footerGrid{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:35px;
    margin-bottom:40px;
}

.footerGrid div{
    width:100%;
    max-width:400px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.footerGrid div:last-child{
    border-bottom:none;
}

.footerGrid h4{
    color:#22c55e;
    font-size:22px;
    margin-bottom:12px;
}

.footerGrid p{
    margin:6px 0;
    color:#d1d5db;
    font-size:16px;
}

.footerBottom{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#94a3b8;
    font-size:14px;
}

@media (max-width:768px){

.bottomBanner img{
    height:220px;
}

.footerGrid{
    grid-template-columns:1fr;
    gap:30px;
}

.footerContent h2{
    font-size:28px;
}

}/* FORCE BANNER ABOVE FOOTER */

.bottomBanner,
footer{
  width:100%;
  display:block;
  clear:both;
}

.bottomBanner{
  float:none;
  grid-column:1 / -1;
  flex-basis:100%;
}

.bottomBanner img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

footer{
  float:none;
  grid-column:1 / -1;
  flex-basis:100%;
}.homeBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#0f7a39;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:12px 22px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  position:relative;
  z-index:999999;
}
.paymentGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:15px 0;
}

.payCard{
  border:2px solid #ddd;
  border-radius:16px;
  padding:16px;
  background:#fff;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:5px;
  transition:.2s;
}

.payCard input{
  display:none;
}

.payCard:has(input:checked){
  border-color:#1b7f3a;
  background:#eefaf1;
}

.payIcon{
  font-size:32px;
}

.payCard strong{
  font-size:15px;
}

.payCard span{
  font-size:12px;
  color:#666;
}

.paymentScreen input,
.paymentScreen textarea{
  width:100%;
  padding:13px;
  margin:8px 0;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:15px;
}

.paymentScreen textarea{
  min-height:90px;
}

#backToCartBtn,
#backToInfoBtn{
  width:100%;
  padding:12px;
  margin-top:10px;
  border:none;
  border-radius:12px;
  background:#ddd;
  font-weight:900;
}
/* =================================
   CATEGORY TABS BELOW HERO
================================= */

.categoryTabs{
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #e4e8e1;
  box-shadow:0 5px 18px rgba(0, 0, 0, 0.06);
  position:relative;
  z-index:20;
}

.categoryTabsInner{
  width:min(1400px, 100%);
  margin:0 auto;
  padding:16px 22px;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.categoryTabs a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:42px;
  padding:10px 17px;

  background:#f3f6f0;
  color:#173d28;

  border:1px solid #dce6dc;
  border-radius:999px;

  font-size:14px;
  font-weight:700;
  line-height:1.2;
  text-align:center;
  text-decoration:none;
  white-space:nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.categoryTabs a:hover{
  background:#173d28;
  color:#ffffff;
  border-color:#173d28;
  transform:translateY(-2px);
}

.categoryTabs a.active{
  background:#173d28;
  color:#ffffff;
  border-color:#173d28;
  box-shadow:0 7px 16px rgba(23, 61, 40, 0.2);
}

/* TABLET AND MOBILE */

@media(max-width:900px){

  .categoryTabsInner{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding:14px 16px;
    scroll-behavior:smooth;
    scrollbar-width:none;
  }

  .categoryTabsInner::-webkit-scrollbar{
    display:none;
  }

  .categoryTabs a{
    flex:0 0 auto;
  }

}

@media(max-width:600px){

  .categoryTabsInner{
    gap:8px;
    padding:12px 14px;
  }

  .categoryTabs a{
    min-height:38px;
    padding:9px 14px;
    font-size:13px;
  }

}
/* PRODUCT CATEGORY SECTIONS */

.productCategory {
  width: 100%;
  padding: 0 0 70px;
}

.productCategory + .productCategory {
  margin-top: 20px;
}

.categoryHero {
  position: relative;
  width: min(1400px, calc(100% - 40px));
  min-height: 360px;
  margin: 50px auto 40px;
  border-radius: 28px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vitaminCategoryHero {
  background-image: url("vitamin-category-hero.jpg");
}

.tinctureCategoryHero {
  background-image: url("images/tincture-category-hero.jpg");
}

/* Supplements Hero */
.supplementCategoryHero{
    background-image: url("images/supplements-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Healthy Snacks Hero */
.healthySnacksCategoryHero{
    background-image: url("images/healthy-snacks-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Coffee Hero */
.coffeeCategoryHero{
    background-image: url("images/coffee-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Tea Hero */
.teaCategoryHero{
    background: url("images/tea-hero.jpg") center center/cover no-repeat;
}
.categoryHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.76) 0%,
    rgba(0, 0, 0, 0.45) 48%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.categoryHeroOverlay {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 65px;
  color: #ffffff;
}

.categoryHeroOverlay span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.categoryHeroOverlay h2 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: #ffffff;
}

.categoryHeroOverlay p {
  max-width: 560px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Keeps each group in the same product-grid layout */

.productCategory .catalog {
  padding-top: 0;
}

/* MOBILE */

@media (max-width: 768px) {
  .categoryHero {
    width: calc(100% - 24px);
    min-height: 310px;
    margin: 30px auto;
    border-radius: 20px;
  }

  .categoryHero::before {
    background: rgba(0, 0, 0, 0.55);
  }

  .categoryHeroOverlay {
    padding: 55px 28px;
  }

  .categoryHeroOverlay h2 {
    font-size: 2.8rem;
  }

  .categoryHeroOverlay p {
    font-size: 0.95rem;
  }

  .productCategory {
    padding-bottom: 45px;
  }
}
/* FIXED BOTTOM CATEGORY MENU */

.bottomCategoryMenu {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 9999;

  width: min(1200px, calc(100% - 24px));
  max-height: 190px;

  padding: 12px;

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);

  transform: translate(-50%, 160px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.bottomCategoryMenu.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bottomCategoryInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 8px;

  max-height: 160px;
  overflow-y: auto;
}

.bottomCategoryInner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 14px;

  color: #222;
  background: #f0f2eb;

  border-radius: 999px;

  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bottomCategoryInner a:hover,
.bottomCategoryInner a.active {
  color: #fff;
  background: #1f5a3d;
}

body {
  padding-bottom: 210px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

@media (max-width: 768px) {

  .bottomCategoryMenu {
    bottom: 8px;
    width: calc(100% - 16px);
    max-height: 220px;
    padding: 10px 8px;
  }

  .bottomCategoryInner {
    justify-content: flex-start;
    max-height: 190px;
    overflow-y: auto;
  }

  .bottomCategoryInner a {
    padding: 8px 11px;
    font-size: 0.74rem;
  }

  body {
    padding-bottom: 235px;
  }
}
/* =====================================================
   PANTRY ESSENTIALS
===================================================== */

.pantryEssentialsSection {
  width: 100%;
  scroll-margin-top: 120px;
}

.pantryEssentialsHero {
  background-image: url("images/pantry-essentials-hero.jpg");
}

.subcategoryBlock {
  width: 100%;
  padding: 55px 0 35px;
  scroll-margin-top: 125px;
}

.subcategoryBlock + .subcategoryBlock {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.subcategoryHeading {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 32px;
  text-align: center;
}

.subcategoryHeading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #60775d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.subcategoryHeading h3 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.subcategoryHeading p {
  max-width: 690px;
  margin: 0 auto;
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
}

/* PRODUCT BADGES */

.card {
  position: relative;
}

.productBadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 11px;

  border-radius: 999px;

  color: #ffffff;
  background: #222222;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  line-height: 1;
  text-transform: uppercase;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
}

.badgeNew {
  background: #21664b;
}

.badgeBestSeller {
  background: #b47b19;
}

.badgeOrganic {
  background: #58734c;
}

.badgeStaffPick {
  background: #763d69;
}

@media (max-width: 768px) {

  .subcategoryBlock {
    padding: 38px 0 24px;
    scroll-margin-top: 105px;
  }

  .subcategoryHeading {
    width: calc(100% - 28px);
    margin-bottom: 24px;
  }

  .subcategoryHeading h3 {
    font-size: 2rem;
  }

  .subcategoryHeading p {
    font-size: 0.92rem;
  }

  .productBadge {
    top: 10px;
    left: 10px;
    padding: 6px 9px;
    font-size: 0.62rem;
  }
}
/* =====================================================
   WELLNESS BOOSTERS
===================================================== */

.wellnessBoostersSection {
  width: 100%;
  scroll-margin-top: 120px;
}

.wellnessBoostersHero {
  background-image: url("images/wellness-boosters-hero.jpg");
}

/* CENTER THE TWO MUESLI PRODUCTS */

.twoItemCatalog {
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
}

@media (max-width: 768px) {
  .twoItemCatalog {
    grid-template-columns: 1fr;
  }
}
/* PRODUCT IMAGE CLICK */

.card img {
  cursor: pointer;
}

/* PRODUCT MODAL */

.productModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  overflow-y: auto;
}

.productModal.active {
  display: flex;
}

.productModalContent {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  background: #ffffff;
  border-radius: 18px;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.productModalClose {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.productModalImageBox {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: #f5f5f2;
}

.productModalImageBox img {
  width: 100%;
  max-width: 380px;
  max-height: 430px;
  object-fit: contain;
}

.productModalDetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 45px 45px;
}

.productModalDetails h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.productModalDetails h3 {
  margin: 0 0 18px;
  font-size: 18px;
  color: #66704c;
}

.productModalDetails p {
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.7;
  color: #444444;
}

.productModalCartBtn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  background: #202817;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.productModalCartBtn:hover {
  background: #3f4c2c;
}

body.modalOpen {
  overflow: hidden;
}

/* MOBILE */

@media (max-width: 700px) {
  .productModal {
    align-items: flex-start;
    padding: 14px;
  }

  .productModalContent {
    grid-template-columns: 1fr;
    margin: auto;
    max-height: none;
  }

  .productModalImageBox {
    min-height: 300px;
    padding: 30px 20px;
  }

  .productModalImageBox img {
    max-height: 300px;
  }

  .productModalDetails {
    padding: 30px 24px;
  }

  .productModalClose {
    position: fixed;
    top: 22px;
    right: 22px;
  }
}
/* SKINCARE HERO IMAGE */

.skincareCategoryHero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.42),
      rgba(0, 0, 0, 0.42)
    ),
    url("images/skincare-hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.productFlavorSelector{
  margin-top:15px;
  text-align:left;
}

.productFlavorSelector label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:600;
  color:#333;
}

.productFlavorSelector select{
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:15px;
  background:#fff;
  cursor:pointer;
}
/* =====================================================
   CHECKOUT PAYMENT SCREEN
===================================================== */

.paymentScreen {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.paymentScreen h2,
.paymentScreen h3,
.paymentScreen h4,
.paymentScreen p {
  margin: 0;
}

.paymentScreen h3 {
  font-size: 24px;
  color: #17251b;
}

.paymentScreen p {
  font-size: 14px;
  line-height: 1.6;
  color: #606860;
}


/* CUSTOMER AND ORDER SUMMARY */

.checkoutSummaryBox {
  width: 100%;
  padding: 16px;
  background: #f4f7f4;
  border: 1px solid #dbe5dc;
  border-radius: 14px;
  box-sizing: border-box;
}

.checkoutSummaryBox div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #dfe6df;
}

.checkoutSummaryBox div:last-child {
  border-bottom: 0;
}

.checkoutSummaryBox span {
  font-size: 13px;
  color: #6c746d;
}

.checkoutSummaryBox strong {
  font-size: 14px;
  color: #17251b;
  text-align: right;
}


/* PAYMENT METHOD BUTTONS */

.paymentMethodGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.paymentMethodBtn {
  min-height: 90px;
  padding: 15px;
  border: 1px solid #d6ddd6;
  border-radius: 14px;
  background: #ffffff;
  color: #17251b;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.paymentMethodBtn:hover {
  border-color: #269640;
  background: #f5fbf6;
  transform: translateY(-2px);
}

.paymentMethodBtn.active,
.paymentMethodBtn.selected {
  border: 2px solid #269640;
  background: #edf9ef;
}

.paymentMethodBtn strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.paymentMethodBtn span,
.paymentMethodBtn small {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #687068;
}


/* PAYMENT OPTION AREA */

.squarePaymentArea,
#squarePaymentArea {
  width: 100%;
}

.squareMethodBox {
  width: 100%;
  padding: 18px;
  border: 1px solid #dce4dc;
  border-radius: 14px;
  background: #fafcfa;
  box-sizing: border-box;
}

.squareMethodBox h4 {
  margin-bottom: 14px;
  font-size: 18px;
  color: #17251b;
}

.squareMethodBox input {
  width: 100%;
  height: 48px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid #ccd6cd;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  color: #17251b;
  box-sizing: border-box;
}

.squareMethodBox input:focus {
  outline: none;
  border-color: #269640;
  box-shadow: 0 0 0 3px rgba(38, 150, 64, 0.12);
}


/* SQUARE CARD CONTAINER */

#squareCardContainer,
#googlePayContainer,
#cashAppPayContainer {
  width: 100%;
  min-height: 48px;
  margin-bottom: 14px;
}


/* PAYMENT STATUS */

#squarePaymentStatus,
.squarePaymentStatus {
  min-height: 20px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #596159;
}

#squarePaymentStatus.error,
.squarePaymentStatus.error {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff0f0;
  color: #b42318;
}


/* CHECKOUT BUTTONS */

.paymentScreen .checkoutBtn,
.squareMethodBox .checkoutBtn {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: #27983f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.paymentScreen .checkoutBtn:hover,
.squareMethodBox .checkoutBtn:hover {
  background: #217f35;
}

.paymentScreen .checkoutBtn:disabled,
.squareMethodBox .checkoutBtn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.paymentBackBtn,
#paymentBackBtn {
  width: 100%;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  background: #e5e5e5;
  color: #202020;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}


/* SUCCESS SCREEN */

.orderSuccessScreen {
  text-align: center;
}

.successIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: #27983f;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}


/* CART MODAL WIDTH */

.cartBox {
  width: min(92vw, 520px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  box-sizing: border-box;
}


/* MOBILE */

@media (max-width: 600px) {

  .cartBox {
    width: calc(100vw - 24px);
    padding: 20px 16px;
  }

  .paymentMethodGrid {
    grid-template-columns: 1fr;
  }

  .paymentMethodBtn {
    min-height: 76px;
  }

  .checkoutSummaryBox div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .checkoutSummaryBox strong {
    text-align: left;
  }

}
.productPrice {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
}
/* WHY SHOP */

.whyShop{
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    padding:34px 50px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.whyShopItem{
    flex:1;
    display:flex;
    align-items:center;
    gap:20px;
}

.whyShopIcon{
    font-size:52px;
    flex-shrink:0;
}

.whyShopText h3{
    margin:0;
    font-size:34px;
    font-weight:800;
    color:#111;
}

.whyShopText p{
    margin-top:8px;
    font-size:20px;
    color:#555;
}

.whyDivider{
    width:1px;
    height:90px;
    background:#e4e4e4;
}

@media (max-width:900px){

    .whyShop{
        flex-direction:column;
        padding:30px 20px;
        gap:25px;
    }

    .whyDivider{
        width:100%;
        height:1px;
    }

    .whyShopItem{
        width:100%;
    }

    .whyShopText h3{
        font-size:28px;
    }

    .whyShopText p{
        font-size:17px;
    }

}
