@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after {
    font-family: 'Montserrat', sans-serif;
}

.font-serif, [class*="font-serif"] {
    font-family: 'Playfair Display', serif !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.before-after-container {
    position: relative;
    user-select: none;
    overflow: hidden;
    will-change: transform;
}
.img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: width;
}
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #B76E79;
    cursor: ew-resize;
    z-index: 10;
    will-change: left;
}
.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B76E79;
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.25);
    pointer-events: none;
}

/* Custom scrollbars matching the Rose Gold theme shades */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FFFDFD;
}
::-webkit-scrollbar-thumb {
    background: #E8C5C8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B76E79;
}