/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fafafa;
  color: #333;
}

h1, h2, h3 {
  margin: 10px 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ? ONLY NAVBAR BUTTONS (BLACK) */
.nav-links a {
  padding: 8px 14px;
  background: #111;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
}

.nav-links a:hover {
  background: #ff4d8d;
}

/* ===== HERO ===== */
.hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #ffe6f1);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero h2 {
  font-size: 32px;
}

.hero p {
  font-size: 18px;
  color: #666;
}

/* ===== BUTTON (KEEP PINK) ===== */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff4fa3; /* ? stays pink */
  color: white;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #e04391;
  transform: translateY(-2px);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 50px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.product {
  background: white;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.price {
  color: #ff4fa3;
  font-weight: bold;
  margin: 10px 0;
}

/* ===== CART ===== */
#cartList {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: auto;
}

#cartList li {
  background: white;
  margin: 15px 0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

#cartList button {
  margin: 5px;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background: #ff4fa3;
  color: white;
  cursor: pointer;
}

#cartList button:hover {
  background: #e04391;
}

/* ===== FORM ===== */
input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
  color: #888;
}/* ===== CART UI UPGRADE ===== */

.cart-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  align-items: center;
}

.cart-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  margin-bottom: 8px;
}

.cart-details p {
  margin: 4px 0;
  color: #555;
}

.addon {
  color: #ff4fa3;
  font-weight: bold;
}

.remove-btn {
  margin-top: 10px;
  padding: 6px 12px;
  background: #111;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.remove-btn:hover {
  background: #ff4d8d;
}

.cart-summary {
  text-align: right;
  margin-top: 30px;
}

.checkout-btn {
  margin-top: 10px;
  padding: 12px 25px;
  background: #ff4fa3;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.checkout-btn:hover {
  background: #e04391;
}

/* MOBILE */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-img {
    width: 100%;
    height: auto;
  }

  .cart-summary {
    text-align: center;
  }
}.checkout-btn {
  margin-top: 15px;
  padding: 12px 25px;
  background: #ff4fa3;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #e04391;
}