/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f1f1f;
  padding: 12px 24px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e0e0e0;
}

.nav .logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 10px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd400;
}

/* ===== MAIN CART ===== */
.cart-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.cart-page h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #ffd400;
}

/* ===== CART CONTAINER ===== */
.cart-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* CART ITEMS */
.cart-items {
  flex: 2;
  min-width: 300px;
}

.cart-item {
  display: flex;
  background-color: #1f1f1f;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  align-items: center;
  transition: transform 0.2s;
}

.cart-item:hover {
  transform: translateY(-3px);
}

.item-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
}

.item-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ffd400;
}

.item-info p {
  margin-bottom: 10px;
  font-weight: 500;
  color: #e0e0e0;
}

/* Quantity Controls */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.quantity-controls button {
  width: 28px;
  height: 28px;
  border: none;
  background-color: #ffd400;
  color: #121212;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-controls button:hover {
  transform: scale(1.1);
}

.quantity-controls span.qty {
  display: inline-block;
  width: 30px;
  text-align: center;
  font-weight: 500;
  color: #e0e0e0;
}

/* Remove Button */
.remove-item {
  background-color: #ff4d4f;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.remove-item:hover {
  background-color: #e33a3c;
}

/* ===== CART SUMMARY ===== */
.cart-summary {
  flex: 1;
  min-width: 280px;
  background-color: #1f1f1f;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  height: fit-content;
}

.cart-summary h2 {
  margin-bottom: 20px;
  color: #ffd400;
}

.cart-summary p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.cart-summary button {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background-color: #ffd400;
  color: #121212;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.cart-summary button:hover {
  background-color: #e6c200;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 60px;
  background-color: #111;
  color: #e0e0e0;
  text-align: center;
  padding: 20px 0;
}

footer p {
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cart-container {
    flex-direction: column;
  }

  .cart-summary {
    margin-top: 20px;
  }
}
/* FLOATING WHATSAPP */
.whatsapp-float{position:fixed;bottom:16px;right:16px;width:50px;height:50px;z-index:99;}
.whatsapp-float img{width:100%;height:100%;}


