/* Public shared base: reset, header, brand, actions and buttons. */

:root {
    --font-title: 'Arimo', Arial, sans-serif;
    --font-text: 'Roboto', Arial, sans-serif;
    --color-black: #050505;
    --color-white: #ffffff;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 34px;
    --container: 1180px;
    --brand-bg: #101113;
    --brand-surface: #181a1f;
    --brand-surface-strong: #20232b;
    --brand-accent: #666666;
    --brand-accent-secondary: #b9f227;
    --brand-accent-third: #67c8ff;
    --brand-text: #ffffff;
    --brand-muted: #a5a9b3;
    --brand-line: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-text);
    background: var(--brand-bg);
    color: var(--brand-text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
}

.container {
    width: min(var(--container), calc(100% - 70px));
    margin: 0 auto;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--color-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.site-header-container {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 1180px;
    color: var(--color-white);
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #111111, #2a2a2a);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
}

.brand__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 120px;
}

.brand__logo img {
    width: auto;
    max-width: 120px;
    max-height: 38px;
    object-fit: contain;
}

.brand__meta {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__meta strong {
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand__meta small {
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #565656;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a,
.header-actions a,
.header-actions button {
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.header-actions a:hover,
.header-actions button:hover {
    color: var(--brand-accent);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.header-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-link {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
}

.cart-link span {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cart-accent);
    color: var(--cart-accent-text);
    font-size: 10px;
    font-weight: 800;
}

.cart-link [data-cart-count][hidden] {
    display: none !important;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* Verified eyebrow icon */

.eyebrow__verified-icon {
    width: 1.1em;
    height: 1.1em;
    display: inline-block;
    flex: 0 0 auto;
    object-fit: contain;
    vertical-align: -0.2em;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: currentColor;
}

.section-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.78;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--artist-accent) !important;
}

.btn--brand {
    background: var(--brand-accent);
    color: #ffffff;
}

.btn--brand-secondary {
    background: var(--brand-accent-secondary);
    color: #111111;
}

.btn--outline {
    background: transparent;
    border-color: var(--brand-line);
    color: var(--brand-text);
}

.btn--outline:hover {
    background: var(--brand-surface-strong);
    border-color: var(--brand-accent-third);
}
