/* 🌼 GENERAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #E29B29;
}

/* 🔹 Top Scroller */
.top-scroller {
  background: #4A2C2A;
  color: #fff3d0;
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 0;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
}

.scroll-text {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* 🔹 Top Right Icon Bar */
.top-icon-bar {
  display: flex;
  justify-content: flex-end;
  padding: 5px 40px;
  background: #4A2C2A;
}

.menu-icons {
  display: flex;
  gap: 20px;
  font-size: 22px;
  color: #fff3d0;
  cursor: pointer;
}

.menu-icons i:hover {
  color: white;
}

/* 🔹 Menu Bar */
.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4A2C2A;
  padding: 3px 40px;
  border-bottom: 3px solid #E29B29;
  flex-wrap: wrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu-item {
  font-weight: bold;
  cursor: pointer;
  color: #fff3d0;
  transition: color 0.3s;
  font-size: 18px;
}

.menu-item:hover {
  color: #ffffff;
}

.logo {
  height: 70px;
}

/* 🌈 Hero Banner */
.hero-banner {
  display: none;
  width: 100%;
  text-align: center;
  background: #E29B29;
}

.hero-banner img {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* 🟢 About Us Section */
.about-section {
  background: #fff3d0;
  padding: 40px;
  text-align: center;
  border-top: 4px solid #4A2C2A;
}

/* 📩 Contact Section */
.contact-section {
  background: #fff3d0;
  padding: 40px;
  text-align: center;
  border-top: 4px solid #4A2C2A;
}

/* 🔹 Headings for About Us and Contact Us */
.about-section h2,
.contact-section h2 {
  color: #4A2C2A;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* 🧺 Products */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.product-name {
  font-weight: bold;
  margin-bottom: 10px;
}

/* 🔸 Product Controls - Line 1: Weight, Price, Quantity, +/- */
.product-controls-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.weight-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weight-price select {
  padding: 4px 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.product-price {
  font-weight: bold;
  color: #4A2C2A;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-control button {
  background: #E29B29;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.qty-control input {
  width: 40px;
  text-align: center;
}

/* 🔸 Product Controls - Line 2: Add to Cart button */
.product-controls-bottom {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.cart-btn {
  background: #4A2C2A;
  color: #fff3d0;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  min-width: 120px;
}

.cart-btn:hover {
  background: #633B38;
}

/* 🔹 Footer */
.footer {
  background: #4A2C2A;
  color: #fff3d0;
  padding: 40px 20px 10px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 120px;
  height: auto;
  margin-top: 10px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 5px 0;
  cursor: pointer;
}

.footer-column li:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
}

/* 🔍 Search Box */
.search-box {
  display: none;
  justify-content: center;
  align-items: center;
  background: #fff3d0;
  padding: 8px;
  border-bottom: 2px solid #4A2C2A;
}

.search-box input {
  width: 60%;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff3d0;
  color: #4A2C2A;
}

.search-box input::placeholder {
  color: #8b6b3d;
}

.close-btn {
  margin-left: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #4A2C2A;
}

/* 🔹 Responsive */

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .menu-bar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 5px 20px;
  }

  .menu-item {
    font-size: 17px;
  }

  .logo {
    height: 60px;
    margin: 10px 0;
  }

  .product-card img {
    height: 140px;
  }

  .product-controls-top {
    flex-direction: column;
    gap: 8px;
  }

  .weight-price select {
    width: 100%;
  }

  .qty-control input {
    width: 35px;
  }

  .hero-banner img {
    width: 100%;
    height: auto;
  }

  .about-section, .career-section, .contact-section,
  .cancellation-section, .shipping-section, .policy-section {
    padding: 20px;
  }

  .about-section h2,
  .contact-section h2 {
    font-size: 24px;
  }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
  .products {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

  .menu-item {
    font-size: 15px;
    text-align: center;
  }

  .logo {
    height: 50px;
  }

  .top-icon-bar {
    padding: 5px 15px;
  }

  .scroll-text {
    font-size: 12px;
  }

  .product-card img {
    height: 120px;
  }

  .weight-price, .product-controls-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-btn {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .about-section h2,
  .career-section h2,
  .contact-section h2 {
    font-size: 20px;
  }

  .about-section p,
  .career-section p,
  .contact-section p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Search Box Input Full Width on Mobile */
  .search-box input {
    width: 80%;
    font-size: 14px;
  }
}
/* Desktop / Laptop: show menu items, hide hamburger */
.menu-items {
  display: flex;
  gap: 30px;
}
