*{
  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;
}
.hero{
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("images/decorative-rocks-hero.jpg") center center/cover no-repeat;
}
.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;
}
/* Mineral Cards */

.cardTitleRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin:12px 0 6px;
}

.cardTitleRow h3{
  margin:0;
  flex:1;
}

.productPrice{
  color:#0a6b2f;
  font-weight:800;
  font-size:18px;
  white-space:nowrap;
}

.catalog{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}
/* =================================
   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;
  align-items:center;
  justify-content: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;

  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 */
@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;
    white-space:nowrap;
  }

}

/* MOBILE */
@media(max-width:600px){

  .categoryTabsInner{
    gap:8px;
    padding:12px 14px;
  }

  .categoryTabs a{
    min-height:38px;
    padding:9px 14px;
    font-size:13px;
  }

}