/**
 * Coderic Luma — estilos base storefront + checkout unificado.
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap');

:root {
    --coderic-orange: #f04100;
    --coderic-orange-hover: #c2410c;
    --coderic-bg: #f8fafc;
    --coderic-text: #0c0a09;
    --coderic-border: #e7e5e4;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--coderic-text);
    background: var(--coderic-bg);
}

.page-header {
    background: #fff;
    border-bottom: 1px solid var(--coderic-border);
}

.header.content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo img {
    max-height: 48px;
    width: auto;
}

.coderic-luma-wordmark {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.coderic-luma-wordmark span {
    color: var(--coderic-orange);
}

.action.primary,
button.action-primary {
    background: var(--coderic-orange);
    border-color: var(--coderic-orange);
}

.action.primary:hover,
button.action-primary:hover {
    background: var(--coderic-orange-hover);
    border-color: var(--coderic-orange-hover);
}

.page-footer {
    background: #1c1917;
    color: #fafaf9;
}

.page-footer a {
    color: #fdba74;
}

.copyright {
    display: none !important;
}

.coderic-luma-footer-note {
    text-align: center;
    padding: 1rem;
    font-size: 0.8125rem;
    color: #a8a29e;
}

.coderic-header__ecosystem-bar > .coderic-header__shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.coderic-store-subnav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.coderic-store-subnav__list a {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #57534e;
    text-decoration: none;
}

.coderic-store-subnav__list a:hover {
    color: var(--coderic-orange);
}

.subnav-dropdown-panel {
    display: none;
    position: absolute;
    z-index: 50;
    min-width: 12rem;
    background: #fff;
    border: 1px solid var(--coderic-border);
    border-radius: 0.5rem;
    padding: 0.25rem 0;
}

.subnav-dropdown.is-open .subnav-dropdown-panel,
.subnav-dropdown:hover .subnav-dropdown-panel {
    display: block;
}

.subnav-dropdown {
    position: relative;
}

.coderic-lang-switcher {
    position: relative;
}

.coderic-lang-switcher__menu[hidden],
.coderic-store-switcher__menu[hidden] {
    display: none !important;
}

.coderic-lang-switcher__menu,
.coderic-store-switcher__menu {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 60;
    background: #fff;
    border: 1px solid var(--coderic-border);
    border-radius: 0.5rem;
    padding: 0.25rem 0;
    min-width: 10rem;
    list-style: none;
    margin: 0;
}
