:root {
    --primaryColor: #092143;
    --secondaryColor: #F4A51C;
    --helper: #b59a6b;

    --black: #000000;
    --white: #ffffff;

    --bg-1: #f7f7f7;

    --border: rgba(255, 255, 255, .1);
    --borde-1: rgba(58, 77, 105, 1);


    --text: #242424;
    --text-1: #333333;
    --text-3: #2f363a;
    --text-4: #BBBBBB;

    --facebook: #3b5998;
    --whatsApp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}


body {

    background: var(--white);
    line-height: 1;

    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;

    /* font-family: "DM Sans", sans-serif; */
    font-size: 15px;
    font-weight: 400;
    color: var(--text);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: auto;

    width: 100vw;
    font-family: "Cairo", system-ui, Arial, sans-serif;
    /* padding-bottom: 60px; */
}

main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.container {
    width: 98%;
    max-width: 1550px;
    margin-inline: auto;
}

a {
    text-decoration: none;
    color: var(--text-3);
    display: inline-block;
}

button {
    border: none;
    background-color: transparent;
}



.hero,
.popular-slider,
.discount-products-slider,
.quick-view-image {
    touch-action: pan-y;
    user-select: none;
}

/* 
@media (max-width:1024px){
    .container {
       padding-inline: 10px;
    }
} */