:root {
  --green: #8db03e;
  --light-green: #f4fbdc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  line-height: 1.5;
  max-width: 100vw;
  overflow-x: hidden;
  color: #1b1b28;
}

.top-banner {
  background-color: #808000;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
}

.navbar .form-control {
  border-radius: 5px 5px 5px 5px;
}

.search-btn {
  border-radius: 0 5px 5px 0;
}

.icon-btn {
  font-size: 20px;
  color: #000;
  position: relative;
  margin-left: 15px;
}

.icon-btn .badge {
  position: absolute;
  top: -5px;
  right: -10px;
  font-size: 12px;
  background-color: #808000;
}

.navbar-brand img {
  height: 40px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 50px;
}

.feature-box:hover {
  box-shadow: 13px 13px 10px rgba(0, 0, 0, 0.1);
}

.product-card {
      border: 1px solid #ccc;
      border-radius: 8px;
      overflow: hidden;
      background-color: #f2f2f2;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .product-title {
      font-weight: bold;
      text-align: center;
      padding: 10px;
      background-color: #f0f0f0;
    }

    .product-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #c2d500;
      color: #fff;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-info {
      transform: translateY(0);
    }

    .add-icon {
      background-color: #fff;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c2d500;
    }

.insta-img-box img {
      width: 100%;
      height: 253px;
      display: block;
      border-radius: 12px;
    }

.insta-img-box {
      box-shadow: 0 2px 8px rgb(0 0 0 / 48%);
    }

.brand-logo {
  max-height: 80px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 768px) {
  .brand-logo {
    max-width: 45%;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    max-width: 80%;
  }
}

#brandCarousel {
	    padding: 3%;
    background-image: linear-gradient(to right, #C0BD2E, #7C7A16);
}

.bg-dark-yallow {
	background-color: #7C7A16;
}

.btn-primary {
    background-image: linear-gradient(to right, #C0BD2E, #7C7A16) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.btn-primary:hover {
	background-image: linear-gradient(to right, #7C7A16, #C0BD2E) !important;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  display: none;
  z-index: 9999;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.box-shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#mainProductImage {
  height: 400px;
}