/**
 * Shop Design System — Base CSS
 * Global Reset, Tipografia e Acessibilidade
 */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--s-font-main);
    background-color: var(--s-color-bg-body);
    color: var(--s-color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--s-color-text-main);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--s-color-primary);
    text-decoration: none;
    transition: var(--s-transition-fast);
}

a:hover {
    color: var(--s-color-primary-hover);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Foco para acessibilidade */
:focus-visible {
    outline: 2px solid var(--s-color-secondary);
    outline-offset: 2px;
}
