body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fdf5e6; /* cream */
  color: #222;
}
#clock {
  font-size: 0.6em;
  color: #333;
  text-align: center;
  margin-top: 5px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 20px;
  color: #f0ead6; /* eggshell */
  font-weight: bold;
}
.header-left {
  font-size: 1.5em;
}
.header-right {
  font-size: 0.8em;
  color: #b22222; /* blood red */
}
.cart-badge {
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 0.8em;
  cursor: pointer;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.product-display {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
  width: 320px;
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}
.slides {
  display: none;
}
.slides img {
  width: 100%;
  border-radius: 10px;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 8px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  user-select: none;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
}
.next { right: 10px; }
.prev { left: 10px; }
.price {
  font-size: 1.2em;
  margin: 10px 0;
}
.quantity-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.quantity-controls button {
  padding: 5px 10px;
  cursor: pointer;
}
#buyBtn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #000;
}
