body {
  font-family: Arial;
  margin: 0;
  background: #f4f4f4;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
background: #FFFFFF;
  color: white;
  padding: 0px;
}

.header input {
  width: 40%;
  padding: 8px;
}

.cart-icon {
  cursor: pointer;
  font-size: 20px;
  padding-top: 15px;
margin-right:15px;
}

.filters {
  text-align: center;
  margin: 15px;
}

.filters button {
  margin: 5px;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
  background: #fff;
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}
.modal-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 14px;
}

.new-price {
  color: #2e7d32;
  font-weight: bold;
  font-size: 18px;
}
.card {
  background: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.price {
  color: green;
  font-weight: bold;
}

button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-top: 5px;
}

/* CART */
.cart {
  position: fixed;
  right: -400px;
  top: 0;
  width: 300px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  padding: 20px;
  transition: 0.3s;
}

.cart.open {
  right: 0;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: white;
  width: 300px;
  margin: 10% auto;
  padding: 20px;
}

.close {
  float: right;
  cursor: pointer;
}

.footer {
  background: #1f2937;
  color: #fff;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #4ade80;
}

.footer-column p,
.footer-column li {
  color: #d1d5db;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 450px;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

#checkoutForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#checkoutForm input,
#checkoutForm textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#checkoutForm button {
  background: #2e7d32;
  color: white;
  padding: 10px;
}

.cart button {
  width: 100%;
  margin-top: 10px;
}

button {
  position: relative;
}

.btn-spinner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 10px;
  gap: 12px;
}

.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.quince {
  width: 20%;
  padding: 8px;
  border-radius: 35px;
  border: 1px solid #ccc;
}

@media (max-width: 600px) {

  .header {
    gap: 10px;
    padding: 10px;
  }

  .logo img {
    width: 70px;
    height: 70px;
  }

  .quince {
    flex: 1;
    width: auto;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 25px;
  }

  .cart-icon {
    font-size: 22px;
    margin-left: 0;
    padding-top: 0;
  }
}

.how-it-works{
    background:#fff;
    padding:70px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.how-it-works h2{
    text-align:center;
    color:#2e7d32;
    font-size:34px;
    margin-bottom:10px;
}

.section-description{
    text-align:center;
    color:#666;
    max-width:700px;
    margin:0 auto 50px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.step-card{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-8px);
}

.step-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#e8f5e9;
    display:flex;
    align-items:center;
    justify-content:center;
}

.step-icon i{
    font-size:35px;
    color:#2e7d32;
}

.step-card h3{
    margin-bottom:15px;
    color:#222;
}

.step-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

    .how-it-works{
        padding:50px 15px;
    }

    .how-it-works h2{
        font-size:28px;
    }

    .steps{
        grid-template-columns:1fr;
    }
}
@media (max-width:768px) {
    .slide img{
        height:130px;
    }

  .banner-slider {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}
}

@media (max-width:600px) {
    .slide img{
        height:130px;
    }

  .banner-slider {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}
}

.toast{
    position:fixed;
    right:20px;
    top:20px;
    background:#16a34a;
    color:#fff;
    padding:12px 18px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    opacity:0;
    transform:translateY(-20px);
    transition:.3s;
    z-index:9999;
}

.toast.show{
    opacity:1;
    transform:translateY(0);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

#cartCount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Order Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;

    background: #4CAF50;
    color: white;

    padding: 15px 25px;
    border-radius: 8px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    opacity: 0;
    transform: translateY(-30px);

    pointer-events: none;

    transition: all 0.4s ease;

    z-index: 9999;
}
.notification.show {
    opacity: 1;
    transform: translateY(0);
}
.notification.error {
    background:#dc3545;
}