/* --- SMOOTH SCROLLING --- */
html {
  scroll-behavior: smooth;
}

/* --- SECTION LAYOUT --- */
.deepki-sneak-peek {
  background-color: #E5F7F5; /* Default Mint */
  {% if module.bg_color.color %}
    background-color: ;
  {% endif %}
  
  /* Full Bleed */
  width: 100vw !important;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 80px 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  display: block;
}

/* --- HEADING --- */
.deepki-sneak-header h2 {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #004F47; /* Dark Green Text */
  margin-bottom: 40px;
}

/* --- CAROUSEL WRAPPER --- */
.deepki-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* TRACK (The part that moves) */
.deepki-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  
  /* Hide Scrollbars */
  scrollbar-width: none; 
  -ms-overflow-style: none;
}
.deepki-slider-track::-webkit-scrollbar { 
  display: none; 
}

/* SLIDE ITEM */
.deepki-slide {
  flex: 0 0 100%; /* Show 1 full slide at a time */
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.deepki-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* --- ARROWS --- */
.deepki-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 30px;
  color: #00615C;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.deepki-arrow:hover { opacity: 1; }
.deepki-arrow-prev { left: -50px; }
.deepki-arrow-next { right: -50px; }

/* --- BUTTON (Pill Shape) --- */
.deepki-peek-btn {
  display: inline-block;
  background-color: #00615C; /* Button Color */
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
}
.deepki-peek-btn:hover {
  background-color: #004F47;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .deepki-sneak-header h2 { font-size: 2rem; }
  .deepki-arrow { display: none; } /* Hide arrows on touch screens */
}