/* =====================================================
   DESIGN TOKENS (STRUCTURE LEVEL)
===================================================== */

:root {

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --font-size-base: 16px;
    --font-size-small: 0.85rem;
    --font-size-normal: 1rem;
    --font-size-large: 1.2rem;

    /* Layout */
    --container-width: 1260px;
    --content-max-width: 1260px;
    --product-content-width: 1260px;

    /* Motion */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;

    /* Border / Radius */
    --radius-soft: 10px;
    --radius-medium: 16px;

    /* Shadow */
    --shadow-soft: 0 8px 24px rgba(0,0,0,0.15);
}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;

    font-family: var(--font-body);
    font-size: var(--font-size-normal);
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

p {
    margin: 0 0 1.5rem;
}


/* =====================================================
   LINKS
===================================================== */

a {
    text-decoration: none;
    transition: color var(--transition-fast);
}


/* =====================================================
   MEDIA
===================================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =====================================================
   BUTTON BASE
===================================================== */

button,
.button,
input[type="submit"] {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}


/* =====================================================
   CONTAINER SYSTEM
===================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
