body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f6f1;
  color: #111;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
}

/*------------------------------------*/

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 10%;
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px; /* space between logo and business name */
  color: #111;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px; /* space between Home, Products, Contact */
}

.nav-links a {
  margin-left: 0;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.nav-links a:hover {
  color: #25D366;
}

/*------------------------------------*/

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
  color: white;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

.hero h1 {
  font-size: 48px;
}

.hero p {
  font-family: 'Playfair Display', cursive;
  font-size: 22px;
}

.btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.btn:hover {
  background-color: #1ebe5d;
}

section {
  padding: 80px 10%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-content {
  padding: 20px;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card h3 {
  min-height: 60px;
}

.price {
  margin: 12px 0;
}

.old-price {
  color: #888;
  margin-right: 8px;
}

.new-price {
  font-weight: bold;
  font-size: 1.2rem;
}


/*------------------------------------*/

.price-list {
  margin: 18px 0;
  padding: 14px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-row + .price-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}

.price-label {
  min-width: 85px;
  color: #666;
  font-size: 0.88rem;
  font-weight: 500;
}

.order-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.order-actions .btn {
  margin-top: 0;
  padding: 12px 10px;
  text-align: center;
}

.btn-india {
  background: #128c7e;
}

.btn-india:hover {
  background: #0e6f64;
}

@media (max-width: 480px) {
  .order-actions {
    grid-template-columns: 1fr;
  }
}

/*------------------------------------*/

.quantity-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.quantity-buttons {
  display: flex;
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #f6f6f6;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-btn:hover {
  background: #e9e9e9;
}

.quantity-value {
  min-width: 38px;
  text-align: center;
  font-weight: 600;
}

/*------------------------------------*/

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 16px;
}

.social-links a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: #25D366;
  transform: translateY(-3px);
}
/*------------------------------------*/

.whatsapp-numbers {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
}

.whatsapp-numbers span:last-child {
  grid-column: 2;
}

/*------------------------------------*/
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

/*------------------------------------*/
.collection-heading {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.collection-heading img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  flex-shrink: 0;
}

.collection-heading h2 {
  margin: 0;
  color:  black;        /*#4c159b;*/
  font-size: 1.5rem;
  font-weight: 600;
}

/*------------------------------------*/

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* PREMIUM PRODUCT */

.premium-product {
  background: #fff;
}

.premium-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.premium-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
}

.premium-details {
  flex: 1;
  min-width: 280px;
}

.premium-details h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* SPLIT SECTION */

.split-section {
  background: #f0efe9;
}

.split-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split-text {
  flex: 1;
  min-width: 280px;
}

.split-image {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.split-image img {
  width: 180px;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTACT */

#contact p {
  margin: 10px 0;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-top: 25px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: white;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile and tablet view */
@media (max-width: 768px) {
  nav {
    padding: 12px 5%;
    flex-wrap: nowrap;
  }

  .brand {
    gap: 10px;
    font-size: 1rem;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 240px;
    height: 100svh;
    padding: 100px 25px 30px;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;

    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 1.1rem;
  }

  section {
    padding: 50px 5%;
  }

  .hero {
    height: 68svh;
    min-height: 400px;
    padding: 0 7%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    
  }

  .hero-img {
    content: url("images/mundu-banner_mobile.png");
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .overlay {
    z-index: 1;
    background: rgba(0, 0, 0, 0.35);
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card img {
    height: 360px;
  }

  .collection-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .collection-heading img {
    width: 65px;
    height: 65px;
  }

  .collection-heading h2 {
    font-size: 1.25rem;
  }

  .premium-container,
  .split-container {
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
  }

  .premium-image img {
    max-width: 100%;
  }

  .split-image {
    justify-content: center;
  }

  .split-image img {
    width: calc(50% - 8px);
  }
}

/* Small phone view */
@media (max-width: 480px) {
  .brand span {
    font-size: 0.9rem;
  }

  .hero {
    height: 65svh;
    min-height: 380px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .card img {
    height: 300px;
  }

  .card-content {
    padding: 16px;
  }

  .collection-heading h2 {
    font-size: 1.1rem;
  }

  .order-actions {
    grid-template-columns: 1fr;
  }

  .split-image img {
    width: 100%;
  }
}
