@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hind Siliguri", "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0f17;
  color: #ffffff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffb703;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  background: #ffb703;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.cart-btn span {
  background: black;
  color: white;
  padding: 2px 7px;
  border-radius: 50px;
  margin-left: 5px;
  font-size: 14px;
}

.cart-btn:hover {
  transform: scale(1.05);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b0f17, #121a2b);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content h2 span {
  color: #ffb703;
}

.hero-content p {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-image img {
  width: 420px;
  border-radius: 20px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #ffb703;
  color: black;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 5px;
  color: #ffb703;
}

.section-title p {
  color: #cccccc;
}

/* PRODUCTS */
.products {
  padding: 80px 0;
}

.search-box {
  text-align: center;
  margin-bottom: 25px;
}

.search-box input {
  width: 70%;
  max-width: 400px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: #121a2b;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #ffb703;
  margin-bottom: 12px;
}

.add-btn {
  width: 100%;
  background: #ffb703;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.add-btn:hover {
  background: #ffaa00;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background: #101828;
}

.about-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #ffb703;
}

.about-content p {
  color: #cccccc;
  line-height: 1.8;
}

.about-box {
  background: #121a2b;
  padding: 20px;
  border-radius: 15px;
  width: 350px;
}

.about-box h3 {
  margin-bottom: 12px;
}

.about-box ul {
  list-style: none;
}

.about-box ul li {
  margin-bottom: 10px;
  color: #dddddd;
}

/* CONTACT */
.contact {
  padding: 80px 0;
}

.contact-box {
  max-width: 500px;
  margin: auto;
  background: #121a2b;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5);
}

.contact-box p {
  margin-bottom: 12px;
  color: #cccccc;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background: black;
  padding: 15px;
  text-align: center;
  color: #888;
}

/* CART MODAL */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.cart-box {
  width: 90%;
  max-width: 500px;
  background: #121a2b;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.7);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 5px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b0f17;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  margin-left: 10px;
}

.cart-item-info h4 {
  font-size: 15px;
}

.cart-item-info p {
  color: #ffb703;
  font-weight: 600;
  font-size: 14px;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-actions button {
  background: #ffb703;
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cart-actions button:hover {
  background: #ffaa00;
}

.remove-btn {
  background: crimson !important;
  color: white;
}

.cart-footer {
  margin-top: 15px;
  text-align: center;
}

.checkout-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #25d366;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 450px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-box {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #121a2b;
    padding: 15px;
    border-radius: 10px;
    width: 180px;
  }

  .menu a {
    padding: 10px;
  }

  .menu-btn {
    display: block;
  }
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 110px;
  height: auto;
}
.btn-group {
  display: flex;
  gap: 10px;
}

.btn-group button {
  flex: 1;
}

.order-btn {
  background: #25d366;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  color: white;
  transition: 0.3s;
  font-size: 15px;
}

.order-btn:hover {
  transform: scale(1.03);
}