:root {
    --accent: #d4669a;
    --accent-ink: #141416;
    color-scheme: light;
    font-family: "Open Sans", "Segoe UI", sans-serif;
    background: #fff7fa;
}





* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    margin: 0;
    color: #141416;
    background: #fff7fa;
}

header {
    background: #141416;
    color: #fff7fa;
    border-bottom: 1px solid rgba(244, 167, 186, .34);
    box-shadow: 0 10px 24px rgba(0, 31, 32, .16);
    position: relative;
    z-index: 20;
}

header .inner,
footer .inner,
main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px;
}

header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 8px;
}

.brand-logo {
    display: block;
    width: 214px;
    height: 43px;
    object-fit: contain;
}

.card,
.panel,
.filter-panel {
    background: #fff;
    border: 1px solid #d8e1dc;
    border-radius: 4px;
}

.cards {
    display: grid;
    gap: 12px;
    margin: 14px 0;
}

.classified-card {
    display: grid;
    grid-template-columns: minmax(225px, 278px) minmax(0, 1fr);
    gap: 14px;
    width: 100%;
}

@media (max-width: 920px) {
    .classified-card {
        grid-template-columns: 1fr;
    }
}

.floating-tools {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
}

body.consent-modal-open {
    overflow: hidden;
}

.age-consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(17, 24, 39, .78);
}

.age-consent-dialog {
    width: min(100%, 430px);
    border: 1px solid rgba(20, 20, 22, .14);
    border-radius: 6px;
    background: #fff;
    color: #1f2933;
    padding: 24px;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .3);
}

.age-consent-dialog h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0;
}

.age-consent-dialog p {
    margin: 0 0 18px;
    line-height: 1.55;
}

.age-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.age-consent-actions button,
.age-consent-actions a,
.cookie-consent-actions button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #d8e1dc;
    padding: 10px 14px;
    font: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.age-consent-confirm,
.cookie-consent-accept {
    border-color: #c3074f;
    background: #c3074f;
    color: #ffffff;
}

.age-consent-leave {
    background: transparent;
    color: inherit;
}

.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid #d8e1dc;
    border-radius: 6px;
    background: #fff;
    color: #1f2933;
    padding: 14px;
    box-shadow: 0 18px 48px rgba(17, 24, 39, .18);
}

.cookie-consent-banner p {
    margin: 0;
    line-height: 1.45;
}

.cookie-consent-banner a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 720px) {
    .cookie-consent-banner {
        grid-template-columns: 1fr;
    }
}
