/* ===============================
   GLOBAL
================================ */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* ===============================
   HERO SECTION
================================ */


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 45%), rgb(0 0 0 / 35%), rgba(0, 0, 0, 0.15))
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* ===============================
   ANIMATIONS
================================ */
.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   FEATURE CARDS
================================ */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ===============================
   PRODUCT CARDS
================================ */
.card img {
  object-fit: cover;
}

/* ===============================
   TESTIMONIALS
================================ */
.bg-light .card {
  background-color: #ffffff;
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #ffffff;
}

/* ===============================
   BUTTON TWEAKS
================================ */
.btn-warning {
  font-weight: 600;
}

.btn-outline-light:hover {
  color: #000;
  background-color: #ffffff;
}

/* ================= HEADER ================= */

.logo-circle{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ffc107;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.logo-text{
  font-weight:700;
  color:#000;
}

.nav-link {
  font-weight: 500;
  color: #555;
}

.nav-link:hover {
  color: #f59e0b;
}

.nav-link.active {
  color: #f59e0b;
  font-weight: 600;
}

/* Mobile CTA spacing */
@media (max-width: 767px) {
  .navbar-collapse .btn {
    width: 100%;
    margin-top: 12px;
  }
}

/* ================= FOOTER ================= */

.footer-section {
  background-color: #111827;
  color: #ffffff;
  overflow:hidden;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: #f59e0b;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f59e0b;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #f59e0b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.product-card {
  animation-delay: 0.2s;
}

.object-fit-cover {
  object-fit: cover;
}

.product-details{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .45s ease,opacity .3s ease;
}
.product-details.show{
  max-height:300px;
  opacity:1;
}

.process-section {
  background: #fffaf3;
}

.process-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 25px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #fff3cd;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.process-card .step {
  position: absolute;
  top: 15px;
  right: 18px;
  font-weight: 700;
  color: #ffc107;
  font-size: 14px;
}

.process-card.highlight {
  border: 2px solid #ffc107;
}

.health-section {
  background: linear-gradient(135deg, #fff7e6, #fff);
}

.health-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
}

.health-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

.health-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.health-card h6 {
  font-weight: 700;
  margin-bottom: 8px;
}

.health-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.testimonial-section {
  background: linear-gradient(135deg, #fff7e6, #ffffff);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: "❝";
  position: absolute;
  top: 18px;
  right: 25px;
  font-size: 60px;
  color: rgba(255,193,7,0.2);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.15);
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffc107;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer h6 {
  margin-bottom: 2px;
  font-weight: 700;
}

.reviewer small {
  color: #777;
}


/* Flipkart Style Action Bar */
.product-action-bar{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:6px;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.qty-flipkart{
  display:flex;
  align-items:center;
  border:1px solid #ddd;
  border-radius:8px;
  overflow:hidden;
}

.qty-flipkart button{
  width:32px;
  height:34px;
  border:none;
  background:#f1f3f6;
  font-size:20px;
  font-weight:600;
  cursor:pointer;
}

.qty-flipkart input{
  width:44px;
  border:none;
  text-align:center;
  font-weight:600;
  outline:none;
}

.order-btn{
  flex:1;
  border-radius:8px;
  padding:6px 10px;
  font-size:14px;
}

.share-mini{
  display:flex;
  gap:6px;
}

.share-mini a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid #ddd;
  color:#555;
  transition:.2s;
}

.share-mini .wa:hover{
  background:#25d366;
  color:#fff;
  border-color:#25d366;
}

.share-mini .fb:hover{
  background:#1877f2;
  color:#fff;
  border-color:#1877f2;
}

/* Mobile Perfect Fit */
@media(max-width:576px){
  .product-action-bar{
    padding:4px;
    gap:6px;
  }

  .order-btn{
    font-size:13px;
    padding:5px 8px;
  }
}


.product-img-box{
  background: linear-gradient(145deg,#f9fafb,#ffffff);
  border-radius:16px;
  padding:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  position:relative;
  transition:.3s ease;
}

.product-img-box:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 26px rgba(0,0,0,.12);
}

.product-img-box img{
  max-height:200px;
  object-fit:contain;
}

.product-img-2{
  width: 48%;
  height: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

/* Mobile responsive */
@media (max-width: 576px){
  .product-img-2{
    height: 200px;
  }
}

.product-img-3{
  width: 48%;
  height: 230px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

/* Mobile responsive */
@media (max-width: 576px){
  .product-img-3{
    height: 230px;
  }
}

.best-badge{
  position:absolute;
  top:10px;
  left:10px;
  border-radius:8px;
  padding:5px 10px;
  font-size:12px;
}

/* ================= HOME PRODUCT CARD ================= */

.home-img-box{
  height:200px;
  background:linear-gradient(145deg,#fafafa,#ffffff);
  border-radius:18px;
  margin:14px;
  padding:12px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.home-product-img{
  max-height: 200px;
  object-fit:contain;
}

.home-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#ffc107;
  color:#000;
  padding:4px 10px;
  border-radius:10px;
  font-size:12px;
  font-weight:600;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.home-product-card{
  border-radius:20px;
  overflow:hidden;
  transition:.3s ease;
}

.home-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

/* Mobile */
@media(max-width:576px){
  .home-img-box{
    height: 200px;
    margin:10px;
  }

  .home-product-img{
    max-height:200px;
  }
}

.home-img-box{
  position: relative;
}

.home-product-img-2{
  /* width: 50%; */
  height: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
@media (max-width:576px){
  .home-product-img-2{
    height: 200px;
  }
}

.home-product-img-3{
  /* width: 50%; */
  height: 210px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
@media (max-width:576px){
  .home-product-img-3{
    height: 210px;
  }
}


.order-modal{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.order-modal .modal-header{
  background:linear-gradient(135deg,#f59e0b,#fbbf24);
  color:#000;
}

.order-modal .form-control,
.order-modal .form-select{
  border-radius:10px;
  padding:10px 14px;
}

.order-modal label{
  font-weight:600;
  font-size:14px;
}

.order-modal button{
  border-radius:12px;
  font-weight:600;
}


.shipping-banner{
  background: linear-gradient(135deg,#ecfeff,#fff7ed);
  border:1px dashed #f59e0b;
  border-radius:14px;
  padding:12px 16px;
  font-weight:600;
  color:#92400e;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}


.about-hero{
  background:linear-gradient(135deg,#fff7e6,#ffffff);
}

.about-owner img{
  border:4px solid #ffc107;
}

/* ================= ABOUT PAGE PREMIUM UI ================= */

/* Hero Section */
.about-hero,
.bg-light.text-center {
  background: linear-gradient(135deg,#fff7e6,#ffffff);
}

/* Story Section Card Feel */
.about-story-box{
  background:rgba(255,255,255,0.9);
  border-radius:22px;
  padding:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* Founder Section Premium */
.founder-card{
  background:linear-gradient(145deg,#ffffff,#fff8ec);
  border-radius:26px;
  padding:30px;
  box-shadow:0 25px 60px rgba(0,0,0,.1);
  transition:.4s ease;
}

.founder-card:hover{
  transform:translateY(-6px);
  box-shadow:0 35px 80px rgba(0,0,0,.18);
}

.founder-img{
  border:5px solid #ffc107;
  padding:4px;
  background:#fff;
}

/* Legal Cards Premium */
.legal-card{
  background:linear-gradient(145deg,#ffffff,#fffaf1);
  border-radius:22px;
  padding:28px 22px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.legal-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,193,7,.15),transparent);
  opacity:0;
  transition:.4s;
}

.legal-card:hover::before{
  opacity:1;
}

.legal-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 65px rgba(0,0,0,.15);
}

/* Payment Card Premium */
.payment-card{
  background:linear-gradient(145deg,#ffffff,#fff8ec);
  border-radius:26px;
  padding:30px;
  box-shadow:0 22px 55px rgba(0,0,0,.1);
}

.payment-card p{
  margin-bottom:8px;
  font-weight:500;
}

/* QR Box */
.qr-box{
  background:#ffffff;
  border-radius:24px;
  padding:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  transition:.35s;
}

.qr-box:hover{
  transform:scale(1.05);
}

/* CTA Premium Glow */
.cta-premium{
  background:linear-gradient(135deg,#f59e0b,#fbbf24);
  box-shadow:0 18px 50px rgba(245,158,11,.55);
}

/* Smooth Animation */
.fade-up{
  animation:fadeUp .9s ease both;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Founder & CEO Image Perfect Circle */
.founder-img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:50%;
  border:5px solid #ffc107;
  padding:3px;
  background:#fff;
}




.product-carousel{
  background:#fff;
  border-radius:10px;
  padding:10px;
}

.product-img-slider{
  height:220px;
  object-fit:contain;
}

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon{
  background-color:rgba(0,0,0,0.4);
  border-radius:50%;
  padding:10px;
}

.product-carousel{
  height:250px;
}


/* HERO SLIDER */
/* HERO SLIDER */
.hero-slider,
#heroCarousel,
.carousel-inner,
.carousel-item {
  height: 85vh;
}

/* Each slide */
.hero-slide {
  height: 85vh;
  position: relative;
}

/* Overlay for better visibility */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.45); */
}

/* Content above overlay */
.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* Mobile fix */
@media (max-width: 992px) {
  .hero-slider,
  #heroCarousel,
  .carousel-inner,
  .carousel-item,
  .hero-slide {
    height: 60vh;
  }
}

@media (max-width: 576px) {
  .hero-slider,
  #heroCarousel,
  .carousel-inner,
  .carousel-item,
  .hero-slide {
    height: 50vh;
  }

  .hero-slide h1 {
    font-size: 24px;
  }

  .hero-slide p {
    font-size: 14px;
  }

  .hero-slide .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/*-------Hero Text------*/
.text-overlay{
  display:inline;
  padding:4px 8px;
  background:rgba(0,0,0,0.45);
  border-radius:4px;
}

.price-box{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.new-price{
  font-size:24px;
  font-weight:700;
  color:#f4b400;
}

.old-price{
  font-size:16px;
  color:#888;
  text-decoration:line-through;
}

.kds-red{
  color:#ff3b3b; /* brighter red */
  font-weight:700;
  text-shadow: 0 0 6px rgba(255,255,255,0.9),
               0 0 10px rgba(255,255,255,0.7);
}
