body {
  padding-bottom: 70px;
  zoom: 0.8;
}



/* ///////////////////////   NAVBAR ////////////////////////////////////////////////////////////////// */
/* Navbar Brand & Links */
.navbar-brand {
  font-size: 1.5rem;
}


/* Navbar aur Slider ke beech 10px ka gap */
.navbar.fixed-top + #chickenSlider {
  margin-top: 10px !important;
}


.nav-link {
  font-size: 1rem;
  margin-left: 10px;
  columns: #ffffff;
}
.nav-link:hover{
   transform: scale(1.1);
  transition: transform 0.3s ease;
}
/* Sticky Navbar adjustment */
body {
  padding-top: 70px; /* navbar height ke hisab se adjust karein */
}

/* Cart badge styling */
#cart-count {
  position: absolute;
  top: 0;
  right: -10px;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}


/* ////////////////////////////////////////////////////////////////////////////////////// */


/* /////////////////////////// Slider css ////////////////////////////////////////////// */


/* ===== Slider Image Fit ===== */




.slider-img {
  height: 300px;          /* Chhoti height */
  width: 100%;
  object-fit: contain;    /* 🔥 Image puri dikhegi */
  background-color: #000; /* Empty space black */
}

/* Overlay (light) */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Caption */
.carousel-caption {
  z-index: 2;
  bottom: 18%;
}

.carousel-caption h2 {
  font-size: 2rem;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 1rem;
}

/* Controls visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Indicators size */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .slider-img {
    height: 220px;        /* Mobile me aur kam */
  }

  .carousel-caption {
    bottom: 10%;
  }

  .carousel-caption h2 {
    font-size: 1.3rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }
}



/* /////////////////////////////////////////////////// Product page css //////////////////////////////// */

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f5f6f7;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  max-width: 1400px;
  margin: auto;
  padding: 50px 15px;
}
.qty-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin:5px 0;
}

.qty-input{
    width:60px;
    padding:6px;
    height:38px;
    border:1px solid #ddd;
    border-radius:6px;
    text-align:center;
    box-sizing:border-box;
}

.unit-select{
    border:1px solid #ddd;
    border-radius:6px;
    background:#fff;
    box-sizing:border-box;
    margin-top: 6px;
}

.final-price{
    font-size:12px;
    font-weight:600;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 35px;
}

/* ===== GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Desktop 6 */
  gap: 16px;
  justify-content: center;
}

/* ===== CARD ===== */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.14);
}

/* ===== BADGE ===== */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #28a745;
  color: #fff;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
}

.badge.best {
  background: #dc3545;
}

/* ===== IMAGE ===== */
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* ===== BODY ===== */
.product-body {
  padding: 12px;
}

.product-body h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-body p {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

/* ===== SELECT ===== */
.product-body select {
  width: 100%;
  padding: 6px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 8px;
}

/* ===== BUTTON ROW ===== */
.btn-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.btn-cart {
  flex: 1;
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 6px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-wish {
  width: 36px;
  border: 1px solid #dc3545;
  background: #fff;
  color: #dc3545;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* ===== BUY BUTTON ===== */
.btn-buy {
  width: 100%;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  border: none;
  padding: 7px;
  font-size: 14px;
  border-radius: 7px;
  cursor: pointer;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .product-section {
    padding: 40px 10px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card img {
    height: 130px;
  }

  .section-title {
    font-size: 26px;
  }
}




/* //////////////////////////////////////////////////////////////////////// about page css ////////////////////// */



/* ===== About Section ===== */
.about-section {
  padding: 70px 0;
  background-color: #ffffff;
}

/* Image */
.about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.about-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-highlight {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Points */
.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }

  .halal-complete-section {
  background: #fffaf7;
}

.main-title {
  color: #dc3545;
  font-weight: 800;
}

.subtitle {
  color: #666;
}

.section-heading {
  color: #dc3545;
  margin-bottom: 15px;
}

.content-box,
.faq-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.custom-list {
  padding-left: 18px;
}

.custom-list li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 22px;
  }
}
}
/* end about section */


/* //////////////////////////////////////////Contuct us page ///////////////////////////////////// */



/* ===== Contact Section ===== */
.contact-section {
  padding: 70px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-form h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.map-box {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Details */
.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}



/* /////////////////////////////////////////////////////  help ///////////////////////////////////// */


/* ===== FAQ Section ===== */
.faq-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* Accordion */
.accordion-item {
  border-radius: 10px;
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  font-weight: 600;
  color: #dc3545;
}

.accordion-button:not(.collapsed) {
  background-color: #dc3545;
  color: #fff;
}

.accordion-body {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


/* ///////////////////////////////what app /////////////////////////////// */


/* ///////////////////////////////what app /////////////////////////////// */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #25d366;
  padding: 14px 18px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;   /* underline hataega */
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile View */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 80px;
    padding: 12px 14px;
  }
}

/* Very Small Devices */
@media (max-width: 430px) {
  .whatsapp-float {
    bottom: 75px;
    right: 15px;
  }
}

.whatsapp-logo {
  font-size: 35px;
  color: #ffffff;
  line-height: 1;
  display: block;          /* line ke issue ko fix karega */
  text-decoration: none;   /* extra safety */
}

@media (max-width: 576px) {
  .whatsapp-logo {
    font-size: 30px;
  }
}

@media (max-width: 430px) {
  .whatsapp-logo {
    font-size: 28px;
  }
}


/* //////////////////////////////////////////////////////////////////Footer css //////////////////////////// */


/* ===== Footer ===== */
.footer {
  background-color: #212529;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #dc3545;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #dc3545;
  transform: scale(1.2);
}

/* Bottom */
.footer hr {
  border-color: #444;
  margin: 30px 0 15px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}


/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}















/* //////////////////////// extra thing ////////////////////////// */



.extra-img {
  width: 100%;
  margin: 40px 0;
  text-align: center;
}

.extra-img img {
  width: 100%;
  height: auto;          /* 🔥 auto height */
  max-height: 400px;     /* optional limit */
  object-fit: contain;  /* 🔥 NO CROP */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #f8f9fa; /* empty space clean lage */
}

Hover effect
.extra-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .extra-img img {
    height: 220px;
    border-radius: 8px;
  }
}



/* ////////////////////////////////////// niche wala footer ///////////////////// *//* ===== FOOTER NAVBAR ===== */
/* ===== FOOTER NAVBAR (RED THEME) ===== */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 62px;
  background: #dc3545; /* Bootstrap Danger */
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(220,53,69,0.4);
}

/* ===== FOOTER ITEMS ===== */
.footer-item {
  text-decoration: none;
  color: #f8f9fa; /* light text */
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

/* ICONS */
.footer-item i {
  font-size: 20px;
  margin-bottom: 2px;
}

/* ACTIVE & HOVER */
.footer-item:hover,
.footer-item.active {
  color: #fff;
  transform: translateY(-2px);
}

/* CART ICON SPECIAL */
.footer-item.cart i {
  font-size: 23px;
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 992px) {
  .mobile-footer {
    height: 64px;
    border-radius: 14px 14px 0 0;
  }

  .footer-item {
    font-size: 13px;
  }

  .footer-item i {
    font-size: 22px;
  }
}

/* ===== BODY SAFE SPACE ===== */
body {
  padding-bottom: 70px;
}
