/* DILSHOP v33 — full background slider */
.v33-hero-shell{
  padding:24px 0 10px;
}
.v33-hero-slider{
  position:relative;
  min-height:470px;
  border-radius:28px;
  overflow:hidden;
  background:#dff3ff;
  box-shadow:0 24px 58px rgba(5,45,91,.14);
}
.v33-hero-track{
  position:relative;
  min-height:470px;
}
.v33-hero-slide{
  position:absolute;
  inset:0;
  min-height:470px;
  opacity:0;
  pointer-events:none;
  transform:scale(1.01);
  transition:opacity .45s ease, transform .45s ease;
  background-image:
    linear-gradient(90deg, rgba(246,251,255,.92) 0%, rgba(246,251,255,.74) 33%, rgba(246,251,255,.26) 58%, rgba(246,251,255,0) 100%),
    var(--v33-bg);
  background-size:cover;
  background-position:center;
}
.v33-hero-slide.is-active{
  opacity:1;
  pointer-events:auto;
  transform:scale(1);
  z-index:2;
}
.v33-hero-content{
  position:relative;
  z-index:3;
  max-width:650px;
  padding:76px 64px;
}
.v33-eyebrow{
  color:#277be8;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:14px;
  font-weight:950;
  margin-bottom:16px;
}
.v33-hero-content h1{
  margin:0;
  max-width:620px;
  color:#071d3a;
  font-size:clamp(36px,4.4vw,68px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.v33-hero-content p{
  max-width:520px;
  margin:20px 0 0;
  color:#28465f;
  font-size:19px;
  line-height:1.42;
}
.v33-hero-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:32px;
}
.v33-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-height:58px;
  padding:0 28px;
  border-radius:17px;
  text-decoration:none;
  font-weight:950;
  box-shadow:0 12px 24px rgba(6,43,87,.12);
}
.v33-btn-primary{
  background:linear-gradient(135deg,#1d67cc,#2354a4);
  color:#fff;
}
.v33-btn-light{
  background:rgba(255,255,255,.92);
  color:#1e4d8f;
  border:1px solid rgba(39,123,232,.16);
}
.v33-hero-arrow{
  position:absolute;
  top:50%;
  z-index:5;
  width:50px;
  height:50px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  color:#1e4d8f;
  font-size:42px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(6,43,87,.12);
}
.v33-hero-prev{left:18px}
.v33-hero-next{right:18px}
.v33-hero-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  z-index:5;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}
.v33-hero-dots button{
  width:12px;
  height:12px;
  border-radius:999px;
  border:2px solid #fff;
  background:rgba(255,255,255,.7);
  cursor:pointer;
  padding:0;
}
.v33-hero-dots button.is-active{
  width:28px;
  background:#1d67cc;
}
@media(max-width:900px){
  .v33-hero-slider,.v33-hero-track,.v33-hero-slide{
    min-height:600px;
  }
  .v33-hero-slide{
    background-image:
      linear-gradient(180deg, rgba(246,251,255,.94) 0%, rgba(246,251,255,.72) 44%, rgba(246,251,255,.16) 100%),
      var(--v33-bg);
    background-position:center bottom;
  }
  .v33-hero-content{
    padding:44px 26px;
  }
  .v33-hero-content h1{
    font-size:42px;
  }
  .v33-hero-content p{
    font-size:16px;
  }
  .v33-hero-arrow{
    display:none;
  }
}
