body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    overflow-y: auto;
}

    html {
        scroll-behavior: smooth;
    }

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF6600;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E35A00;
}