  @font-face {
      font-family: "Canaro";
      src: url("canaro/fonts/Canaro-Light.woff") format("opentype");
      font-weight: 700;
    }
    @font-face {
      font-family: "Canaro";
      src: url("canaro/fonts/Canaro-Light.woff") format("opentype");
      font-weight: 400;
    }
    :root {
      --brand-orange: #ff6d32;
      --brand-orange-light: #ff7e3e;
      --brand-dark: #151515;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

   body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

.main-header {
  background: #009426;
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #333;
}

.nav-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Canaro', sans-serif;
  font-size: 16px;
  position: relative;
}

.nav-menu li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -4px;
  left: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo h1 {
  font-family: 'Canaro', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.logo span {
  font-size: 10px;
  font-weight: normal;
}

.user-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Canaro', sans-serif;
}

.cart-count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 0 6px;
  font-size: 12px;
  margin-left: 5px;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .banner-content {
    text-align: left;
    max-width: 600px;
    padding: 20px;
	margin-top: -150px;
}

  .menu-toggle {
    display: block;
  }

  nav {
    flex: 1 1 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    display: none;
    margin-top: 10px;
    background: #000;
    padding: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .user-cart {
    margin-top: 10px;
    justify-content: flex-end;
    width: 100%;
  }
}

/* Banner */
.banner {
  position: relative;
  min-height: 90vh;
}

.banner-overlay {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* The dark overlay */
.banner-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58); /* tweak opacity as needed */
  z-index: 1;
}

/* Ensure content sits above the overlay */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 64px) 16px;
  color: #fff;
  text-align: center; /* you already have text-center class; this is a safe fallback */
}


.banner-content p {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff !important;
}

.banner-content h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 48px;
  margin: 10px 0 30px;
}

.shop-btn {
  background: #009426;
  color: #000;
  padding: 12px 30px;
  border: 2px solid #fff;
  font-family: 'Canaro', sans-serif;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.shop-btn:hover {
  background: transparent;
  color: #fff;
}

.featured-products {
  background: #fff;
  color: #000;
  padding: 80px 30px;
  font-family: Arial, sans-serif;
}

.featured-products .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.featured-products .section-header h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 36px;
  margin: 0;
}

.featured-products .shop-now-btn {
  text-decoration: none;
  background: #009426;
  color: #fff;
  padding: 12px 25px;
  font-family: 'Canaro', sans-serif;
  border: none;
  transition: 0.3s;
}

.featured-products .shop-now-btn:hover {
  background: #333;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card .category {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}

.product-card h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.product-card .price {
  font-family: 'Canaro', sans-serif;
  font-size: 16px;
  color: #2aaf2a;
  font-weight: bold;
}
/* Desktop default: 4 columns */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Tablet view: 2 columns */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view: 1 column */
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .featured-products .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .featured-products .shop-now-btn {
    align-self: stretch;
    text-align: center;
  }
}
.contact-section {
  padding: 80px 30px;
  background: #f9f9ff;
  font-family: Arial, sans-serif;
  color: #333;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-box {
  flex: 1;
  min-width: 250px;
  text-align: center;
  margin: 20px;
}

.info-box .icon {
  font-size: 24px;
  background: #009426;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

.info-box h4 {
  font-family: 'Canaro', sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: #f9f9ff;
}

.contact-form h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin: 10px 0 5px;
  font-family: Arial, sans-serif;
}

.contact-form span {
  color: red;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #fcfcfc;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #009426;
  color: white;
  font-family: 'Canaro', sans-serif;
  font-size: 14px;
  border: none;
  cursor: pointer;
  width: 120px;
  text-transform: uppercase;
}

.contact-form button:hover {
  background: #c00056;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
}

.about-us {
  background: #009426;
  padding: 80px 20px;
  text-align: center;
}

.about-title h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.about-title p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #fff;
}

.about-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: #fff;
  padding: 30px 25px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card img {
  height: 60px;
  margin-bottom: 20px;
}

.about-card h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.about-card p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

.testimonials {
  background: #f7f7fb;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #000;
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  padding: 0 20px;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 30px;
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  font-family: 'Canaro', sans-serif;
  display: block;
  font-size: 16px;
}

.user-info span {
  font-size: 14px;
  color: #666;
}

.dots {
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active-dot {
  background: #333;
}
.features {
  background: #009426;
  padding: 80px 20px;
  text-align: center;
}

.features-title h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}

.features-title p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box img {
  height: 200px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.feature-box p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

.site-footer {
  background-color: #222f39;
  color: #ccc;
  font-family: Arial, sans-serif;
  padding: 60px 20px 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 30px;
}

.footer-brand h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 300px;
  color: #cecece;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer-bottom .disclaimer {
  margin-bottom: 10px;
  font-style: italic;
}

.breadcrumb {
  font-family: 'Canaro', sans-serif;
  font-size: 14px;
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 6px;
  width: fit-content;
  margin: 20px auto;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb li a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.breadcrumb li span {
  margin: 0 10px;
  color: #888;
  font-size: 16px;
}

.our-story {
  background-color: #f8f8fc;
  padding: 80px 30px;
  font-family: Arial, sans-serif;
  color: #222;
}

.our-story .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.story-label {
  font-family: 'Canaro', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #777;
}

.story-content h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}

.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
.subline {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 25px;
  font-weight: 300;
}
