/*--------------------------------------------------------------
# Our Products Section - Modern Design
--------------------------------------------------------------*/
.our_products__filters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.our_products__filter {
  display: inline-block;
  padding: 10px 24px;
  margin: 0 5px 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(34, 34, 34, 0.5);
}

.our_products__filter:hover {
  border-color: rgba(0, 147, 60, 0.4);
  background: rgba(0, 147, 60, 0.1);
}

.our_products__filter--active {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, #007d32 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 147, 60, 0.3);
}

.our_products__filter:first-child {
  margin-left: 0;
}

.our_products__filter:last-child {
  margin-right: 0;
}

.cta-btn,
.cta-btn:focus {
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent-color) 0%, #007d32 100%) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  margin: 0;
  border-radius: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 147, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn:hover,
.cta-btn:focus:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #00a844 0%, var(--accent-color) 100%) !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 147, 60, 0.5);
}

@media (max-width: 575px) {
  .our_products__filter {
    margin: 0 3px 10px;
    padding: 8px 16px;
    font-size: 12px;
  }
  .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

.our_products__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(34, 34, 34, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_products__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.our_products__item:hover::before {
  opacity: 1;
}

.our_products__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.our_products__item img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_products__item:hover img {
  transform: scale(1.08);
}

.our_products__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 25px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_products__item:hover .our_products__info {
  opacity: 1;
  transform: translateY(0);
}

.our_products__title {
  padding-right: 60px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.our_products__description {
  padding-right: 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.our_products__link {
  position: absolute;
  right: 55px;
  top: calc(50% - 14px);
  font-size: 24px;
  line-height: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.our_products__link:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  transform: scale(1.1);
}

.our_products__link--details {
  right: 15px;
  font-size: 22px;
}

/* End Our Products Section Styles */
