body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  padding: 1rem;
  background: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input[type="text"] {
  padding: 0.5rem;
  width: 40%;
  font-size: 1rem;
}

.cart-btn {
  background: orange;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 1rem;
  justify-content: center;
}

.product-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 200px;
  padding: 10px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product-card h3 {
  margin: 0.5rem 0;
}

button {
  padding: 0.5rem;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.form-container input {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #999;
  font-size: 1rem;
}

.form-container button {
  width: 100%;
  padding: 0.7rem;
  background: #28a745;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.cart-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  gap: 20px;
}

.cart-summary {
  text-align: center;
  margin-top: 20px;
}

.cart-summary button {
  padding: 0.7rem 1.2rem;
  background: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.cart-summary button:hover {
  background: #0056b3;
}

.product-details {
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
}
#signoutBtn {
  margin-left: 10px;
  background-color: #dc3545;
}
/* Navbar */
.navbar {
  background-color: #333;
  color: white;
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a,
.nav-links button {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
}

.nav-links button:hover,
.nav-links a:hover {
  background-color: #555;
}

/* Toggle Menu Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
  }

  .nav-links a,
  .nav-links button {
    width: 100%;
    text-align: left;
    padding: 0.7rem 1rem;
    border-top: 1px solid #444;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.footer {
  background: #1b1b1b;
  color: #fff;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-left .logo {
  font-size: 28px;
  font-weight: bold;
}

.mail-form {
  margin: 10px 0;
  display: flex;
  gap: 10px;
}

.mail-form input {
  padding: 8px;
  border: none;
  border-radius: 4px;
  width: 200px;
}

.mail-form button {
  padding: 8px 12px;
  background: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons img {
  width: 20px;
  margin: 0 5px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 3;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #f1c40f;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #000000, #0b0c1b);
  padding: 50px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner-content {
  flex: 1;
  z-index: 2;
}

.discount {
  font-size: 16px;
  color: #d3ad69;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.highlight {
  color: #ffd700;
}

.subtext {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

.shop-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

.banner-image {
  flex: 1;
  text-align: center;
  z-index: 2;
}

.banner-image img {
  max-height: 280px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Optional glowing platform below image */
.banner-image::after {
  content: "";
  position: absolute;
  right: 100px;
  bottom: 80px;
  width: 180px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.4);
  filter: blur(20px);
  z-index: 1;
}
.signout-btn {
  padding: 10px 16px;
  background-color: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.signout-btn:hover {
  background-color: #cc0000;
}


