* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #004aad;
  color: white;
  padding: 15px 0;
}
.buy-now {
  margin-top: 10px;
  background-color: #004aad;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.buy-now:hover {
  background-color: #003080;
}
.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav input {
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
}

/* Products Section */
.products {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.products h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding-top: 20px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 465px;
  object-fit: cover;
}

.product-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.product-card p {
  color: #004aad;
  font-weight: bold;
  margin-top: 5px;
}

/* Footer */
footer {
  background: #004aad;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact {
  margin: 10px 0;
}

.footer-contact p {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Make icons white */
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.categories-section {
  text-align: center;
  padding: 40px 20px;
}

.categories-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.cooler-section {
  padding: 20px;
  background: #f4f4f4;
}

.cooler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.cooler-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cooler-box img {
  width: 100%;
  height: auto;
  display: block;
}

.cooler-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.cooler-text h2 {
  font-size: 1.8rem;
  margin: 0;
}

.cooler-text p {
  font-size: 1.2rem;
  margin: 5px 0;
}

.cooler-text a {
  display: inline-block;
  padding: 8px 16px;
  background: #d8ff00;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.commercial .gst-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #d8ff00;
  color: #000;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 1rem;
}


.category {
  width: 140px;
  text-align: center;
}
.order-strip {
  width: 100%;
  background-color: red;
  color: white;
  font-weight: bold;
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.order-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollLeft 10s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.category img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}
.order-strip {
  background-color: red;
  color: white;
  font-weight: bold;
  font-size: 24px;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
}

.scrolling-text {
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.scrolling-text span {
  padding-right: 100px; /* space between repeats */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.category.active img {
  border: 2px solid #c3f200;
}

.category:hover img {
  transform: scale(1.05);
}

.category p {
  margin-top: 10px;
  font-weight: bold;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #004aad;
    margin-top: 10px;
    padding: 10px 0;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 10px 0;
  }

  nav input {
    width: 90%;
    margin-top: 10px;
  }

  .products h2 {
    font-size: 1.6rem;
  }

  .product-card img {
    height: 365px;
  }
    .buy-now {
    width: 100%;
    font-size: 1rem;
  }

}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  .products h2 {
    font-size: 1.4rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card img {
    height: 365px;
  }

  nav input {
    padding: 8px;
    font-size: 1rem;
  }
}
