/* ==========================================
   ELITE STORE RESET CSS
   Version : 1.0
========================================== */

/* Universal Reset */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Root */

html{
    scroll-behavior:smooth;
    font-size:16px;
}

/* Body */

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Media */

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

/* Forms */

input,
button,
textarea,
select{
    font:inherit;
    border:none;
    outline:none;
    background:none;
}

/* Buttons */

button{
    cursor:pointer;
}

/* Links */

a{
    text-decoration:none;
    color:inherit;
}

/* Lists */

ul,
ol{
    list-style:none;
}

/* Tables */

table{
    border-collapse:collapse;
    border-spacing:0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6{
    font-weight:inherit;
    font-size:inherit;
}

/* Paragraph */

p{
    overflow-wrap:break-word;
}

/* Text Selection */

::selection{
    background:#2563eb;
    color:#ffffff;
}

/* Remove Number Input Arrows */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

input[type="number"]{
    appearance:textfield;
}

/* Textarea */

textarea{
    resize:vertical;
}

/* Disabled */

button:disabled,
input:disabled{
    cursor:not-allowed;
}

/* Focus */

:focus-visible{
    outline:2px solid #2563eb;
    outline-offset:3px;
}