:root {
  --logo-text: #1f8306;
  --icons: #2E7D32;
  --neon-green: #5AAE2B;
  --green: #5AAE2B;
  --purple: #1a7403;
  --dark-green: #145A32;
  --red-dark: #27d00f;
  --gold: #f6c445;
  --paper: #f7f8fa;
  --line: #e6e8ee;
  --text: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}
@media (max-width: 768px) {
  html { font-size: 15px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
}

body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-green) !important;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px !important;
  margin: 0px auto;
}

/* Top bar */
.topbar {
  background: var(--green);
  color: #fff;
  font-size: .8rem;
  letter-spacing: .03em;
  padding: 6px 0;
  text-align: center;
}

/* Navbar */
.navbar-custom {
  padding:8px 0;
  border-bottom: 1px solid var(--line);
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--neon-green);
  font-size: 1.15rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--neon-green), var(--green));
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.navbar-custom .nav-link {
  color: #2b2f3a;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
}

.navbar-custom .nav-link:hover {
  color: var(--red);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--neon-green);
  border: 1px solid var(--line);
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #eef1f6 45%, #dfe6f0 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 0;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  color: var(--neon-green);
  margin-bottom: .25rem;
}

.hero h1 .accent {
  color: var(--red);
}

.hero p.lead-text {
  color: #000000;
  font-size: 1.05rem;
  max-width: 420px;
  margin-top: 1rem;
}

.divider-mini {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 3px;
  margin: 14px 0;
}

.hero-img-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(15, 29, 59, .35);
}

.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 22px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6cddb;
}

.hero-dots span.active {
  background: var(--red);
  width: 22px;
  border-radius: 5px;
}

/* Promo strip */
.promo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:768px) {
  .promo {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow: scroll;
  }
}

.promo-card:hover {
  transform: translateY(-10px);
  transition: .3s;
}

/*Card*/
.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  height: 100%;
  overflow: hidden;
}

.card img {
 transform: scale(1);
 object-fit: cover;
 transition: 700ms;
}

.card:hover img{
  transform: scale(.9);
}

.card .img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple);
}


/* Category grid */
.section-title {
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  position: relative;
}

.home-catergory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cat-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 10px 14px;
  text-align: center;
  transition: .2s;
  height: 100%;
}

.cat-tile img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.cat-tile span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--neon-green);
}

/* Low price banner */
.lowprice-banner {
  background: linear-gradient(120deg, #1c8fb0, #2fb4c9 60%, #57cfd6);
  border-radius: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* product card */
.product-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  background: #fff;
  height: 100%;
}

.product-card img {
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h6 {
  font-weight: 600;
  font-size: .85rem;
  color: var(--neon-green);
  min-height: 40px;
}

/* why choose us */
.why-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 20px;
  height: 100%;
  background: #fff;
  text-align: -webkit-center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.why-icon {
  width: 48px;
  height: 48px;
  /* border-radius: 10px; */
  /* background: var(--neon-green); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.why-card h5 {
  font-weight: 700;
  color: var(--neon-green);
  font-size: 1.2rem;
}

.why-card p {
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 0;
}

/* section bg banners */
.full-banner {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.full-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 29, 59, .85) 30%, rgba(14, 29, 59, .15) 80%);
}

.full-banner .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.full-banner h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
}

.full-banner h2 .accent {
  color: var(--red);
}

/* pill tabs */
.pill-tab {
  border: none;
  background: var(--paper);
  color: var(--text);
  font-weight: 600;
  font-size: .82rem;
  padding: .5rem 1rem;
  border-radius: 30px;
}

.pill-tab.active {
  background: var(--purple);
  color: #fff;
}

/* USP tri cards */
.usp-card {
  border-radius: 15px;
  padding: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.usp-card .img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  border-radius: 10px;
}

.usp-card .body {
  padding: 18px;
  text-align: center;
}

.usp-card h6 {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--neon-green);
}

.usp-card p {
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 0;
}

.feature-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
}

.feature-box h6 {
  font-weight: 700;
  color: var(--neon-green);
}

.feature-box p {
  font-size: .83rem;
  color: var(--text);
  margin-bottom: 0;
}

.about-text h2 {
  font-weight: 800;
  color: var(--neon-green);
  font-size: 1.6rem;
}

.about-text h3 {
  font-weight: 700;
  color: var(--neon-green);
  font-size: 1.15rem;
  margin-top: 1.6rem;
}

.about-text p,
.about-text li {
  color: #4a5261;
  font-size: .93rem;
}

.glance-box {
  background: var(--paper);
  /* border-left: 4px solid var(--red); */
  border-radius: 8px;
  padding: 16px 20px;
}

footer.site-footer {
  background: var(--green);
  color: #c6cddb;
  padding-top: 50px;
}

footer.site-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 16px;
}

footer.site-footer a {
  color: #c6cddb;
  font-size: .87rem;
}

footer.site-footer a:hover {
  color: var(--gold);
}

footer.site-footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  font-size: .85rem;
}

.footer-bottom {
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  padding: 14px 0;
  font-size: .8rem;
  color: #9aa5b8;
}

.map-box {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.2);
}

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .4);
  z-index: 999;
}

.scroll-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.scroll-carousel::-webkit-scrollbar {
  height: 6px;
}

.scroll-carousel::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 10px;
}

.scroll-carousel>div {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
@media  (max-width: 768px) {
  .scroll-carousel>div {
    flex: 0 0 180px;
  }
  .home-catergory {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem;
  }
}
@media (max-width: 480px) {
  .home-catergory {
    grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  }
}

/* Image swap on hover */
.product-img-wrapper {
    position: relative;
    overflow: hidden;
}
.product-img-wrapper .img-hover-secondary {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.product-img-wrapper.has-secondary-image:hover .img-hover-secondary {
    opacity: 1;
}
.product-img-wrapper.has-secondary-image:hover img:not(.img-hover-secondary) {
    opacity: 0;
}
.product-img-wrapper img {
    transition: opacity 0.3s ease;
}