@import './variables.css';
@import './layout.css';
@import './woocommerce.css';

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

h1 {
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-800);
    font-size: var(--font-size-h1);
    line-height: 1.2;
    color: var(--color-primary-dark);
}

h2 {
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-700);
    font-size: var(--font-size-h2);
    line-height: 1.25;
}

h3 {
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-h3);
    line-height: 1.3;
}

h4 {
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-h4);
}

p, li, span, a {
    font-family: var(--font-family-base);
    font-size: var(--font-size-p);
}

button, .btn, .button {
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-button);
    border-radius: 12px;
}

input, select, textarea {
    font-family: var(--font-family-base);
    font-size: var(--font-size-input);
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
}

ul {
  list-style: none; 
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 14px;
    border-color: transparent;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}