#products-screen {
    position: relative;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background: black;
    max-width: 1200px;
    margin: 0;
    box-sizing: border-box;
    padding-top: 33.33vh;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none;
    user-select: none;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

.products-title {
    position: relative;
    display: flex;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(15px, 2.5vw + 0.5rem, 20px);
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    text-align: center;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none;
}

.product-text {
    position: relative;
    padding-left: 5vw;
    padding-right: 5vw;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    white-space: nowrap;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none;
}

.product-text p {
    color: white;
    font-size: clamp(15px, 2.5vw + 0.5rem, 20px);
    text-align: center;
    position: relative;
    overflow: hidden !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Đảm bảo products section luôn chặn scroll */
#products,
#products .content-section,
#products-screen,
.products-title,
.product-text,
.product-text p {
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    overscroll-behavior: none !important;
}

@media (max-width: 768px) {
    .products-title {
        font-size: 4vw;
    }
}