
    :root {
      --primary-green: #007A3D;
      --primary-orange: #F7931E;
      --green-light: #4CAF50;
      --green-dark: #005B2D;
      --orange-light: #FFB84D;
      --white: #FFFFFF;
    }
    body {
      font-family: 'Open Sans', sans-serif;
      background-color: #f5f5f5;
    }
    .ribbon {
      background-color: var(--primary-orange);
      color: white;
      padding: 6px 20px;
      font-weight: bold;
      clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    }
    .social-icons a {
      color: white;
      margin-left: 15px;
      text-decoration: none;
    }
    .social-icons a:hover {
      color: #ccc;
    }
    .info-section {
      font-size: 0.9rem;
    }
    .info-section i {
      color: green;
      margin-right: 5px;
    }
    .navbar-nav .nav-link.active {
      background-color: var(--primary-green);
      color: white !important;
      border-radius: 5px;
    }
     /* Login/SignUp Button */
#loginDropdown {
  background-color: #FDBE43;
  border: none;
  color: white;
  font-weight: 600;
  /* padding: 8px 16px; */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#loginDropdown:hover,
#loginDropdown:focus {
  background-color: #f7931e;
  color: #fff;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /* padding: 8px 0; */
  font-size: 15px;
}
.dropdown-item{
  padding: 0 !important;
  /* margin: 0 !important; */
  width: 10vw;
}

/* Dropdown Items */
.dropdown-menu .dropdown-item {
  /* padding: 10px 20px; */
  transition: background-color 0.2s ease, color 0.2s ease;
  color: #000;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f7931e;
  color: white;
  font-weight: 500;
}
.btn-download {
      display: inline-block;
      /* margin-top: 20px; */
      padding: 6px 12px;
      background-color: chocolate;
      color: black;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .btn-download:hover {
      background-color: rgb(76, 32, 1);
    }

    @media (max-width: 767.98px) {
      .info-section {
        display: none !important;
      }
        .btn-download{
        display: none !important;
      }
    }
    @media (max-width: 991.98px) and (min-width: 768px) {
      .info-section {
        font-size: 0.75rem;
      }
      .feature-box {
        font-size: 0.85rem;
        padding: 15px;
      }
    }
    @media (max-width: 767.98px) {
      .feature-box {
        font-size: 0.8rem;
        padding: 10px;
      }
    }
  .product-main {
  display: flex;
  min-height: 100vh;
  /* max-width: 100vw; */
}

/* Sidebar */
.sidebar {
  width: 300px;
  background-color: var(--primary-green);
  color: white;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  max-width: 40vw;
}

.sidebar h3 {
  margin-bottom: 20px;
}

.category-item {
  background-color: var(--green-light);
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.3s;
}

.category-item:hover {
  background-color: #52b788;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 30px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* max-width: 50vw; */
}
 @media (max-width: 767.98px) {
      .main-content {
        max-width: 50vw;
      }
    }

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.product-card {
  width: 260px;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.ripl-code {
  color: #555;
  font-size: 14px;
  margin: 5px 0;
}

.product-price {
  font-size: 18px;
  color: #1b4332;
  margin: 10px 0;
  font-weight: bold;
}

.buy-btn {
  padding: 10px 15px;
  border: none;
  background-color: #2d6a4f;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn:hover {
  background-color: #1b4332;
}
  .footer {
      background-color: var(--green-dark);
      color: white;
      padding: 40px 0 20px;
    }
    .footer a {
      color: #bbb;
      text-decoration: none;
    }
    .footer a:hover {
      color: white;
      text-decoration: underline;
    }
 