/* =========================================================== */
/*  SHADE SWATCH GALLERY - CUTE & CLEAN                        */
/* =========================================================== */

.shade-page {
  padding-bottom: 50px;
  height: 939px;
  position: relative;
}

/* ====== HEADER ====== */
.shade-header {
  position: relative;
  z-index: 20; 
  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: "Vividly-Regular", Helvetica;
  font-size: 13px;
  color: #5b1133;
  margin-bottom: 30px;
}

/* =========================================================== */
/*  INTRO SECTION                                               */
/* =========================================================== */

.shade-intro {
  position: relative;
  z-index: 20; 
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.intro-image {
  width: 100%;
  height: 280px;
  background-color: #ffcbe5;
  border-radius: 34.6px;
  background-size: cover;
  background-position: center;
  border: 1px solid #ffe8f3;
  margin-bottom: 20px;
}

.intro-text {
  text-align: center;
}

.intro-text h2 {
  font-family: "Dreamy Notes Script";
  font-size: 24px;
  color: #5b1133;
  margin-bottom: 10px;
}

.intro-text p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  line-height: 1.2;
  max-width: 500px;
  margin: 0 auto;
}

/* =========================================================== */
/*  SHADE SWATCH GRID                                           */
/* =========================================================== */

.shade-gallery {
  position: relative;
  z-index: 20;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.swatch-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #ffe8f3;
  box-shadow: 0 4px 15px rgba(255, 125, 125, 0.15);
  transition: all 0.3s ease;
}

.swatch-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 125, 125, 0.25);
}

.swatch-name {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 13px;
  color: #5b1133;
  letter-spacing: 0.5px;
}

/* =========================================================== */
/*  GALLERY CTA (Shop Now Button)                               */
/* =========================================================== */

.gallery-cta {
  text-align: center;
  margin-top: 10px;
}

.gallery-cta p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 13px;
  color: #5b1133;
  margin-bottom: 15px;
}

.shop-btn {
  background: #ffe8f3;
  border: 1px solid #ffadd6;
  border-radius: 34.6px;
  padding: 10px 30px;
  font-family: "Vividly-Regular", Helvetica;
  color: #5b1133;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.shop-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: 11px !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;
}

.shade-header {
  position: relative;
  z-index: 20;
  padding-top: 80px;  /* Increased from 50px to 80px */
  text-align: center;
}

.clio .text-wrapper-22 {
  top: 35px !important;
  bottom: 45px !important;
  left: calc(50.00% - 77px) !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: 600px) {
  .back-home {
    font-size: 11px;
    padding: 5px 12px;
    top: 29px;
    left: 15px;
  }

  .page-title {
    font-size: 22px;
  }

  .page-subtitle {
    font-size: 11px;
  }

  .intro-image {
    height: 200px;
  }

  .intro-text h2 {
    font-size: 22px;
  }

  .swatch-circle {
    width: 80px;
    height: 80px;
  }

  .swatch-name {
    font-size: 12px;
  }

  .gallery-grid {
    gap: 20px;
  }

  .shop-btn {
    font-size: 13px;
    padding: 8px 25px;
  }

}