body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fef6f9;
  color: #333;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #a0d8ef, #f4a6c3);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Banner */
.banner {
  background-color: #a0d8ef;
  color: white;
  text-align: center;
  padding: 60px 20px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.banner h2 {
  margin-bottom: 10px;
  font-size: 36px;
}

/* Search Bar */
.search-bar {
  margin: 30px auto;
  display: block;
  width: 60%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #f4a6c3;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}

/* Cake List */
.cake-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

.cake-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.cake-card:hover {
  transform: scale(1.03);
}

.cake-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.cake-card h3 {
  margin: 10px 0 5px;
  color: #f06292;
}

.cake-card p {
  font-size: 14px;
  margin: 5px 0;
}

.cake-card button {
  background-color: #f4a6c3;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.cake-card button:hover {
  background-color: #ff80ab;
}

/* Cart Icon */
.cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f4a6c3;
  color: white;
  font-size: 28px;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1000;
}

#cartCount {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
}

/* Checkout */
.checkout {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  width: 300px;
  height: 100%;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1001;
}

.checkout h2 {
  text-align: center;
}

.checkout button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #4db6ac;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
}

.checkout button:hover {
  background-color: #00796b;
}

/* Contact Form */
#contact {
  background-color: #e0f7fa;
  padding: 40px 20px;
  text-align: center;
}

#contact h2 {
  margin-bottom: 20px;
  color: #00796b;
}

#contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact input,
#contact textarea {
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 14px;
}

#contact button {
  background-color: #4db6ac;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

#contact button:hover {
  background-color: #00796b;
}

#thankYouMessage {
  margin-top: 15px;
  color: #00796b;
  font-weight: bold;
}
