.catalog {
  position: relative;
  padding: 90px 20px 90px;
  background: #eef2f2;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: none; /* PENTING */
}


.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.catalog-desc {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 14px;
  color: #5a6a6a;
  margin-bottom: 56px;
}

.catalog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.catalog-card.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.catalog-card:hover .catalog-thumb {
  transform: scale(1.03);
}

.catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* isi penuh tanpa distorsi */
  display: block;
  transition: transform 0.35s ease;
}
/* THUMBNAIL */
.catalog-thumb {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #0f1f17, #1f3a2b);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.catalog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.123)
  );
}

/* WATERMARK LOGO */
.catalog-thumb .watermark {
  position: relative;
  font-family: "Georgia", serif;
  font-size: 64px;
  color: rgba(255,255,255,0.15);
  z-index: 2;
}

.catalog-title {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 500;
  margin-bottom: 40px;
  color: #2f3e3e;
  letter-spacing: 1px;
}

/* INFO */
.catalog-info {
  padding: 7px;
  font-family: "Poppins", system-ui, sans-serif;
}

.catalog-code {
  font-size: 12px;
  font-weight: 500;
  color: #1e7f5a;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* PRICE */
.catalog-price {
  margin: 10px 0 14px;
}

.catalog-price strong {
  font-size: 18px;
  font-weight: 600;
  color: #0f6b4a;
}

.catalog-price del {
  font-size: 12px;
  color: #c44;
  margin-left: 6px;
}

/* ACTION */
.catalog-action .btn-order {
  display: none;
}

.catalog-action {
  display: flex;
  gap: 8px;
}

.catalog-action a {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  justify-content: center;
}

/* BUTTONS */
.btn-demo {
  background: #f5c443;
  color: #333;
}

.btn-demo:hover {
  background: #e6b838;
}

.btn-order {
  background: #0f6b4a;
  color: #fff;
}

.btn-order:hover {
  background: #0c5a3f;
}
