


body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8e1;
}

#order-section {
  margin-top: 180px;
  text-align: center;
  padding: 20px;
}

#order-section h1 {
  /* color: #e67e22; */
  color: #D35400;
  margin-bottom: 10px;
}

#order-section p {
  margin-bottom: 40px;
  color:black;
}


.order-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
  padding: 20px;
  justify-items: center;
}


.order-item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 260px;
  min-height: 380px;
  text-align: left;
  overflow: hidden;
  padding-bottom: 15px;
}

.order-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.order-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}


.like-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 1.6em;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease, transform 0.2s ease;
}
.like-btn:hover,
.like-btn.liked {
  color: red;
  transform: scale(1.1);
}


.order-item h2 {
  margin: 15px;
  font-size: 1.2em;
  color: #222;
}
.order-item p {
  margin: 0 15px 10px 15px;
  color: #555;
  font-size: 0.95em;
}

.rating {
  margin: 10px 15px 5px 15px;
}
.rating span {
  font-size: 1.2em;
  cursor: pointer;
  color: #ccc;
}
.rating span:hover {
  color: #e67e22;
}

.order-item .actions {
  display: flex;
  align-items: center;
  margin-left: 15px;
  gap: 10px;
}

.order-item input {
  width: 50px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.add-cart-btn {
  background-color: #D35400;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.add-cart-btn:hover {
  background-color: #cf6b10;
}


.cart-summary {
  position: fixed;
  right: 20px;
  top: 120px;
  width: 250px;
  border: 1px solid #ccc;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cart-summary h2 {
  margin-top: 0;
  color: #D35400;
}
#cart-items {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  max-height: 300px;
  overflow-y: auto;
}
#checkout-btn {
  width: 100%;
  padding: 10px;
  /* background-color: #e67e22; */
  background-color: #D35400;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #2B2B2B;
  /* background-color: #5C4033; */
  
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-container div {
  flex: 1 1 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 1024px) {
  .order-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cart-summary {
    width: 220px;
    right: 10px;
  }
}

/* 📌 Tablets & Small Laptops */
@media (max-width: 768px) {
  .order-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #order-section {
    margin-top: 150px;
  }

  .order-item {
    width: 240px;
  }

  .cart-summary {
    position: static;
    margin: 20px auto;
    width: 90%;
  }
}

/* 📌 Mobile Phones */
@media (max-width: 480px) {
  #order-section h1 {
    font-size: 24px;
  }

  #order-section p {
    font-size: 14px;
  }

  .order-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }

  .order-item {
    width: 90%;
  }

  .order-item img {
    height: 150px;
  }

  .cart-summary {
    width: 95%;
    margin: 20px auto;
  }

  .rating span {
    font-size: 1em;
  }
}