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

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: #f3780e;
  border-radius: 20px;
  padding: 10px;
}

.newbg {
  display: inline-block;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 50%);
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  margin: 0;
}

.product-header {
  text-align: center;
  padding: 6rem 20px 1rem;
  height: 90vh;
  background: url(./../../images/allinone.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
}
.product-header h1 {
  margin-top: 3rem;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.product-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  display: none;
  max-width: 600px;
  margin: 0 auto;
}

.product-section {
  padding: 3rem 0 5rem;
  background: #f8f9fa;
}
.product-section .product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.category-filter .filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.category-filter .filter-btn:hover {
  border-color: #517f09;
  color: #517f09;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.category-filter .filter-btn.active {
  background: #517f09;
  border-color: #517f09;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(81, 127, 9, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.product-card .product-img {
  width: 100%;
  background: rgb(244.9351778656, 141.7707509881, 52.8648221344);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card .product-img img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 8px 6px rgba(6, 74, 35, 0.35));
  transition: transform 0.3s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-card .product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card .product-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #517f09;
  margin: 0.8rem 0 0.5rem;
  line-height: 1.3;
}
.product-card .product-content p {
  font-size: 0.925rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.product-card .product-content .product-pack {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #0072b1;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagination {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.pagination .page-link {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination .page-link:hover {
  border-color: #517f09;
  color: #517f09;
}
.pagination .page-link.active {
  background: #517f09;
  border-color: #517f09;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(81, 127, 9, 0.25);
}
.pagination .page-link.prev, .pagination .page-link.next {
  font-size: 1.2rem;
  border-radius: 8px;
  width: auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .product-header {
    padding-top: 6rem;
  }
  .product-header h1 {
    font-size: 2.2rem;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .product-header h1 {
    font-size: 1.8rem;
  }
  .category-filter {
    gap: 0.5rem;
  }
  .category-filter .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    flex-grow: 1;
    text-align: center;
  }
}/*# sourceMappingURL=products.css.map */