:root {
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Manrope", var(--font-sans);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.custom-shadow {
    box-shadow: 0 20px 40px -15px rgba(109, 31, 96, 0.08);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.step-enter {
    animation: step-enter 0.3s ease both;
}

.animate-slide-down {
    animation: slide-down 0.3s ease both;
}

.scrollbar-hide {
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes step-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.estimate-price{
  font-size:40px;
  font-weight:900;
  line-height:1;
  word-break:break-word;
}

@media(min-width:768px){

  .estimate-price{
    font-size:62px;
  }

}


.spec-box{
  margin-top:45px;
  background:#fff;
  border-radius:30px;
  padding:10px;
  border:1px solid #eee;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

@media(min-width:768px){

  .spec-box{
    padding:35px;
  }

}
