/* Explain: Base reset, typography defaults, smooth scroll, Alpine cloak - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.02;
    text-transform: uppercase;
}

[x-cloak] {
    display: none !important;
}

::selection {
    background: var(--secondary-color);
    color: var(--pure-white);
}

.cart-drawer-overlay {
    background: rgba(47, 53, 56, 0.6);
    backdrop-filter: blur(4px);
}