/* === GLOBAL RESET & FONTS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fafafa;
  color: #222;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* === NAVIGATION === */
nav {
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: #333;
  text-decoration: none;
  padding: 1.2rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover, nav a.active {
  color: #111;
}

nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 60%;
}

/* === BANNER === */
.banner {
  background: url('img/hero.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.banner h2 {
  position: relative;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 4rem 3rem;
  background: #fff;
}

.product {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product h3 {
  padding: 1rem 1rem 0 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.product p {
  padding: 0.5rem 1rem 1.5rem 1rem;
  color: #555;
  font-weight: 500;
  font-size: 1rem;
}

/* === PRODUCT DETAIL PAGE === */
.product-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 2rem;
  gap: 3rem;
  background: #fafafa;
}

.product-detail img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-detail .info {
  max-width: 500px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-detail .info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.product-detail .info h3 {
  color: #000;
  font-size: 1.3rem;
  margin: 1rem 0;
}

.product-detail select {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-detail .review {
  margin-top: 2rem;
}

.review textarea {
  width: 100%;
  height: 100px;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  font-family: inherit;
  font-size: 1rem;
}

.review button {
  margin-top: 1rem;
  background: #111;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review button:hover {
  background: #444;
}

/* === FOOTER === */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* === MOBILE & TABLET RESPONSIVE === */
@media (max-width: 992px) {
  .banner h2 {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  .product-grid {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .product-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-detail img {
    max-width: 340px;
  }

  .product-detail .info {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  nav a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  header {
    font-size: 1.6rem;
  }

  .banner {
    height: 50vh;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .product img {
    height: 260px;
  }

  .product-detail .info h2 {
    font-size: 1.6rem;
  }

  .product-detail .info h3 {
    font-size: 1.1rem;
  }
}
/* === CHECKOUT PAGE === */
.checkout-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: #f9f9f9;
  min-height: 80vh;
}

.checkout-box {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  max-width: 480px;
  width: 100%;
}

.checkout-box h2 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  color: #111;
}

.checkout-box h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #333;
}

.checkout-box p {
  background: #fafafa;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #eee;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.checkout-box input {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-top: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.checkout-box input:focus {
  border-color: #000;
}

#sendOrder {
  margin-top: 1.5rem;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#sendOrder:hover {
  background: #1ebc5b;
  transform: scale(1.03);
}
#buyNow {
  display: inline-block;
  margin-top: 1rem;
  background: #25d366; /* WhatsApp green */
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

#buyNow:hover {
  background: #1ebc5b;
  transform: scale(1.05);
}
.banner {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.banner-content .btn {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.banner-content .btn:hover {
  background: #000;
  color: #fff;
}
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

footer p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ddd;
}

footer .socials {
  margin: 1rem 0;
}

footer .socials a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

footer .socials a:hover {
  color: #1db954;
  transform: scale(1.2);
}

footer .copyright {
  font-size: 0.85rem;
  color: #aaa;
}
/* === NAVIGATION === */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

nav ul li a:hover,
nav ul li a.active {
  background: #000;
  color: #fff;
}

/* === HAMBURGER MENU === */
.menu-icon {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: #000;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
  }

  .nav-links li a {
    width: 100%;
    display: block;
  }
}
/* === CONTACT PAGE === */
.contact-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5f5f5, #eaeaea);
  padding: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  max-width: 420px;
  width: 100%;
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.contact-card .role {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card p {
  margin: 0.5rem 0;
  color: #333;
  font-size: 1rem;
}

.contact-card .message {
  margin-top: 1rem;
  font-weight: 500;
  color: #000;
}

.contact-card .socials {
  margin-top: 1.5rem;
}

.contact-card .btn {
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-card .btn:hover {
  background: #1ebe57;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .contact-card {
    padding: 2rem 1.2rem;
  }

  .contact-card h2 {
    font-size: 1.6rem;
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px 0;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }
}
