* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:hover {
    outline: none;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: var(--y-font-family-Cairo);
    line-height: 1.6;
    color: var(--y-color-secondary-text);
    /* Background pattern will be set via inline CSS in functions.php */
    direction: rtl;
    text-align: right;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

ul {
    list-style: none;
}