body {
    margin: 0 !important;
}

    .product {
        font-family: 'CourierNEW',Arial,sans-serif;
        letter-spacing: 0.2px;
        line-height: 1.3;
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    
    .product__header {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .product__text {
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
        font-weight: 200;
    }
    
    .product__scent__underline {
        text-decoration: underline;
    }
    
    .product__scent__line {
        padding-top: 0.6rem;
    }
    

    
    @media (max-width: 959px) {
        .product__header {
            font-size: 0.9rem;
        }
        
        .product__text {
            font-size: 0.75rem;
        }
        
        .product {
            line-height: 1.2;
            gap: 0.8rem;
        }
    }
    
    @media (min-width: 960px) and (max-width: 1200px) {
        .product__header {
            font-size: 1.3rem;
        }
        
        .product__text {
            font-size: 0.9rem;
        }
        
        .product {
            line-height: 1.2;
        }
    }
    
    @media (min-width: 1201px) and (max-width: 1560px) {
        
        .product__text {
            font-size: 0.9rem;
        }
        
        .product {
            line-height: 1.2;
            gap: 0.8rem;
        }
    }