/** Shopify CDN: Minification failed

Line 77:0 Unexpected "<"
Line 198:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.bedtime-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bedtime-content {
  padding-right: 50px;
}
.bedtime-section.image-first .bedtime-content {
    padding: 0;
    padding-left: 50px;
}
.bedtime-heading {
  font-size: 46px;
  margin-bottom: 10px;
  font-weight: 700;
}

.bedtime-description {
  font-size: 1rem;
  margin-bottom: 20px;
}

  .bedtime-image, .bedtime-content {
    width: 49%;
}

.bedtime-image img {
  max-width: 100%;
  border-radius: 100px;
  display: block;
  margin: 0 auto;
  height: 450px;
  width: 100%;
  object-position: 100% 25%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .bedtime-section {
    flex-direction: column;
  }

  .bedtime-content,
  .bedtime-image {
    padding: 20px;
    width: 100%;
  }
}
.bundle-disclaimer {
  margin-top: 15px;
  padding: 12px 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b00020;
  background: #fff8f8;
  border: 1px solid #f5c2c7;
  border-radius: 6px;
}
.bundle-disclaimer .warning-icon svg {
  flex-shrink: 0;
  fill: #b00020;
}
<style>
.related-slider-section {
  margin: 50px auto;
  max-width: 100%;
  overflow: hidden;
}
.related-slider-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.slider-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.product-slide {
  min-width: 100%;
  flex: 0 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  background: white;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}
.product-card h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}
.product-card p {
  color: #e60000;
  font-weight: bold;
}
.product-button {
  margin-top: 10px;
  display: inline-block;
  background: #e60000;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
}
.slider-dots {
  text-align: center;
  margin-top: 15px;
}
.related-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  will-change: transform;
  cursor: grab;
}

.product-slide {
  flex: 0 0 auto;
  min-width: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dot.active {
  background: #333;
}
.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-dot.active {
  background-color: #e60000;
}

/* Responsive Multi-slide */
@media (min-width: 600px) {
  .product-slide {
    min-width: 50%;
  }
}
@media (min-width: 900px) {
  .product-slide {
    min-width: 25%;
  }
}
</style>