body {
  background: #fffbe9;
  font-family: 'Quicksand', Arial, sans-serif;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}
.cart-summary-sticky {
  position: fixed;
  top: 10px;
  right: 20px;
  background: #ffb347;
  color: #fff;
  padding: 12px 26px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15em;
  border-radius: 24px;
  box-shadow: 0 5px 20px rgba(255, 179, 71, 0.6);
  z-index: 9999;
  max-width: 320px;
  text-align: center;
  cursor: pointer;
}
.cart-summary-sticky:hover {
  box-shadow: 0 5px 25px rgba(255, 179, 71, 0.9);
}
.cart-panel {
  position: fixed;
  top: 50px;
  right: 20px;
  width: 320px;
  max-height: 400px;
  background: #fffbe9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow-y: auto;
  padding: 15px;
  z-index: 10000;
  display: none;
}
.cart-panel.show {
  display: block;
}
.cart-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: #4d3b2f;
  font-weight: 600;
}
.cart-list li {
  border-bottom: 1px solid #ffd699;
  padding: 8px 0;
}
.cart-list li:last-child {
  border-bottom: none;
}
#closeCartBtn {
  margin-top: 12px;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  background-color: #ffb347;
  color: white;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}
#closeCartBtn:hover {
  background-color: #ffa500;
}
.main-header {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  object-fit: contain;
  margin-bottom: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}
h1 {
  font-family: 'Pacifico', cursive;
  color: #a0522d;
  font-size: 2.2em;
  margin: 0;
  letter-spacing: 1px;
}
.subhead {
  color: #a0522d;
  font-size: 1em;
  margin-bottom: 36px;
}
.products-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.product-card {
  background: #fffef7;
  border-radius: 13px;
  display: flex;
  gap: 18px;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.06);
  padding: 20px 16px;
  margin-bottom: 18px;
  align-items: center;
}
.product-card img {
  width: 74px;
  height: 74px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
  background: #f7e7c4;
}
.card-details {
  flex: 1;
}
.card-title {
  font-weight: 700;
  font-size: 1.21em;
  color: #a0522d;
  margin-bottom: 3px;
}
.card-desc {
  font-size: 0.99em;
  color: #4d3b2f;
  margin-bottom: 6px;
}
.card-price {
  color: #ffb347;
  font-size: 1.08em;
  font-weight: 700;
  margin-bottom: 10px;
}
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  background: #ffb347;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
  line-height: 1;
}
.qty-btn:hover {
  background: #ffa500;
}
.qty-input {
  width: 50px;
  text-align: center;
  font-size: 1rem;
  padding: 6px 4px;
  border: 1px solid #ffd699;
  border-radius: 8px;
  background: #fffbe9;
  color: #4d3b2f;
  appearance: textfield;
}
.qty-input[type=number] {
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.checkout-btn {
  background: #ffb347;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 9px 30px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
  width: 100%;
}
.checkout-btn:hover {
  background: #ffa500;
  box-shadow: 0 3px 20px #ffa500cc;
}
.blob-background {
  position: fixed;
  top: -300px;
  left: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 179, 71, 0.25), transparent 70%);
  border-radius: 55% 45% 60% 40% / 60% 55% 45% 40%;
  animation: blobMove 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.75;
}
@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 30px) scale(1.12); }
  66% { transform: translate(-50px, 50px) scale(0.88); }
}
.footer {
  background: #fffbe9;
  border-top: 1.5px solid #ffd699;
  color: #a0522d;
  font-size: 1.18em;
  padding: 24px 0 38px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-icon {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(255, 179, 71, 0.16));
  cursor: pointer;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.footer-icon:hover {
  transform: scale(1.15);
}
.checkout-fields {
  border: 1px solid #ffd699;
  padding: 20px 25px;
  margin-top: 20px;
  border-radius: 13px;
  background: #fffef7;
  font-family: 'Quicksand', Arial, sans-serif;
  color: #4d3b2f;
}
.checkout-fields h4 {
  margin-top: 0;
  color: #a0522d;
  font-size: 1.35em;
  font-weight: 700;
}
.checkout-fields label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}
.checkout-fields input[type="text"],
.checkout-fields input[type="tel"],
.checkout-fields input[type="date"],
.checkout-fields input[type="time"],
.checkout-fields select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border: 1.5px solid #ffd699;
  border-radius: 13px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1em;
  color: #4d3b2f;
  background-color: #fffbe9;
  box-sizing: border-box;
}
.checkout-fields input[type="text"]:focus,
.checkout-fields input[type="tel"]:focus,
.checkout-fields input[type="date"]:focus,
.checkout-fields input[type="time"]:focus,
.checkout-fields select:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow: 0 0 8px #ffa500aa;
}
.hidden {
  display: none;
}
.error {
  color: #d9534f;
  font-size: 0.9em;
  margin-bottom: 8px;
  display: block;
}
.delivery-charge-info {
  font-style: italic;
  color: #a0522d;
  margin-top: 12px;
  font-weight: 600;
  font-size: 1em;
}
.overview-cart-list li {
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid #ffd699;
}
.overview-cart-list li:last-child {
  font-weight: 700;
  border-bottom: none;
}
.product-img {
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.product-img:hover {
  box-shadow: 0 0 4px 2px #ffa50066;
}
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.lightbox.hidden {
  display: none;
}
#lightboxImg {
  max-width: 85vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 0 24px 6px #ffd699;
  background: #fffbe9;
}
#lightboxClose {
  position: fixed;
  top: 34px;
  right: 44px;
  color: #fff;
  font-size: 2.6em;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100002;
  text-shadow: 0 0 8px #a0522d, 0 0 18px #ffb347;
}
#lightboxClose:hover {
  color: #ffb347;
}
