/* PAGE CATALOGUE */
.catalogue {
  background: linear-gradient(to bottom, #ffffff, #d7a4c6);
  min-height: 600px;
  display: block;
  margin-top: auto;
  padding-top: 60px;
}

.catalogue .ctm-section-title {
  text-align: center;
  position: relative;
}

.catalogue .ctm-section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #602255;
}

/* Bagian count-catalogue */
.count-catalogue {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  height: auto;
  min-height: 200px;
  margin: 0 auto;
}

.count-item {
  text-align: center;
  padding: 20px;
  width: 180px;
}

.count-item h3 {
  font-size: 2rem;
  color: #602255;
  margin-bottom: 10px;
  font-weight: 800;
}

.count-item p {
  font-size: 1rem;
  font-weight: normal;
  color: #860d75;
  margin: 0;
}

/* Responsif */
@media (max-width: 768px) {
  .count-catalogue {
    gap: 20px;
  }

  .count-item {
    width: 100%;
  }
}

/* Box produk */
.box-product {
  background: linear-gradient(to bottom, rgb(134, 13, 117), rgb(185, 48, 159));
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
  width: auto;
  margin-top: -30px;
}

.box-product h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.box-product img {
  width: 80%;
  height: auto;
  border-radius: 15px;
  background-color: white;
  padding: 40px 20px;
}

/* Hover efek pada produk */
.box-product:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsif */
@media (max-width: 768px) {
  .count-catalogue {
    flex-direction: column;
    gap: 20px;
  }

  .box-product {
    margin-bottom: 20px;
  }

  .box-product img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Catalogue Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  /* padding-top: 0; */
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center; /* Vertical center */
  background-color: #d9a8c8;
  height: 50px;
  padding: 5px;
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: wheat;
  background: rgb(112, 2, 70);
}

.blog-pagination li.active {
  background: rgb(77, 253, 61);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}
