body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 20px;
}

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

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.comparison-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
    cursor: col-resize;
    z-index: 10;
}

.comparison-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #2C2320;
}

/* Animation Observer */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.reveal-on-scroll.delay-100 {
    transition-delay: 100ms;
}

.reveal-on-scroll.delay-200 {
    transition-delay: 200ms;
}

.reveal-on-scroll.delay-300 {
    transition-delay: 300ms;
}

.reveal-on-scroll.delay-400 {
    transition-delay: 400ms;
}

.reveal-on-scroll.delay-500 {
    transition-delay: 500ms;
}

.reveal-on-scroll.delay-600 {
    transition-delay: 600ms;
}

.reveal-on-scroll.delay-700 {
    transition-delay: 700ms;
}


.reveal-on-scroll.delay-800 {
    transition-delay: 800ms;
}

.reveal-on-scroll.delay-900 {
    transition-delay: 900ms;
}

.reveal-on-scroll.delay-1000 {
    transition-delay: 1000ms;
}

/* Glass / Linear Style Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.02);
}

/* Custom Inputs */
.custom-input {
    appearance: none;
    background: transparent;
    border: 1px solid #E5E0DD;
    transition: all 0.2s;
}

.custom-input:focus {
    outline: none;
    border-color: #6D5A50;
    box-shadow: 0 0 0 1px #6D5A50;
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content .accordion-inner {
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out;
}

.accordion-content.accordion-open {
    max-height: 2000px;
}

.accordion-content.accordion-open .accordion-inner {
    transform: translateY(0);
    opacity: 1;
}



