/* ========================= */
/* BREADCRUMB */
/* ========================= */
.breadcrumb-section {
  width: 100%;
  background: #f4faf4;
  padding: 10px 5%;
  border-bottom: 1px solid #e2efe2;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumb-container a {
  color: #056d05;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-container a:hover {
  color: #043d04;
}

.breadcrumb-container span {
  color: #666;
}

.breadcrumb-container .active {
  color: #111;
  font-weight: 700;
}


/* ========================= */
/* HERO */
/* ========================= */
.listing-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
  padding: 50px 5%;
  background: linear-gradient(135deg, #f9fff9, #eef8ee);
  overflow: hidden;
}

.listing-hero-content h1 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  color: #111;
  margin-bottom: 14px;
  font-weight: 900;
}

.listing-hero-content p {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.listing-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #dff5df;
  color: #056d05;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.listing-hero-image {
  display: flex;
  justify-content: center;
}

.hero-image-card {
  width: 260px;
  padding: 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  transform: rotate(8deg);
}

.hero-image-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}


/* ========================= */
/* TOPBAR */
/* ========================= */
.listing-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 5% 10px;
  background: #f9fbf8;
}

.listing-topbar-left h2 {
  font-size: 28px;
  color: #111;
  margin-bottom: 6px;
  font-weight: 800;
}

.listing-topbar-left p {
  color: #666;
  font-size: 14px;
}

.listing-topbar-right select {
  border: none;
  outline: none;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

/* ========================= */
/* PRODUCTS */
/* ========================= */
.listing-products-section {
  padding: 20px 5% 60px;
  background: #f9fbf8;
}

.listing-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-product-card {
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff, #f7fbf6);
  border: 1px solid rgba(5, 109, 5, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.listing-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.product-image-wrap {
  position: relative;
  padding: 18px;
  background: linear-gradient(135deg, #f3fbf3, #edf7ed);
}

.product-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* BADGE removed: no .product-badge visible */
/* .product-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 7px 14px;
  border-radius: 30px;
  background: #056d05;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
} */

.product-info {
  padding: 22px;
}

.product-info h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 800;
}

.product-info p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: #056d05;
}

.view-btn {
  padding: 10px 16px;
  border-radius: 12px;
  background: #eef8ee;
  color: #056d05;
  font-size: 13px;
  font-weight: 700;
}


/* ========================= */
/* PAGINATION */
/* ========================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.pagination-item,
.pagination-prev,
.pagination-next {
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.pagination-item:hover,
.pagination-prev:hover,
.pagination-next:hover {
  background: #056d05;
  color: #fff;
  border-color: #056d05;
}

.pagination-item.active {
  background: #056d05;
  color: #fff;
  border-color: #056d05;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1200px) {
  .listing-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .listing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 5%;
  }

  .listing-hero-content p {
    margin: 0 auto;
  }

  .listing-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .listing-hero {
    padding: 35px 20px;
  }

  .listing-topbar {
    padding: 26px 20px 10px;
  }

  .listing-products-section {
    padding: 20px 20px 50px;
  }

  .listing-products-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    width: 220px;
  }

  .product-image-wrap img {
    height: 230px;
  }
}