/* Global Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #000;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
}

button {
  background-color: #ffb6c1;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background-color: #ff8da1;
}

/* Styled Checkout Header */
.checkout-title {
  background-color: #ffe6ed; /* light pink */
  padding: 30px 20px;
  margin: 0;
  border-bottom: 4px solid #ff8da1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
/* Quantity Controls */


.remove-btn {
  background: none;
  color: #ff4f78;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

.remove-btn:hover {
  text-decoration: underline;
}

/* Side Navigation Menu */
.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  padding-top: 80px;
  height: auto;
  border-bottom-right-radius: 12px;
}

.menu-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: #000;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .hamburger-menu {
  transform: translateX(0);
}

.menu {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.menu li {
  margin-bottom: 16px;
}

.menu li a {
  display: block;
  padding: 12px 16px;
  background-color: #ffb6c1;
  color: #000;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.menu li a:hover {
  background-color: #ff8da1;
  color: #fff;
}

/* Hero Section */
.hero {
  background: url('images/logo.jpg') center/cover no-repeat;
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero h1 {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 2em;
  font-weight: bold;
  color: #000;
  background: #fff;
  padding: 5px 15px;
  border-radius: 25px;
}

.countdown {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-weight: bold;
  color: #000;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-top: 1px solid 
}

/* Section Headings */
.weekly-flavors h2,
.dozen-flavors h2 {
  font-size: 2.2em;
  text-align: center;
  margin: 60px auto 20px;
  color: #fcfbfc;
  background-color: #f756ae;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card .price {
  color: #ff1493;
  font-weight: bold;
  margin: 10px 0;
}

/* Popup Modal */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.popup-content input {
  padding: 10px;
  width: 80%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-content .close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

footer h4 {
  margin-bottom: 10px;
}

footer form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer form input {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  width: 80%;
  max-width: 300px;
}

footer form button {
  background-color: #ffb6c1;
  color: #000;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

#submit {
  margin-top: 20px; /* adjust this value as needed */
}
