body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7fff8;
}

/* TOP NAV */

.top-icons {
  display: flex;
  align-items: center;
  gap: 12px;          
}

/* ICON STYLE */
.icon-link {
  font-size: 20px;
  color: #198754;
  text-decoration: none;
  transition: 0.3s;
}

.icon-link:hover {
  color: #145c32;
  transform: scale(1.1);
}

/* LOGIN BUTTON */
.login-btn {
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.offer-bar {
  background: #0f5132;
  color: white;
  font-size: 14px;
  padding: 6px 0;
}

/* TOP NAV */
.top-navbar {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.brand {
  font-size: 26px;
  font-weight: 700;
  color: #198754;
  text-decoration: none;
}

/* SEARCH */
.search-wrapper {
  position: relative;
  width: 40%;
}

.search-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border-radius: 30px;
  border: 1px solid #ccc;
}

.search-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* ICONS */
.top-icons a,
.location {
  margin-left: 15px;
  color: #198754;
  position: relative;
}

.badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  font-size: 10px;
}

/* BOTTOM NAV */
.bottom-navbar {
  background: #f8fff9;
  padding: 10px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
}

.nav-links li a {
  margin: 0 12px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #198754;
}

.btn-dark-green {
  background: #16a085;
  color: #fff;
  font-weight: 600;
}

.btn-dark-green:hover {
  background: #138a72;
}

/* MEGA MENU */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  width: 700px;
  left: 0;
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CATEGORY ITEMS */
.mega-item {
  background: #f6fffc;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.mega-item:hover {
  background: #16a085;
  color: #fff;
  transform: translateX(5px);
}

@media (min-width: 992px) {
  .mega-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 5px;
  }
}

/* CATEGORY BOX */
.mega-item {
  background: linear-gradient(145deg, #ffffff, #f1f7f3);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  font-weight: 500;
  color: #2f4f2f;
  cursor: pointer;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* HOVER EFFECT */
.mega-item:hover {
  background: linear-gradient(145deg, #198754, #20c997);
  color: #fff;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 18px 35px rgba(25,135,84,0.4);
}

/* SUBTLE GLOW */
.mega-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.mega-item:hover::after {
  opacity: 1;
}

/* GRID SPACING FIX */
.mega-menu .row > div {
  margin-bottom: 16px;
}


/* SUPPORT */
.support {
  font-weight: 600;
  color: #198754;
}


.organic-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: 0.4s;
}

.organic-card img {
  width: 100%;
  border-radius: 15px;
}

.organic-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* curosel */
.hero-carousel {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.organic-footer {
  background: #f1faf6;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1b7f5c;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #1b7f5c;
  padding-left: 5px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 50px;
}

.footer-logo h2 {
  font-size: 20px;
  color: #1b7f5c;
  line-height: 1.2;
}

.footer-logo span {
  font-size: 13px;
  color: #555;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5b;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-logo h2 {
    font-size: 18px;
  }
}


.newsletter-box {
  display: flex;
  max-width: 500px;
  border: 1px solid #cfd8cf;
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-box input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
}

.newsletter-box button {
  background: transparent;
  border: none;
  padding: 0 20px;
  font-size: 20px;
  color: #2f4f2f;
}
/* cards */

.section-title{
  font-size:28px;
  margin:20px 0;
  color:#0b3d2e;
}

.category-wrapper{
  display:flex;
  gap:22px;
  overflow-x:auto;
  padding-bottom:15px;
}

.category-wrapper::-webkit-scrollbar{
  display:none;
}

/* ============================= */
/* TOP CATEGORIES IMAGE FIX */
/* ============================= */
.top-categories{
  padding:60px 40px;
}

.top-categories h2{
  font-size:34px;
  margin-bottom:30px;
  color:#0b3d2e;
}

/* GRID */
.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

/* CATEGORY CARD */
.category-box{
  background:linear-gradient(160deg,#f6fff7,#ffffff);
  border-radius:26px;
  padding:25px;
  text-align:center;
  transition:.5s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

/* IMAGE CONTAINER (MAGIC HERE) */
.image-wrap{
  width:100%;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f7fbf6;      /* soft organic base */
  border-radius:18px;
  margin-bottom:15px;
  overflow:hidden;
}

/* IMAGE STYLE */

.image-wrap img{
  max-width:85%;
  max-height:85%;
  object-fit:contain;
  transition:transform .35s ease, filter .35s ease;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.15));
}

/* LIGHT GRADIENT GLOW */
.image-wrap::before{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  background:radial-gradient(circle,rgba(34,197,94,.25),transparent 65%);
  border-radius:50%;
  opacity:0;
  transition:.6s;
}
/* HOVER – SIMPLE & PREMIUM */
.category-box:hover .image-wrap img{
  transform:scale(1.08);
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.25));
}
/* TEXT */
.category-box h4{
  margin-top:10px;
  font-size:18px;
  color:#0b3d2e;
}

.category-box span{
  font-size:13px;
  color:#777;
}

/* HOVER MAGIC */
.category-box:hover{
  transform:translateY(-14px);
  box-shadow:0 35px 70px rgba(0,0,0,.18);
}

.category-box:hover img{
  transform:translateY(-16px) scale(1.12) rotate(-2deg);
}

.category-box:hover .image-wrap::before{
  opacity:1;
}

/* SUBTLE FLOAT ANIMATION */
@keyframes floatSlow{
  0%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
  100%{transform:translateY(0)}
}

.category-box:nth-child(odd) img{
  animation:floatSlow 6s ease-in-out infinite;
}


/* Top cards */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:20px;
}

.product-card{
  border-radius:20px;
  padding:20px;
  background:#fff;
  transition:all .4s ease;
  cursor:pointer;
  position:relative;
}

.product-card img{
  width:100%;
  height:260px;
  object-fit:contain;
  transition:transform .4s ease;
}

.product-card h4{
  margin:15px 0;
  color:#0b3d2e;
}

.price{
  font-size:18px;
  color:#0b3d2e;
  font-weight:600;
}

.price span{
  text-decoration:line-through;
  color:#999;
  font-size:14px;
  margin-left:6px;
}

.product-card button{
  margin-top:12px;
  padding:8px 18px;
  border:none;
  background:#0b3d2e;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
}

/* Hover animation */
.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.product-card:hover img{
  transform:scale(1.1);
}

/* Active highlight card */
.product-card.highlight{
  border:1.5px solid #0b3d2e;
}
/* organic section */

/* ORGANIC SECTION */
.organic-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 60px;
  border-radius: 30px;
  gap: 40px;
}

.organic-content {
  max-width: 50%;
}

.organic-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #000;
}

.organic-content p {
  color: #888;
  line-height: 1.8;
  font-size: 16px;
}

.organic-image img {
  width: 420px;
  transition: transform 0.5s ease;
}

.organic-image img:hover {
  transform: scale(1.05);
}

/* footer */
.organic-footer-simple{
  background:#f4ffe9;   /* organic light green */
  padding:60px 40px 0;
  font-family:"Segoe UI", sans-serif;
  color:#2f3b1c;
}

.footer-inner{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:50px;
  max-width:1200px;
  margin:auto;
}

/* HEADINGS */
.footer-col h3{
  color:#1c8c3a;
  margin-bottom:18px;
  font-size:20px;
}

/* LINKS */
.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:12px;
}

.footer-col a{
  text-decoration:none;
  color:#2f3b1c;
  transition:.3s;
}

.footer-col a:hover{
  color:#1c8c3a;
  padding-left:5px;
}

/* ADDRESS TEXT */
.footer-col p{
  margin-bottom:12px;
  line-height:1.6;
}

.icon-text{
  display:flex;
  align-items:center;
  gap:8px;
}

.muted{
  color:#6b6b6b;
}

/* SOCIAL ICONS */
.social-icons{
  display:flex;
  gap:14px;
  margin-top:10px;
}

.social-icons a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#1c8c3a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  transition:.3s;
}

.social-icons a:hover{
  background:#145f2a;
  transform:translateY(-4px);
}

/* FOOTER BOTTOM */
.footer-bottom{
  background:#fff;
  margin-top:50px;
  padding:15px;
  text-align:center;
  font-size:14px;
  color:#2f3b1c;
}

/* RESPONSIVE */
@media(max-width:768px){
  .organic-footer-simple{
    text-align:center;
  }

  .icon-text{
    justify-content:center;
  }

  .social-icons{
    justify-content:center;
  }
}

/* about  */
/* GLASS HERO */
.glass-hero{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e6f7c9,#f4ffe9);
}

.glass-hero-content{
  backdrop-filter:blur(15px);
  background:rgba(255,255,255,0.4);
  padding:60px;
  border-radius:30px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.glass-hero h1{
  font-size:48px;
  color:#1c8c3a;
}

.glass-hero p{
  font-size:18px;
  color:#555;
}

/* GLASS CARDS */
.glass-info{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin:80px auto;
}

.glass-card{
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,0.55);
  padding:40px 30px;
  border-radius:25px;
  text-align:center;
  transition:.5s;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.glass-card i{
  font-size:45px;
  color:#1c8c3a;
  margin-bottom:15px;
}

.glass-card:hover{
  transform:translateY(-15px) scale(1.05);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* STORY */
.glass-story{
  padding:80px 20px;
}

.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.story-glass{
  backdrop-filter:blur(15px);
  background:rgba(255,255,255,0.5);
  padding:40px;
  border-radius:25px;
}

/* STATS */
.glass-stats{
  background:linear-gradient(135deg,#1c8c3a,#4caf50);
  padding:70px 20px;
}

.stats-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  text-align:center;
}

.stat-glass{
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:30px;
  border-radius:20px;
  color:#fff;
}

.stat-glass h2{
  font-size:44px;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.delay-1{transition-delay:.3s}
.delay-2{transition-delay:.6s}

/* RESPONSIVE */
@media(max-width:900px){
  .story-grid{
    grid-template-columns:1fr;
  }

  .glass-hero h1{
    font-size:36px;
  }
}
/* contact us */

/* HERO */
.contact-hero{
  min-height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e6f7c9,#f4ffe9);
}

.contact-hero-glass{
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,0.55);
  padding:60px;
  border-radius:30px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.contact-hero h1{
  font-size:46px;
  color:#1c8c3a;
}

/* INFO CARDS */
.contact-info{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin:80px auto;
}

.contact-glass{
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,0.6);
  padding:35px;
  border-radius:25px;
  text-align:center;
  transition:.5s;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.contact-glass i{
  font-size:40px;
  color:#1c8c3a;
  margin-bottom:15px;
}

.contact-glass:hover{
  transform:translateY(-12px) scale(1.05);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* FORM */
.send-message-section{
  min-height:80vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(135deg,#e6f7c9,#f4ffe9);
  padding:40px 20px;
}

.send-card{
  width:100%;
  max-width:520px;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,0.55);
  padding:45px;
  border-radius:30px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,.2);
}

.send-card h2{
  color:#1c8c3a;
  margin-bottom:5px;
}

.send-card p{
  color:#666;
  margin-bottom:30px;
}

/* INPUT BOX */
.input-box{
  position:relative;
  margin-bottom:25px;
}

.input-box input,
.input-box textarea{
  width:100%;
  padding:14px 12px;
  border:none;
  outline:none;
  background:rgba(255,255,255,.8);
  border-radius:12px;
  font-size:15px;
}

.input-box textarea{
  resize:none;
  height:120px;
}

.input-box label{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#777;
  pointer-events:none;
  transition:.4s;
}

.input-box span{
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:3px;
  background:#1c8c3a;
  transition:.4s;
  border-radius:10px;
}

.input-box input:focus + label,
.input-box textarea:focus + label,
.input-box input:valid + label,
.input-box textarea:valid + label{
  top:-8px;
  font-size:12px;
  color:#1c8c3a;
  background:#fff;
  padding:0 6px;
}

.input-box input:focus ~ span,
.input-box textarea:focus ~ span{
  width:100%;
}

/* BUTTON */
.send-btn{
  width:100%;
  padding:14px;
  background:#1c8c3a;
  color:#fff;
  border:none;
  border-radius:30px;
  font-size:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  cursor:pointer;
  overflow:hidden;
  position:relative;
  transition:.4s;
}

.send-btn:hover{
  background:#145f2a;
  transform:translateY(-2px);
}

.send-btn i{
  transition:.4s;
}

.send-btn:hover i{
  transform:translateX(5px);
}

/* SUCCESS MESSAGE */
.success-msg{
  display:none;
  margin-top:20px;
  color:#1c8c3a;
  font-weight:600;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:600px){
  .send-card{
    padding:30px;
  }
}


/* MAP */
.contact-map iframe{
  width:100%;
  height:350px;
  border:none;
  border-radius:20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:60px;
  height:60px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  z-index:999;
  transition:.3s;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.delay-1{transition-delay:.3s}
.delay-2{transition-delay:.6s}

/* RESPONSIVE */
@media(max-width:900px){
  .form-grid{
    grid-template-columns:1fr;
  }
}

/* deals */
/* HERO */
.deals-hero{
  text-align:center;
  padding:50px 20px;
}
.deals-hero h1{
  color:#0b3d2e;
  font-size:38px;
}
.deals-hero p{
  max-width:900px;
  margin:auto;
  color:#555;
  line-height:1.7;
}

/* LAYOUT */
.deals-container{
  padding:40px;
}
.deals-layout{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:30px;
}

/* GRID */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.product-card{
  background:#fff;
  border-radius:22px;
  padding:25px;
  transition:.4s;
  border:1px solid #eee;
}
.product-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  transition:.4s;
}
.product-card h4{
  margin:15px 0;
  color:#0b3d2e;
}
.price{
  font-weight:600;
}
.price span{
  color:#aaa;
  text-decoration:line-through;
}
.member{
  color:#2e7d32;
  font-size:14px;
}
.actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.actions button{
  background:#0b3d2e;
  color:#fff;
  border:none;
  padding:6px 14px;
  border-radius:6px;
}

/* HOVER */
.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.product-card:hover img{
  transform:scale(1.08);
}

/* ACTIVE CARD */
.active-card{
  border:2px solid #0b3d2e;
}

/* CATEGORY */
.category-sidebar{
  background:#fff;
  padding:25px;
  border-radius:20px;
  position:sticky;
  top:120px;
}
.category-sidebar h3{
  color:#0b3d2e;
  margin-bottom:20px;
}
.category-sidebar button{
  width:100%;
  margin-bottom:10px;
  padding:10px;
  border-radius:10px;
  border:1px solid #eee;
  background:#f4ffe9;
  cursor:pointer;
  transition:.3s;
}
.category-sidebar button.active,
.category-sidebar button:hover{
  background:#0b3d2e;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
  .deals-layout{
    grid-template-columns:1fr;
  }
}
/* image */
.organic-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:80px 60px;
  background:linear-gradient(120deg,#cfe9dc,#f4fff9);
  border-radius:40px;
  margin:40px;
  overflow:hidden;
}

/* LEFT CONTENT */
.hero-content h1{
  font-size:48px;
  color:#0b3d2e;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
}

/* SUBSCRIBE */
.hero-subscribe{
  display:flex;
  max-width:420px;
  background:#fff;
  border-radius:40px;
  padding:6px;
  box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.hero-subscribe input{
  flex:1;
  border:none;
  outline:none;
  padding:14px 20px;
  border-radius:40px;
}

.hero-subscribe button{
  background:#0b3d2e;
  color:#fff;
  border:none;
  padding:14px 30px;
  border-radius:40px;
  cursor:pointer;
  transition:.3s;
}

.hero-subscribe button:hover{
  background:#145f2a;
}

/* RIGHT VISUAL */
.hero-visual{
  position:relative;
  height:420px;
}

.float-img{
  position:absolute;
  width:160px;
  animation:float 6s ease-in-out infinite;
}

.img1{ top:20px; left:60px; animation-delay:0s;}
.img2{ top:120px; right:40px; animation-delay:1s;}
.img3{ bottom:40px; left:120px; animation-delay:2s;}
.img4{ bottom:80px; right:100px; animation-delay:3s;}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-20px)}
  100%{transform:translateY(0)}
}

/* RESPONSIVE */
@media(max-width:992px){
  .organic-hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-visual{
    margin-top:40px;
  }

  .hero-subscribe{
    margin:auto;
  }
}

/* .product-card */
.product-card img{
  height: 180px;
  object-fit: contain;
}

/* search */
.suggestions-box{
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
  max-height: 250px;
  overflow-y: auto;
}

.suggestion-item{
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.suggestion-item:hover{
  background: #f3fff5;
}

/* Fix Count Badge UI (Looks small / not visible) */

.icon-link {
  position: relative;
  font-size: 22px;
  color: #0a8f4e;
  text-decoration: none;
  margin-left: 15px;
}

.badge {
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 50%;
}

/* ================================
   Professional Search Bar
================================ */
.pro-search{
  width: 520px;                /* 🔥 perfect size */
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  padding: 8px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  position: relative;
}

/* icon */
.pro-search .search-icon{
  font-size: 16px;
  color: #666;
  padding-left: 10px;
}

/* input */
.pro-search input{
  border: none !important;
  outline: none !important;
  width: 100%;
  font-size: 14px;
  background: transparent;
  color: #111;
  padding: 8px 0;
}

/* placeholder */
.pro-search input::placeholder{
  color: #888;
  font-size: 13px;
}

/* button */
.pro-search .search-btn{
  border: none;
  outline: none;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.pro-search .search-btn:hover{
  background: #222;
  transform: translateY(-1px);
}

/* focus effect (black) */
.pro-search:focus-within{
  border: 1px solid #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* remove bootstrap blue focus */
#searchBox:focus{
  outline: none !important;
  box-shadow: none !important;
}

/* ================================
   Responsive for Mobile
================================ */
@media(max-width:768px){
  .pro-search{
    width: 100%;
  }
  .pro-search .search-btn{
    display: none; /* mobile clean look */
  }
}
.suggestions-box{
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  z-index: 9999;
}

.suggestion-item{
  padding: 12px 14px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

.suggestion-item:hover{
  background: #f8f8f8;
}


/* wishlist and cart styling */
/* =========================
   Professional Icon Buttons
========================= */
.icon-btn{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  transition: 0.25s ease;
  margin-left: 12px;
}

.icon-btn i{
  font-size: 18px;
  color: #111;
}

.icon-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Count Badge (small + perfect) */
.count-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Enquiry Modal Styling */
.enquiry-modal{
  border-radius: 18px;
  overflow: hidden;
}

.enquiry-product-box{
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 14px;
}
/* Bulk CTA Box (Professional) */
.bulk-cta-box{
  margin-top: 18px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: floatBox 2.8s ease-in-out infinite;
}

.bulk-cta-left h4{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.bulk-cta-left p{
  margin: 6px 0 0;
  font-size: 13px;
  color: #444;
}

.bulk-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-btn-dark{
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn-dark:hover{
  background: #222;
  transform: translateY(-2px);
}

.cta-btn-light{
  background: #fff;
  border: 1px solid #ddd;
  color: #111;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn-light:hover{
  border-color: #000;
  transform: translateY(-2px);
}

@keyframes floatBox{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-3px); }
}

@media(max-width:768px){
  .bulk-cta-box{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ==========================
   Footer
========================== */
.new-footer{
  margin-top: 60px;
  padding: 50px 0 20px;
  background: #f9fbff;
  border-top: 1px solid #e6eef7;
}


.new-footer-top{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 25px;
  align-items: start;
}

/* Footer box */
.new-footer-box{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border: 1px solid #eef2f7;
  transition: 0.3s ease;
}

.new-footer-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

/* Brand box special */
.brand-box{
  background: linear-gradient(135deg, rgba(18,213,181,0.18), rgba(10,102,194,0.18));
}

.footer-brand{
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0a66c2;
}

.footer-brand span{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

.new-footer-box p{
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Titles */
.new-footer-box h4{
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #111;
}

/* Links */
.new-footer-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-box ul li{
  margin-bottom: 10px;
}

.new-footer-box ul li a{
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: 0.25s ease;
}

.new-footer-box ul li a:hover{
  color: #0a8f4e;
  padding-left: 5px;
}

/* Social Icons - must be horizontal */
.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e6eef7;
  color: #0a66c2;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover{
  background: #0a66c2;
  color: #fff;
  transform: translateY(-3px);
}

/* WhatsApp button */
.footer-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-btn:hover{
  background: #1ebe57;
  transform: translateY(-2px);
}

/* Bottom Bar */
.new-footer-bottom{
  text-align: center;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #e6eef7;
  font-size: 13px;
  color: #555;
}

/* Responsive */
@media(max-width:992px){
  .new-footer-top{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:576px){
  .new-footer-top{
    grid-template-columns: 1fr;
  }
}
/* Full width map */
.map-full{
  width: 100%;
  margin-top: 30px;
}

.map-full iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* Mobile map height */
@media(max-width:576px){
  .map-full iframe{
    height: 300px;
    border-radius: 12px;
  }
}


/* Carousel image size */
.hero-img{
  height: 460px;
  object-fit: cover;
}

/* Search suggestions box */
.suggestions-box{
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  display: none;
  z-index: 9999;
}

.suggestion-item{
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}

.suggestion-item:hover{
  background: #f3f7f3;
}

/* Add to cart button */
.add-cart-btn{
  background: #198754;
  border: none;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s;
}

.add-cart-btn:hover{
  background: #146c43;
}
<style>
    /* Cart Item Small Card */
    .cart-item{
      background: #fff;
      border-radius: 16px;
      padding: 12px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 12px;
    }

    .cart-item img{
      width: 90px;
      height: 90px;
      object-fit: contain;
      background: #f7f7f7;
      border-radius: 12px;
      padding: 10px;
      flex-shrink: 0;
    }

    .cart-details{
      flex: 1;
    }

    .cart-details h5{
      font-size: 14px;
      font-weight: 700;
      margin: 0 0 4px;
      color: #111;
    }

    .cart-details .meta{
      font-size: 12px;
      color: #666;
      margin-bottom: 4px;
    }

    .cart-details .price{
      font-size: 14px;
      font-weight: 800;
      color: #0a8f4e;
    }

    .qty-controls{
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
    }

    .qty-controls button{
      width: 28px;
      height: 28px;
      border: none;
      border-radius: 8px;
      background: #000;
      color: #fff;
      font-weight: 800;
      cursor: pointer;
    }

    .qty-controls span{
      min-width: 26px;
      text-align: center;
      font-weight: 700;
      font-size: 13px;
    }

    .remove-btn{
      border: none;
      background: #fff;
      color: #dc3545;
      font-weight: 700;
      cursor: pointer;
      font-size: 13px;
    }

    .summary-box{
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }
    .remove-btn{
  border: 1px solid #dc3545;
  background: #fff;
  color: #dc3545;
  font-weight: 800;
  cursor: pointer;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.remove-btn:hover{
  background: #dc3545;
  color: #fff;
}
/* Small Professional Card */
.mini-card {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.25s ease;
    height: 100%;
}

    .mini-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 22px rgba(0,0,0,0.14);
    }

    .mini-card img {
        width: 100%;
        height: 120px;
        object-fit: contain;
        border-radius: 12px;
        background: #f7f7f7;
        padding: 10px;
    }

    .mini-card h5 {
        font-size: 14px;
        font-weight: 700;
        margin: 10px 0 6px;
        color: #111;
    }

    .mini-card .small-text {
        font-size: 12px;
        color: #666;
        margin-bottom: 6px;
    }

    .mini-card .price {
        font-size: 14px;
        font-weight: 800;
        color: #0a8f4e;
        margin-bottom: 10px;
    }

    .mini-card button {
        width: 100%;
        border: none;
        padding: 8px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        background: #000;
        color: #fff;
    }

        .mini-card button:hover {
            background: #222;
        }