.specialTiffinCard{
    margin-bottom: 35px !important;
}

.navbar-brand img{
    height: 65px !important;
}

.footerLogo img{
     height: 80px !important;
}

.specialTiffinCard .specialTiffinCardInner .specialTiffinImg img{
    /*    border-radius: 100%;
    border: 4px solid #ffa31e;*/
}

.specialTiffinCard .specialTiffinCardInner .specialTiffinContent{
     border-radius: 10px 10px 0 0;   
}

.specialTiffinSecondaryGroup .specialTiffinSecondaryItem .specialTiffinSecondaryContent h4 a{
    color: #000 !important;
}
 .action-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .qty-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .qty-btn {
      background: #ffa31e;
      color: #fff;
      border: none;
      font-size: 20px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .qty-btn:hover {
      background: #ffa31e;
    }

    .qty-value {
      min-width: 30px;
      text-align: center;
      font-size: 18px;
    }

    .cart-btn {
      background: #ffa31e;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.3s ease;
    }

    .cart-btn:hover {
      background: #059669;
    }

    .cart-summary {
      margin-top: 20px;
      font-size: 16px;
      color: #333;
    }

  .specialTiffinSecondaryGroup .specialTiffinSecondaryItem{
    background-color: #fff;
    border-radius: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 20px 20px 20px;
    margin-bottom: 20px;
}

.specialTiffinPrice span {
    color: #111111;
    font-size: 18px;
    font-weight: 500;
}

.specialTiffinCard{
background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ourChefCard .ourChefCardInner .ourChefContent h6 {
  color: #ffa31e !important;
}


.ourChefCard .ourChefCardInner .ourChefContent{
  height:230px !important
} 
    
    .product-info {
      display: flex;
      gap: 15px;
    }

    .product-info img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
    }

    .product-text h4 {
      margin: 0;
      font-size: 15px;
      font-weight: 500;
      color: #1f2937;
    }

    .product-text small {
      display: block;
      color: #6b7280;
      margin-top: 5px;
    }

    .price,
    .subtotal {
      font-weight: 600;
      color: #25635a;
    }

    .remove {
      color: #ef4444;
      cursor: pointer;
      font-size: 20px;
      padding-right: 10px;
    }

    .cart-actions {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: space-between;
      align-items: center;
    }

    .coupon-input {
      display: flex;
      width: 100%;
      max-width: 400px;
    }

    .coupon-input input {
      flex: 1;
      padding: 12px;
      border: 1px solid #d1d5db;
      border-radius: 5px 0 0 5px;
      font-size: 14px;
    }

    .coupon-input button {
      padding: 12px 20px;
      background: #1f2937;
      color: white;
      border: none;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .update-btn {
      background: #9ca3af;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
      .product-info {
        flex-direction: column;
        align-items: flex-start;
      }

      .cart-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .coupon-input {
        max-width: 100%;
      }
    }
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
}

/* Popup modal */
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
}
.image-popup img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
.image-popup-close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* Swiper navigation buttons */
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet {
  background: #fff;
}

.ourBlog .ourBlogInner .ourBlogItem{
  margin-bottom: 40px;
}

.ourBlogItem .ourBlogTxt h3{
  font-size: 36px !important;
}


.features {
  background: url('../images/feature-bg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
}

/* Overlay for better text visibility */
.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.features-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual feature box */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature i {
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
}

.feature h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.feature p {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

/* Responsive text */
@media (max-width: 500px) {
  .feature h3 {
    font-size: 18px;
  }
  .feature p {
    font-size: 14px;
  }
}


.pricing{
  padding:80px 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.plan-card {
    border: 2px solid #ddd;
    text-align: center;
    padding: 20px;
    position: relative;
    border-radius: 8px;
    background: #fff;
    transition: 0.3s;
}
.plan-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.plan-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8bc34a;
    color: #000;
    padding: 8px 14px;
    font-weight: bold;
    font-size: 14px;
    clip-path: polygon(100% 0, 100% 70%, 85% 100%, 0% 100%, 0 0);
}
.price-tag small {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

.plan-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.plan-features {
    margin: 20px 0;
}
.plan-features p {
    margin: 10px 0;
    padding: 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
}
.plan-features p:last-child {
    border-bottom: none;
}

.select-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}
.green { border-color: #8bc34a; }
.green .price-tag { background: #8bc34a; }
.green .select-btn { background: #8bc34a; }

.orange { border-color: #ff9800; }
.orange .price-tag { background: #ff9800; }
.orange .select-btn { background: #ff9800; }



/* floating icons */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons .whatsapp {
  background-color: #25D366;
}

.floating-buttons .call {
  background-color: #0d6efd; /* Bootstrap blue */
}
