

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

body {
  overflow-x: hidden;
}


html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}



.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px 20px;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}


.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1150px;
  margin: auto;
}

.checkout-left {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.checkout-right {
  width: 350px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.checkout-left h2,
.checkout-right h3 {
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  color: #444;
}


.checkout-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.checkout-btn,
.cod-btn,
.disabled-btn {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: background 0.3s ease;
}

.checkout-btn.cod,
.cod-btn {
  background-color: #28a745;
  color: #fff;
}

.checkout-btn.cod:hover,
.cod-btn:hover {
  background-color: #218838;
}

.checkout-btn.disabled,
.disabled-btn {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.cod-form label {
  font-size: 14px;
  display: block;
  margin: 12px 0 5px;
  color: #555;
}

.cod-form input,
.cod-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.submit-order {
  margin-top: 15px;
  background-color: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.submit-order:hover {
  background-color: #0069d9;
}


.order-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.order-list li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.order-list li div {
  flex: 1;
}

.order-list li strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.order-list li span {
  font-size: 14px;
  color: #555;
}

.summary {
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.summary p,
.summary h4 {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.summary h4 {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 850px) {
  .checkout-container {
    flex-direction: column;
  }

  .checkout-right {
    width: 100%;
  }
}




.new-footer {
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: green;
}

.footer-column i {
  margin-right: 8px;
  color: limegreen;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  background: #fff;
}

.footer-bottom p {
  margin: 0;
  color: #666;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  margin: 0 10px;
  display: inline-block;
}

.footer-socials i {
  font-size: 20px;
  color: #444;
  transition: color 0.3s ease;
}

.footer-socials i:hover {
  color: green;
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background-color: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  display: block;
  filter: invert(1); 
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
