
.container {
  padding-left: 15px;
  padding-right: 15px;
}

 /* Product Card Container */
.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: white;
}

/* Diagonal background split */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 65%;
  width: 100%;
  background: var(--color);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
  transition: 0.4s ease;
}


.product-card.teal { --color: #00bfa6; }


/* Title (top-left) */
.title {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Counter (top-right) */
.counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Circular Image */
.circle-img {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 3;
}

.circle-img img {
  width: 180px !important;
  height: 180px !important;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 1s ease;
}

/* Hover Effects */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

/* Zoom pop-out effect for image */
.product-card:hover .circle-img img {
  transform: scale(1.15);
  transition: transform 0.6s ease;
}


/* ---------- Page Header Section ---------- */
.page-header {
  position: relative;
  padding: 120px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay effect */
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Background image container */
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Inner content */
.page-header__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-header__inner h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Breadcrumb ---------- */
.thm-breadcrumb__inner {
  display: flex;
  justify-content: center;
}

.thm-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.thm-breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.thm-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.thm-breadcrumb a:hover {
  color: #0faf87; /* theme green */
}

.thm-breadcrumb .icon-angle-right {
  font-size: 14px;
  color: #ddd;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .page-header {
    padding: 90px 0 70px;
  }

  .page-header__inner h3 {
    font-size: 32px;
  }

  .thm-breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 70px 0 50px;
  }

  .page-header__inner h3 {
    font-size: 26px;
  }
}

