/* ====== SPECIFIC HEIGHT FOR COLLECTION PAGE ====== */
.collection-page {
  height: 1632px;
  padding-bottom: 50px;
  position: relative;
}
/* ====== HEADER ====== */
.collection-header {
  position: relative;
  z-index: 10;
  padding-top: 50px;
  text-align: center;
}

.back-home {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "Dreamy Notes Script";
  color: #5b1133;
  font-size: 13px;
  text-decoration: none;
  background: #ffe8f3;
  padding: 6px 16px;
  border-radius: 34.6px;
  border: 1px solid #ffadd6;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-home:hover {
  transform: scale(1.05);
  background: #ffcbe5;
  color: white;
}

.page-title {
  font-family: "Dreamy Notes Script";
  font-size: 30px;
  color: #5b1133;
  margin-bottom: 5px;
}

.page-subtitle {
  font-family: "Single Day", cursive;
  font-size: 13px;
  color: #5b1133;
  margin-bottom: 30px;
}

/* =========================================================== */
/*  SECTION STYLES                                              */
/* =========================================================== */

.section-block {
  position: relative;
  z-index: 10;
  max-width: 880px;
  margin: 0 auto 45px;
  padding: 0 15px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}

.section-title {
  font-family: "Dreamy Notes Script";
  font-size: 24px;
  color: #5b1133;
  margin: 0;
}

.section-subtitle {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 12px;
  color: #8a6a7a;
  text-align: center;
  margin-bottom: 20px;
}

/* =========================================================== */
/*  CARD ROW - 4 PER ROW                                        */
/* =========================================================== */

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* =========================================================== */
/*  PRODUCT CARD                                                */
/* =========================================================== */

.product-card {
  width: 190px;
  background: #ffffff;
  border-radius: 34.6px;
  padding: 16px 16px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 125, 125, 0.08);
  border: 1px solid #ffe8f3;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 125, 125, 0.15);
}

.product-image {
  width: 100%;
  height: 150px;
  background-color: #ffcbe5;
  border-radius: 20px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid #ffe8f3;
}

.product-name {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  margin-bottom: 4px;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.product-desc {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 11px;
  color: #8a6a7a;
  margin-bottom: 14px;
}

.product-btn {
  background: #ffe8f3;
  border: 1px solid #ffadd6;
  border-radius: 34.6px;
  padding: 6px 16px;
  font-family: "Vividly-Regular", Helvetica;
  color: #5b1133;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.product-btn:hover {
  background: #ffcbe5;
  color: white;
  transform: scale(1.05);
}

/* =========================================================== */
/*  FOOTER - EXACTLY FROM MAIN PAGE                             */
/* =========================================================== */

.footer-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 30px;
  min-height: 120px;
}

.clio .rectangle-19 {
  top: auto !important;
  bottom: 0 !important;
  left: calc(50.00% - 259px) !important;
  width: 516px !important;
  height: 103px !important;
  background-color: #ffe8f3 !important;
  position: absolute !important;
  border-radius: 34.6px !important;
}

.clio .text-wrapper-22 {
  top: 32px !important;
  bottom: 45px !important;
  left: calc(50.00% - 84px) !important;
  width: 177px !important;
  font-size: 8.9px !important;
  text-align: center !important;
  line-height: 7.9px !important;
  position: absolute !important;
  font-family: "Single Day", cursive !important;
  font-weight: 400 !important;
  color: #5b1133 !important;
  letter-spacing: 0 !important;
  z-index: 99999 !important;
}

/* =========================================================== */
/*  MOBILE RESPONSIVE                                          */
/* =========================================================== */

@media (max-width: 850px) {
  .product-card {
    width: 170px;
  }
}

@media (max-width: 600px) {
  .back-home {
    font-size: 11px;
    padding: 5px 12px;
    top: 29px;
    left: 15px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-subtitle {
    font-size: 11px;
  }

  .section-block {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 11px;
  }

  .card-row {
    gap: 12px;
  }

  .product-card {
    width: 160px;
    padding: 12px 12px 16px;
  }

  .product-image {
    height: 120px;
  }

  .product-name {
    font-size: 12px;
  }

  .product-desc {
    font-size: 10px;
  }

  .product-btn {
    font-size: 10px;
    padding: 5px 12px;
  }


}

@media (max-width: 450px) {
  .product-card {
    width: 140px;
    padding: 10px 10px 14px;
  }

  .product-image {
    height: 100px;
  }
}

