﻿:root {
    --bg: #E8E4F3;
    --surface: #F3F0FA;
    --border: rgba(8, 34, 68, 0.14);
    --text: #082244;
    --muted: #5E6F85;
    --accent: #082244;
    --favorite: #B4A8FE;
    --radius: 24px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease;
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

body:has(.home-hero-banner) .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 28px;
    flex-wrap: nowrap;
}

.mobile-menu-drawer,
.mobile-menu-toggle,
.mobile-menu-overlay {
    display: none;
}

.mobile-menu-icon {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: background 0.2s ease;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease;
}

.mobile-menu-icon::before {
    top: -6px;
}

.mobile-menu-icon::after {
    bottom: -6px;
}

body.menu-open .mobile-menu-icon {
    background: transparent;
}

body.menu-open .mobile-menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}

body.menu-open .mobile-menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.page-main {
    min-height: calc(100vh - 220px);
}

.main-nav a,
.header-icon-link,
.header-cart-link {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
}

.header-icon-link,
.header-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    position: relative;
}

.header-icon-link {
    cursor: pointer;
}

.header-heart-icon path {
    stroke: var(--favorite);
}

.header-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--text);
    color: var(--surface);
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
}

.header-cart-badge[hidden],
.header-icon-badge[hidden] {
    display: none;
}

.header-icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--favorite);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(8, 34, 68, 0.45);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 20px 20px;
}

.search-overlay[hidden] {
    display: none;
}

.search-overlay-panel {
    width: min(640px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
}

.search-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    z-index: 10;
}

.search-overlay-form {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.search-overlay-input-wrap {
    position: relative;
}

.search-overlay-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.search-overlay-form input::-webkit-search-cancel-button,
.search-overlay-form input::-webkit-search-decoration,
.search-overlay-form input::-ms-clear,
.search-overlay-form input::-ms-reveal {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-results {
    display: grid;
    gap: 40px;
}

.search-results-block h3 {
    margin: 0 0 16px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.search-empty {
    color: var(--muted);
    margin: 0;
}

.search-journal-list {
    display: grid;
    gap: 12px;
}

.search-journal-item {
    display: grid;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
}

.search-journal-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.search-journal-meta {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}


.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-section,
.section-block,
.admin-page,
.auth-page {
    padding: 100px 0;
}

.hero-section {
    min-height: 80vh;
    display: grid;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 4vw, 5rem);
    line-height: 0.95;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-content p {
    margin: 0 0 42px;
    color: var(--muted);
    font-size: 16px;
    max-width: 580px;
}

.btn-aura {
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    transition: background 0.2s ease;
}

.btn-aura:hover {
    background: rgba(8, 34, 68, 0.08);
}

.btn-aura--dark {
    border-color: var(--text);
    background: var(--text);
    color: #fff;
}

.btn-aura--dark:hover {
    background: #222;
}

.btn-aura--lavender {
    border-color: var(--favorite);
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.btn-aura--lavender:hover {
    background: rgba(180, 168, 254, 0.2);
}

.btn-aura--lavender-fill {
    background: var(--favorite);
    border-color: var(--favorite);
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.btn-aura--lavender-fill:hover {
    background: #a89af5;
    border-color: #a89af5;
}

.btn-aura--lavender-outline {
    background: transparent;
    border-color: var(--text);
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.btn-aura--lavender-outline:hover {
    background: rgba(8, 34, 68, 0.06);
}

.btn-aura--ghost {
    background: transparent;
    border: 1px dashed var(--border);
    color: var(--text);
}

.btn-aura--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-heading p {
    color: var(--muted);
    max-width: 520px;
    margin: 0;
}

.grid-4,
.grid-3,
.grid-2 {
    display: grid;
    gap: 28px;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.product-grid--flush {
    width: 100%;
}

.home-product-grid,
.catalog-product-grid {
    grid-auto-rows: 1fr;
}

.home-section--flush {
    padding-left: 0;
    padding-right: 0;
}

.home-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.home-section-head--left {
    text-align: left;
    margin-bottom: 16px;
    padding: 0 48px;
    width: 100%;
    box-sizing: border-box;
}

.home-section-head--left h2 {
    margin: 0 0 2px;
    text-align: left;
}

.home-section-head--left .section-lead {
    margin: 0;
    text-align: left;
    max-width: none;
}

.home-section .home-section-head--left h2 {
    text-align: left;
    margin: 0 0 2px;
}

.home-section .home-section-head--left .section-lead {
    text-align: left;
    margin: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.home-section-note {
    padding: 0 48px;
}

.home-section-head .section-lead {
    margin-bottom: 0;
}
.product-summary { 
    /* ensure buttons don't overlap nearby blocks */
    z-index: 5;
}

.product-card,
.tone-card,
.admin-card,
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.filter-button {
    border: 1px solid var(--border);
    padding: 8px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
}

.admin-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.admin-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(8, 34, 68, 0.08);
    color: var(--accent);
}

.form-stack {
    display: grid;
    gap: 18px;
}

.form-stack label {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.form-stack input,
.form-stack textarea,
.form-stack select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    color: var(--text);
}

.form-error {
    color: #b00;
    margin-bottom: 18px;
}

.form-field {
    display: grid;
    gap: 10px;
}

.form-field-label {
    font-size: 14px;
}

.file-picker-group {
    display: grid;
    gap: 10px;
}

.file-picker-list {
    display: grid;
    gap: 10px;
}

.file-picker {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    cursor: pointer;
}

.file-picker input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-picker-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 10px 20px;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.file-picker-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.file-picker:hover .file-picker-button,
.file-picker-button:hover {
    background: rgba(8, 34, 68, 0.1);
}

.file-picker-name {
    color: var(--muted);
    font-size: 14px;
    word-break: break-all;
}

.file-picker-add {
    justify-self: start;
    padding: 10px 20px;
    font-size: 14px;
}

.aura-select,
.variant-select .aura-select {
    width: 100%;
    padding: 14px 44px 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background-color: var(--surface);
    color: var(--text);
    font-size: 15px;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% + 2px),
        calc(100% - 16px) calc(50% + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.aura-select:hover,
.aura-select:focus {
    border-color: var(--accent);
    outline: none;
}

.variant-select {
    margin: 16px 0;
    display: grid;
    gap: 10px;
}

.variant-select-label {
    font-size: 14px;
    color: var(--text);
}

.tone-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
}

.tone-card h3 {
    font-size: 18px;
    margin: 0 0 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tone-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.tone-card a {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card {
    display: grid;
    gap: 18px;
    padding: 0;
}

.product-card a {
    color: inherit;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--border);
}

.product-card .product-details {
    padding: 24px 22px 28px;
    display: grid;
    gap: 10px;
}

@media (max-width: 720px) {
    .product-card .product-details {
        padding: 16px 12px 20px;
        gap: 6px;
    }
}

/* Newsletter and password recovery */
.footer-form-status {
    min-height: 1.4em;
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.footer-form-status.is-success,
.form-success {
    color: #2f6b46;
}

.footer-form-status.is-error {
    color: #a33a3a;
}

.footer-form .btn-aura:disabled {
    cursor: wait;
    opacity: 0.65;
}

.auth-link {
    margin-top: 18px;
    font-size: 14px;
}

.auth-link a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-success {
    margin-bottom: 18px;
}

.admin-sidebar a.active {
    color: var(--text);
    font-weight: 700;
}

.admin-newsletter,
.newsletter-campaign-list,
.newsletter-subscriber-list {
    display: grid;
    gap: 20px;
}

.newsletter-section {
    padding-top: 8px;
}

.newsletter-section + .newsletter-section {
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.newsletter-section-heading,
.newsletter-campaign-head,
.newsletter-subscriber {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.newsletter-section-heading h3,
.newsletter-campaign-head h4 {
    margin-top: 0;
}

.newsletter-campaign-card {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.newsletter-status {
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
}

.newsletter-status--sent {
    color: #2f6b46;
    border-color: #8eb99e;
}

.newsletter-status--failed {
    color: #a33a3a;
    border-color: #d6a0a0;
}

.newsletter-editor summary {
    cursor: pointer;
    font-weight: 600;
}

.newsletter-editor[open] summary {
    margin-bottom: 16px;
}

.newsletter-campaign-actions {
    display: grid;
    gap: 12px;
}

.newsletter-test-form {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-test-form label {
    display: grid;
    flex: 1 1 240px;
    gap: 6px;
    font-size: 13px;
}

.newsletter-test-form input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 12px;
    background: var(--surface);
}

.newsletter-send-button {
    border-color: #a33a3a;
}

.newsletter-subscriber {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.newsletter-subscriber p {
    margin: 6px 0 0;
}

@media (max-width: 720px) {
    .newsletter-campaign-head,
    .newsletter-subscriber {
        flex-direction: column;
    }

    .newsletter-test-form,
    .newsletter-test-form .btn-aura {
        width: 100%;
    }
}

.product-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-desc {
    color: var(--muted);
    font-size: 13px;
}

.product-price {
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 720px) {
    .product-name {
        font-size: 12px;
    }
    .product-desc {
        font-size: 11px;
    }
    .product-price {
        font-size: 14px;
    }
}

.product-page {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.product-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0;
}

.gallery-main {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.gallery-viewport {
    min-height: 420px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.gallery-media {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.gallery-empty {
    min-height: 420px;
    display: grid;
    place-items: center;
}

.gallery-nav {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}

.gallery-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.gallery-thumb {
    width: 64px;
    height: 80px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    background: var(--surface);
}

.gallery-thumb.is-active {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Product page gallery: sharp rectangles, no card-style rounding */
.product-page .product-gallery .gallery-viewport,
.product-page .product-gallery .gallery-media,
.product-page .product-gallery .gallery-main video,
.product-page .product-gallery img {
    border-radius: 0 !important;
}

.product-page .product-gallery .gallery-viewport {
    min-height: 0;
    background: transparent !important;
    border: 0;
    box-shadow: none;
}

.product-page .product-gallery .gallery-thumb {
    border-radius: 0;
}

.product-page .product-gallery .gallery-viewport .info-card.gallery-empty {
    border-radius: 0;
    width: 100%;
}

.media-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.media-preview-item {
    display: grid;
    gap: 6px;
    width: 92px;
    font-size: 11px;
}

.media-preview-item img,
.media-preview-item video {
    width: 92px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.home-hero {
    min-height: 78vh;
    display: grid;
    align-items: end;
    padding: 120px 0 80px;
    border-bottom: 1px solid var(--border);
}

.home-hero-inner {
    max-width: 760px;
}

.home-eyebrow {
    margin: 0 0 18px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

.home-title {
    margin: 0 0 24px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 300;
}

.home-lead {
    margin: 0 0 36px;
    max-width: 560px;
    color: var(--muted);
    font-size: 16px;
}

.home-cta {
    display: inline-block;
}

.home-frequencies {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-freq-intro {
    margin-bottom: 28px;
}

.home-section-title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
}

.home-freq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    min-height: min(52vh, 720px);
}

.home-freq-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    overflow: hidden;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    color: inherit;
    min-height: min(52vh, 720px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-freq-panel:last-child {
    border-right: none;
}

.home-freq-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    transition: opacity 0.25s ease;
}

.home-freq-core::before { background: #8b7fd6; }
.home-freq-move::before { background: #6fbf73; }
.home-freq-flow::before { background: #6ea8e0; }
.home-freq-aura::before { background: #e0a866; }

.home-freq-panel:hover::before {
    opacity: 0.2;
}

.home-freq-panel--has-image::before {
    background: linear-gradient(180deg, rgba(8, 21, 68, 0.08) 0%, rgba(8, 21, 68, 0.58) 100%);
    opacity: 1;
}

.home-freq-panel--has-image:hover::before {
    opacity: 1;
    background: linear-gradient(180deg, rgba(8, 21, 68, 0.12) 0%, rgba(8, 21, 68, 0.72) 100%);
}

.home-freq-panel--has-image .home-freq-index,
.home-freq-panel--has-image .home-freq-body h3,
.home-freq-panel--has-image .home-freq-hz,
.home-freq-panel--has-image .home-freq-mood {
    color: #fff;
}

.home-freq-index {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.home-freq-body {
    position: relative;
    z-index: 1;
}

.home-freq-body h3 {
    margin: 0 0 10px;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 0.95;
}

.home-freq-hz {
    margin: 0 0 10px;
    font-size: clamp(14px, 1.4vw, 18px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.home-freq-mood {
    margin: 0;
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text);
    max-width: 280px;
    line-height: 1.35;
}

.home-lines-cta {
    display: flex;
    justify-content: center;
    padding: 28px 20px 36px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.home-lines-cta-btn {
    min-width: min(100%, 320px);
    text-align: center;
}

.home-brand-section {
    position: relative;
    width: 100%;
    min-height: min(68vh, 720px);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.home-brand-section--about {
    min-height: min(calc(100svh - 64px), 920px);
}

.home-cut-lines-section {
    min-height: min(68vh, 720px);
}

.home-cut-lines-section__content {
    width: 100%;
    max-width: min(720px, calc(100% - 48px));
}

.home-brand-section__slides {
    position: absolute;
    inset: 0;
}

.home-brand-section__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.home-brand-section__slide.is-active {
    opacity: 1;
}

.home-brand-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(232, 228, 243, 0.92) 0%, rgba(232, 228, 243, 0.55) 50%, rgba(232, 228, 243, 0.2) 100%);
    z-index: 1;
}

.home-brand-section__overlay--about {
    background: linear-gradient(180deg, rgba(232, 228, 243, 0.05) 0%, rgba(232, 228, 243, 0.15) 45%, rgba(232, 228, 243, 0.88) 100%);
}

.home-brand-section__content {
    position: relative;
    z-index: 2;
    min-height: min(68vh, 720px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: min(640px, calc(100% - 48px));
    margin: 0;
    padding: 56px 32px;
    box-sizing: border-box;
}

.home-brand-section__content--bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: auto;
    justify-content: flex-end;
    padding: 48px 32px 56px;
}

.home-brand-section--about .home-brand-section__content--bottom {
    min-height: min(calc(100svh - 64px), 920px);
}

.home-brand-section__content h2 {
    margin: 0 0 16px;
    font-size: clamp(20px, 2.8vw, 32px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-brand-section__content p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    max-width: 520px;
}

.home-brand-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.home-brand-lines {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-lines-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.home-line-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: min(32vh, 280px);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid var(--border);
    transition: background 0.25s ease;
}

.home-line-panel:last-child {
    border-right: 0;
}

.home-line-panel:hover {
    background: rgba(8, 34, 68, 0.04);
}

.home-line-index {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 12px;
}

.home-line-panel h3 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-line-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.home-journal-grid--flush {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
}

.home-journal-grid--flush .home-journal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    background: transparent;
}

.home-journal-card-media {
    aspect-ratio: 4 / 5;
    background: rgba(8, 34, 68, 0.05);
    overflow: hidden;
}

.home-journal-grid--flush .home-journal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-journal-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-journal-grid--flush .card-body {
    padding: 12px 10px 16px;
    flex: 1 1 auto;
    display: grid;
    gap: 6px;
}

.home-journal-grid--flush .card-body h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.home-freq-cta {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.home-editorial {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.home-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.home-editorial-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

.home-editorial-copy p {
    margin: 0 0 24px;
    color: var(--muted);
    max-width: 520px;
}

.home-text-link {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.home-editorial-visual {
    display: grid;
    gap: 16px;
}

.home-visual-block {
    padding: 28px 32px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.home-visual-block span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-visual-block p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.home-cta-band {
    padding: 72px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.home-cta-band-inner h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

.product-summary h1 {
    margin: 0 0 24px;
    font-size: clamp(2.4rem, 3vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-summary p {
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 520px;
}

.product-summary .price {
    margin: 0 0 28px;
    font-size: 2rem;
    font-weight: 700;
}

.product-summary .detail-grid {
    display: grid;
    gap: 20px;
}

.detail-card {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.detail-card h3 {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.detail-card p,
.detail-card li {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-list li {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
}

.info-card {
    padding: 36px;
}

.info-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.info-card p {
    color: var(--muted);
    margin: 0 0 18px;
}

.form-stack {
    display: grid;
    gap: 18px;
}

.form-stack label {
    display: grid;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-stack input,
.form-stack textarea,
.form-stack select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px;
    background: transparent;
    color: var(--text);
}

.form-stack textarea {
    min-height: 150px;
    resize: vertical;
}

.admin-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
}

.admin-sidebar {
    padding: 28px;
}

.admin-sidebar span,
.admin-sidebar a {
    display: block;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-card {
    padding: 32px;
}

.admin-card h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.admin-color-groups {
    display: grid;
    gap: 24px;
}

.admin-color-group {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.admin-color-group__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-color-group__head h5 {
    margin: 0;
    font-size: 18px;
}

.admin-size-variations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.admin-size-variation {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.admin-add-size {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.admin-add-size summary {
    cursor: pointer;
    font-weight: 600;
}

.admin-add-size[open] summary {
    margin-bottom: 16px;
}

.admin-note {
    color: var(--muted);
    margin-bottom: 28px;
}

.admin-sort-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
    margin: 0 0 16px;
}

.admin-sort-bar label {
    display: grid;
    gap: 6px;
    font-size: 13px;
}

.admin-sort-bar select {
    min-width: 180px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
}

.admin-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.admin-compact-card {
    padding: 14px 16px;
}

.admin-compact-card p {
    margin: 0 0 6px;
}

.admin-compact-meta {
    font-size: 13px;
    color: var(--muted);
}

.admin-compact-form {
    gap: 10px;
    margin-bottom: 10px;
}

.admin-compact-form label {
    gap: 6px;
    font-size: 13px;
}

.admin-compact-form input,
.admin-compact-form select {
    padding: 10px 12px;
    border-radius: 12px;
}

.admin-compact-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.admin-journal-list {
    display: grid;
    gap: 16px;
}

.admin-journal-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.admin-journal-thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.admin-journal-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    color: var(--muted);
    font-size: 12px;
}

.admin-journal-item-body {
    flex: 1;
    min-width: 0;
}

.admin-journal-item-body h4 {
    margin: 6px 0 12px;
}

.admin-journal-edit-cover {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.admin-collection-list {
    display: grid;
    gap: 18px;
}

.admin-collection-card {
    display: grid;
    gap: 12px;
}

.admin-collection-articles {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.product-cart-actions {
    margin: 16px 0;
}

.product-cart-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.product-cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    min-height: 48px;
    padding: 0;
    overflow: hidden;
}

.product-cart-qty-arrow {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.product-cart-qty-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
}

.product-cart-qty-value {
    flex: 1 1 auto;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    user-select: none;
}

.product-cart-qty-btn--sticky {
    flex: 1 1 auto;
    min-width: 0;
}

.product-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-qty-controls input {
    width: 60px;
    text-align: center;
}

.product-cart-note {
    font-size: 14px;
    color: var(--muted);
}

.cart-item-image img {
    width: auto;
    height: 100%;
    min-height: 72px;
    max-width: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.cart-item {
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.cart-item-image {
    display: flex;
    align-self: stretch;
    flex-shrink: 0;
}

.cart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cart-select-all {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cart-item-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    align-self: center;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-line-total {
    margin-top: 8px;
}

.cart-summary {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-summary-total {
    font-size: 18px;
    font-weight: bold;
}

.cart-item-body {
    flex: 1;
    min-width: 200px;
}

.auth-page {
    padding: 80px 0;
}

.auth-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    max-width: 520px;
    margin: 0 auto;
}

.auth-box h1 {
    margin-top: 0;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
}

.form-error {
    color: var(--accent);
    margin-bottom: 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.site-footer {
    margin-top: auto;
    padding: 32px 0 calc(20px + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.22);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    gap: 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--text);
    text-align: center;
}

.footer-tagline {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.footer-form-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-bottom-copy {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.footer-brand-block {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-col-subscribe {
    grid-column: span 1;
}

.footer-title {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-copy {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.footer-form {
    display: grid;
    gap: 16px;
}

.footer-form input {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    background: transparent;
    color: var(--text);
}

@media (max-width: 960px) {
    .auth-page .container {
        justify-content: center;
    }

    .auth-split {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: min(100%, 400px);
        margin: 0 auto;
    }

    .auth-panel-divider {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 32px;
    }
}

@media (max-width: 1080px) {
    .grid-4,
    .product-grid,
    .grid-3,
    .home-freq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-freq-panel:nth-child(2n) {
        border-right: none;
    }

    .home-freq-panel:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .home-journal-grid--flush {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-editorial-grid {
        grid-template-columns: 1fr;
    }

    .product-page {
        grid-template-columns: 1fr;
    }
}

/* Homepage layout */
.home-hero-banner {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #ebe7f8 0%, #f7f6fb 100%);
}

.home-hero-banner:not(:has(.hero-banner-slides)) {
    height: auto;
    min-height: min(70vh, 640px);
}

.home-hero-banner:not(:has(.hero-banner-slides)) .hero-banner-content {
    position: relative;
    min-height: min(70vh, 640px);
}

.hero-banner-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.hero-banner-slide {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.9s ease;
    position: absolute;
    inset: 0;
}

.hero-banner-slide.is-active {
    opacity: 1;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(232, 228, 243, 0.9) 0%, rgba(232, 228, 243, 0.35) 38%, rgba(232, 228, 243, 0) 68%);
    z-index: 1;
    pointer-events: none;
}

.home-hero-banner .hero-banner-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: min(640px, calc(100% - 48px));
    margin: 0;
    padding: 56px 32px 48px;
    box-sizing: border-box;
}

.home-hero-banner .hero-brand {
    margin-bottom: 16px;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    letter-spacing: 0.18em;
}

.home-hero-banner h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 16px;
    line-height: 1.1;
}

.home-hero-banner .hero-subtitle {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 18px;
    max-width: 520px;
}

.home-center {
    text-align: center;
}

.home-product-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(8, 34, 68, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.card-meta {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted);
}

.card-price {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.line-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.line-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.line-core { color: #8B7355; }
.line-move { color: #2E8B57; }
.line-shift { color: #4169E1; }
.line-aura { color: #5B4FCF; }

.admin-banner-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.admin-banner-item {
    display: grid;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    background: var(--surface);
}

.admin-banner-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-banner-actions {
    display: grid;
    gap: 8px;
}

.admin-frequency-item {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.admin-frequency-item h5 {
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-field-label {
    display: block;
    font-weight: 600;
    margin: 18px 0 8px;
}

.admin-subheading {
    margin: 24px 0 8px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-field-hint {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.admin-size-chart-block {
    margin: 20px 0;
}

.admin-size-chart-scroll {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.admin-size-chart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.admin-size-chart-table th,
.admin-size-chart-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-size-chart-table th {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    white-space: nowrap;
}

.admin-size-chart-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-size-chart-table input[type="text"] {
    width: 100%;
    min-width: 72px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}

.admin-size-chart-table thead input[type="text"] {
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text);
}

.admin-size-chart-actions-col {
    width: 44px;
    text-align: center;
}

.admin-row-remove {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.admin-row-remove:hover {
    background: rgba(8, 34, 68, 0.06);
    color: var(--text);
}

.admin-size-chart-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.admin-size-chart-add,
.admin-size-chart-add-col {
    margin-top: 12px;
}

.admin-picker-list {
    display: grid;
    gap: 8px;
    max-height: 320px;
    overflow: auto;
    padding: 12px;
}

.admin-check-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.admin-check-row input {
    margin-top: 3px;
    flex-shrink: 0;
}

.admin-check-row-compact {
    padding: 8px 10px;
}

.admin-check-content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.admin-check-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.admin-check-meta,
.admin-check-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
}

.media-preview-actions {
    display: grid;
    gap: 8px;
    width: 100%;
}

.home-hero .hero-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.home-hero .hero-content {
    text-align: left;
}

.home-hero .hero-brand {
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: -2px;
}

.home-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.home-hero .hero-subtitle {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 18px;
}

.home-hero .hero-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.home-hero .hero-gallery img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.home-section {
    padding: 60px 0;
}

.home-section.is-muted {
    background: rgba(255, 255, 255, 0.28);
}

.home-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.home-section .section-lead {
    text-align: center;
    margin-bottom: 40px;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.line-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.line-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.line-card:active {
    transform: scale(0.98);
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.home-product-card {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    text-decoration: none;
    color: inherit;
}

.home-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home-product-card .card-body {
    padding: 16px;
}

.home-product-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    min-height: 40px;
}

.home-fit-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.home-journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.home-journal-card {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    text-decoration: none;
    color: inherit;
}

.home-journal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.home-journal-card--editorial img,
.home-journal-card--editorial .home-journal-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.home-subscribe-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto 24px;
}

.home-subscribe-form input {
    flex: 1 1 200px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    min-width: 0;
}

.catalog-page .section-heading {
    justify-content: flex-start;
}

.catalog-page .section-heading h2 {
    text-align: left;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(8, 34, 68, 0.15);
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--favorite);
}

.catalog-filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: flex-start;
}

.catalog-filter-panel {
    display: none;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.catalog-filter-panel.is-open {
    display: block;
}

.catalog-filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    align-items: start;
}

.catalog-filter-form input,
.catalog-filter-form select {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 120px;
}

.journal-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    margin-bottom: 32px;
    padding-bottom: 4px;
}

.journal-tabs .btn-aura {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.journal-tabs .btn-aura.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.journal-section-block {
    margin-bottom: 48px;
}

.journal-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.journal-section-head h3 {
    margin: 0;
}

.journal-section-all {
    font-size: 14px;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.journal-carousel-mobile {
    display: none;
}

.journal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.journal-article-wrap {
    max-width: 860px;
}

.journal-article-content {
    line-height: 1.7;
    white-space: pre-wrap;
}

.home-journal-card .card-body {
    padding: 16px;
}

.journal-search {
    margin-bottom: 32px;
}

.journal-search-result {
    margin-bottom: 24px;
    color: var(--muted);
}

.journal-page {
    padding-bottom: 72px;
}

.journal-hero {
    position: relative;
    padding: clamp(132px, 14vw, 176px) 0 clamp(108px, 10vw, 144px);
    min-height: clamp(320px, 36vh, 480px);
    background: linear-gradient(180deg, rgba(8, 34, 68, 0.04) 0%, rgba(8, 34, 68, 0) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.journal-hero--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--journal-hero-cover);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(0.2);
}

.journal-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: center;
}

.journal-hero-title {
    margin: 0 0 28px;
    font-size: clamp(3.6rem, 8vw, 5.5rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.journal-hero-lead {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.7;
}

.journal-body {
    padding-top: 40px;
}

.journal-tabs--editorial {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 56px;
    padding-bottom: 0;
    overflow: visible;
}

.journal-tab-link {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.journal-tab-link:hover,
.journal-tab-link.active {
    color: var(--text);
    border-bottom-color: var(--text);
}

.journal-latest {
    margin-bottom: 72px;
}

.journal-latest-head {
    text-align: center;
    margin-bottom: 32px;
}

.journal-latest-head h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.journal-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.journal-editorial-card {
    min-height: 100%;
}

.journal-latest-grid .home-journal-card-title,
.journal-latest-grid .home-journal-card-title--md,
.journal-latest-grid .home-journal-card-title--lg {
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    -webkit-line-clamp: 3;
}

.journal-sections {
    display: grid;
    gap: 56px;
}

.journal-section-block--editorial .journal-section-head {
    margin-bottom: 28px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
}

.journal-section-title {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.journal-section-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 36px;
}

.journal-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.journal-section-header h2 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.journal-section-header p {
    margin: 0;
    color: var(--muted);
}

.journal-section-list {
    display: grid;
    gap: 40px;
}

.journal-section-article {
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.journal-section-article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.journal-section-article-media {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.journal-section-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.journal-section-article-media:hover img {
    transform: scale(1.03);
}

.journal-section-article-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.journal-section-article-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.journal-section-article-title {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.25;
    font-weight: 500;
}

.journal-section-article-title a {
    color: inherit;
    text-decoration: none;
}

.journal-section-article-title a:hover {
    color: var(--accent);
}

.journal-section-article-excerpt {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 56ch;
}

.journal-read-more {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.journal-read-more:hover {
    color: var(--accent);
}

.journal-empty {
    text-align: center;
    color: var(--muted);
    padding: 48px 0;
}

.product-cart-sticky {
    display: none;
}

/* Tablet/mobile header: hamburger menu, keep icons until 480px */
@media (max-width: 1024px) {
    .home-hero-banner {
        height: 100svh;
        min-height: 100svh;
    }

    .desktop-nav {
        display: none;
    }

    .header-inner {
        padding: 12px 0;
        gap: 10px;
        justify-content: flex-start;
    }

    .header-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 0.18em;
        margin: 0;
        margin-left: 10px;
        max-width: none;
        overflow: visible;
        text-overflow: unset;
        white-space: nowrap;
        flex-shrink: 1;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--surface);
        color: var(--text);
        padding: 0;
        flex-shrink: 0;
    }

    .mobile-menu-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        height: 100dvh;
        width: min(86vw, 320px);
        background: var(--surface);
        border-right: 1px solid var(--border);
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        z-index: 100;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px 12px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-title {
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: transparent;
        color: var(--text);
        font-size: 24px;
        line-height: 1;
        padding: 0;
    }

    .mobile-nav {
        display: grid;
        gap: 4px;
        padding: 12px 14px 20px;
    }

    .mobile-nav a,
    .mobile-nav-search {
        display: block;
        width: 100%;
        padding: 14px 12px;
        border-radius: 12px;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        min-height: 44px;
        border: 0;
        background: transparent;
        color: var(--text);
        text-align: left;
        cursor: pointer;
        font-family: inherit;
    }

    .mobile-nav a:active,
    .mobile-nav a:hover,
    .mobile-nav a[aria-current="page"],
    .mobile-nav-search:active,
    .mobile-nav-search:hover {
        background: rgba(8, 34, 68, 0.08);
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        border: 0;
        z-index: 90;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .mobile-menu-drawer {
        transform: translateX(0);
    }

    body.menu-open .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .header-actions {
        display: none;
    }

    .header-inner {
        justify-content: center;
        position: relative;
    }

    .logo {
        margin: 0 auto;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 0;
    }

    .mobile-nav-search {
        display: block;
    }
}

@media (min-width: 481px) {
    .mobile-nav-search {
        display: none;
    }
}

@media (max-width: 720px) {
    .admin-grid,
    .footer-inner {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .footer-top,
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }

    .footer-brand-block .footer-social {
        justify-content: center;
    }

    .home-brand-section {
        min-height: min(52vh, 480px);
    }

    .home-brand-section--about {
        min-height: min(72vh, 640px);
    }

    .home-brand-section__content {
        min-height: min(52vh, 480px);
        padding: 40px 16px;
        max-width: calc(100% - 32px);
    }

    .home-brand-section__content--bottom {
        padding: 32px 16px 40px;
    }

    .home-brand-section--about .home-brand-section__content--bottom {
        min-height: min(72vh, 640px);
    }

    .home-section-head--left,
    .home-section-note {
        padding: 0 16px;
    }

    .home-brand-section__content h2 {
        font-size: 22px;
    }

    .home-journal-carousel,
    .home-product-carousel {
        padding: 0 12px;
    }

    .home-journal-carousel .home-carousel-btn.prev,
    .home-product-carousel .home-carousel-btn.prev {
        left: 0;
    }

    .home-journal-carousel .home-carousel-btn.next,
    .home-product-carousel .home-carousel-btn.next {
        right: 0;
    }

    .home-journal-carousel .home-carousel-card {
        flex: 0 0 min(300px, 88vw);
    }

    .home-product-carousel .home-carousel-card {
        flex: 0 0 min(260px, 78vw);
    }

    .home-lines-grid {
        grid-template-columns: 1fr;
    }

    .home-line-panel {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        min-height: 180px;
    }

    .home-line-panel:last-child {
        border-bottom: 0;
    }

    .home-journal-grid--flush {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-col-subscribe {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding: 40px 0 calc(24px + env(safe-area-inset-bottom, 0));
    }

    .journal-grid-desktop {
        display: none;
    }

    .journal-carousel-mobile {
        display: block;
    }

    .journal-carousel-mobile .home-carousel-card {
        flex: 0 0 min(280px, 84vw);
    }

    .journal-hero {
        padding: clamp(96px, 18vw, 128px) 0 clamp(72px, 14vw, 96px);
        min-height: clamp(260px, 42vh, 360px);
    }

    .journal-tabs--editorial {
        gap: 16px 20px;
        margin-bottom: 40px;
    }

    .journal-latest-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journal-section-article {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-section,
    .section-block,
    .admin-page,
    .auth-page {
        padding: 48px 0;
    }

    .container {
        width: min(100%, calc(100% - 32px));
    }

    .page-main {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .product-grid,
    .home-product-grid,
    .home-journal-grid,
    .home-journal-grid--flush,
    .line-grid,
    .journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .home-hero-banner:not(:has(.hero-banner-slides)) {
        min-height: min(62vh, 520px);
    }

    .hero-banner-slides {
        width: 100%;
    }

    .hero-banner-slide {
        object-fit: fill;
        object-position: center center;
    }

    .hero-banner-overlay {
        background: linear-gradient(90deg, rgba(232, 228, 243, 0.88) 0%, rgba(232, 228, 243, 0.45) 45%, rgba(232, 228, 243, 0.15) 100%);
    }

    .home-hero-banner .hero-banner-content {
        padding: 48px 16px 36px;
        max-width: calc(100% - 32px);
    }

    .home-hero-banner h1 {
        font-size: 26px;
    }

    .header-cart-link {
        width: 40px;
        height: 40px;
    }

    .hero-split {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 32px 0 !important;
    }

    .home-hero .hero-brand {
        font-size: 32px;
    }

    .home-hero h1 {
        font-size: 26px;
    }

    .home-hero .hero-subtitle {
        font-size: 16px;
    }

    .home-hero .hero-gallery {
        min-height: 240px;
    }

    .home-hero .hero-gallery img {
        max-height: 320px;
    }

    .home-section {
        padding: 40px 0;
    }

    .home-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .home-fit-stats {
        gap: 20px;
    }

    .home-subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }

    .home-subscribe-form input,
    .home-subscribe-form .btn-aura {
        width: 100%;
    }

    .btn-aura {
        min-height: 44px;
        padding: 12px 20px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .admin-card,
    .info-card,
    .auth-box {
        padding: 20px;
    }

    .admin-sort-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-sort-bar label {
        width: 100%;
    }

    .admin-sort-bar select,
    .admin-sort-bar input {
        width: 100%;
        min-width: 0;
    }

    .catalog-filter-form {
        grid-template-columns: 1fr;
    }

    .catalog-filter-form input,
    .catalog-filter-form select,
    .catalog-filter-form .btn-aura {
        width: 100%;
        min-width: 0;
    }

    .catalog-filter-toolbar .filter-button,
    .catalog-filter-toolbar .btn-aura {
        flex: 0 0 auto;
        width: auto;
        min-height: 44px;
        padding: 10px 18px;
    }

    .home-freq-grid {
        grid-template-columns: 1fr;
    }

    .home-freq-panel {
        border-right: none;
        min-height: min(36vh, 360px);
    }

    .home-cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-page .gallery-main {
        display: block;
        position: relative;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .product-page .gallery-viewport,
    .product-page .gallery-empty {
        min-height: 0;
        width: 100%;
    }

    .product-page .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(243, 240, 250, 0.92);
    }

    .product-page .gallery-prev {
        left: 8px;
    }

    .product-page .gallery-next {
        right: 8px;
    }

    .product-page h1 {
        font-size: 24px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .product-cart-sticky {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        gap: 10px;
        align-items: center;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
        background: var(--surface);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    }

    .product-cart-sticky.is-hidden {
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .product-cart-sticky-price {
        font-weight: 600;
        font-size: 15px;
        flex-shrink: 0;
    }

    .product-cart-sticky .btn-aura {
        flex: 1;
        text-align: center;
    }

    .product-page.has-mobile-bar.has-sticky-cart {
        padding-bottom: 88px;
    }

    .footer-form {
        flex-direction: column;
    }

    .footer-form input,
    .footer-form .btn-aura {
        width: 100%;
    }

    .admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .admin-sidebar {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        border-bottom: 1px solid var(--border);
        flex-wrap: nowrap;
    }

    .admin-sidebar span {
        display: none;
    }

    .admin-sidebar a {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 14px;
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 11px;
    }

    .admin-journal-item {
        flex-direction: column;
    }

    .admin-journal-thumb {
        width: 100%;
        height: 160px;
    }

    .admin-collection-card .admin-compact-actions,
    .admin-compact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-compact-actions .btn-aura,
    .admin-compact-actions form,
    .admin-compact-actions a.btn-aura {
        width: 100%;
        text-align: center;
    }

    .cart-item {
        flex-direction: column;
        align-items: stretch !important;
    }

    .cart-page .cart-item {
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 10px;
        padding: 10px 12px;
    }

    .cart-page .cart-item-image img {
        width: auto;
        min-height: 64px;
        max-width: 64px;
        height: 100%;
    }

    .cart-page .cart-item-body {
        min-width: 0;
        font-size: 13px;
    }

    .cart-page .cart-item-body p {
        margin: 0 0 6px;
    }

    .cart-page .qty-input {
        width: 48px !important;
    }

    .cart-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-summary .btn-aura {
        width: 100%;
    }

    .cart-toolbar {
        flex-direction: column;
        align-items: stretch !important;
    }

    .journal-article-content {
        font-size: 16px;
        line-height: 1.7;
    }

    .cart-table,
    .orders-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .home-freq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-freq-panel:nth-child(2n) {
        border-right: none;
    }

    .home-freq-panel:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .catalog-page .product-grid,
    .bookmark-grid,
    .search-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .bookmarks-page .bookmark-card {
        padding: 0;
        border-radius: 0;
        border: 0;
    }

    .bookmarks-page .bookmark-card .catalog-product-media {
        aspect-ratio: 3 / 4;
        min-height: 0;
        border-radius: 0;
    }

    .bookmarks-page .bookmark-card .catalog-product-media a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .bookmarks-page .bookmark-card .catalog-product-media img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        object-fit: cover;
    }

    .bookmarks-page .bookmark-card .catalog-product-info {
        padding: 12px 10px 16px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .bookmarks-page .bookmark-card .catalog-product-info h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .bookmarks-page .bookmark-card .catalog-product-meta,
    .bookmarks-page .bookmark-card .catalog-product-price {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .bookmarks-page .bookmark-remove-form .btn-link {
        font-size: 11px;
    }

    .catalog-page .catalog-product-grid {
        grid-auto-rows: auto;
    }

    .catalog-page .catalog-product-card {
        height: auto;
    }

    .catalog-page .catalog-product-media {
        aspect-ratio: 3 / 4;
        min-height: 0;
        flex: 0 0 auto;
    }

    .catalog-page .catalog-product-media > a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .catalog-page .catalog-product-images {
        width: 100%;
        height: 100%;
    }

    .catalog-page .catalog-product-media img,
    .catalog-page .catalog-product-img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        object-fit: cover;
    }

    .catalog-page .catalog-product-info {
        flex: 0 0 auto;
        padding: 12px 10px 14px;
    }

    .auth-split {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
        max-width: min(100%, 400px);
        margin: 0 auto;
    }

    .auth-page .container {
        justify-content: center;
    }

    .auth-panel {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .auth-panel h2 {
        text-align: center;
    }

    .auth-panel .form-stack label {
        text-align: center;
    }

    .auth-panel-divider {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 32px;
        margin: 0;
    }

    .home-carousel-btn {
        display: none;
    }

    .home-carousel-track {
        padding-bottom: 8px;
    }
}

/* Catalog product cards */
.catalog-product-card {
    background: #fff;
    border: 1px solid var(--bg);
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-product-media {
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    min-height: 0;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.catalog-product-media a {
    display: block;
    width: 100%;
}

.catalog-product-images {
    position: relative;
    width: 100%;
}

.catalog-product-media img,
.catalog-product-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    display: block;
}

.catalog-product-img.primary {
    transition: opacity 0.22s ease;
}

.catalog-product-img.hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.catalog-product-media:hover .catalog-product-images:has(.catalog-product-img.hover) .catalog-product-img.primary {
    opacity: 0;
}

.catalog-product-media:hover .catalog-product-img.hover {
    opacity: 1;
}

.catalog-color-swatches {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 34, 68, 0.08);
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(8, 34, 68, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3;
    pointer-events: none;
}

.catalog-product-card.has-color-swatches:hover .catalog-color-swatches,
.catalog-product-card.has-color-swatches:focus-within .catalog-color-swatches {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.catalog-color-swatch {
    width: 15px;
    height: 15px;
    padding: 0;
    border: 1px solid rgba(8, 34, 68, 0.18);
    border-radius: 50%;
    background-color: var(--swatch-color, #ccc);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.catalog-color-swatch:hover {
    transform: scale(1.08);
}

.catalog-color-swatch.is-active {
    border-color: var(--text);
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--text);
    transform: scale(1.1);
}

.catalog-color-swatch[data-swatch-light="1"] {
    border-color: rgba(8, 34, 68, 0.24);
}

.catalog-color-swatch.is-active[data-swatch-light="1"] {
    border-color: var(--text);
}

@media (max-width: 720px) {
    .catalog-product-card.has-color-swatches .catalog-color-swatches {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.catalog-product-media:hover .catalog-product-img.hover + .catalog-product-placeholder {
    opacity: 0;
}

.catalog-product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
}

.catalog-product-info {
    background: transparent;
    padding: 14px 16px 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog-product-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.catalog-product-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.catalog-product-freq,
.catalog-product-line {
    font-size: 11px;
    color: var(--muted);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.catalog-product-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.catalog-product-name a {
    color: inherit;
    text-decoration: none;
}

.catalog-product-price {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: var(--text);
}

.catalog-color-swatches--info {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 4px;
}

.catalog-product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.catalog-product-tag--new {
    background: #fff;
    color: var(--favorite);
    border-radius: 4px;
}

.catalog-product-tag--bestseller {
    background: var(--favorite);
    color: #fff;
    border-radius: 20px;
}

.home-product-grid .catalog-product-card,
.home-product-carousel .catalog-product-card {
    height: 100%;
}

.home-product-grid .catalog-product-media,
.home-product-carousel .catalog-product-media {
    width: 100%;
}

.home-product-grid .catalog-product-media > a,
.home-product-carousel .catalog-product-media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.home-product-grid .catalog-product-images,
.home-product-carousel .catalog-product-images {
    width: 100%;
    height: 100%;
}

.home-product-grid .catalog-product-media img,
.home-product-grid .catalog-product-img,
.home-product-carousel .catalog-product-media img,
.home-product-carousel .catalog-product-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
}

.home-product-grid .catalog-product-info,
.home-product-carousel .catalog-product-info {
    /* removed absolute positioning to match catalog */
}

.home-product-grid .catalog-product-card:hover .catalog-product-info,
.home-product-grid .catalog-product-card:focus-within .catalog-product-info,
.home-product-carousel .catalog-product-card:hover .catalog-product-info,
.home-product-carousel .catalog-product-card:focus-within .catalog-product-info {
    /* removed hover effects */
}

.home-product-grid .catalog-product-info a,
.home-product-carousel .catalog-product-info a {
    pointer-events: auto;
}

@media (hover: none) {
    .home-product-grid .catalog-product-info,
    .home-product-carousel .catalog-product-info {
    }
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--favorite);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 2;
}

.favorite-btn.is-active {
    color: var(--favorite);
}

.favorite-btn svg {
    display: block;
}

.favorite-btn svg path {
    fill: none;
    stroke: var(--favorite);
    stroke-width: 1.5;
}

.favorite-btn.is-active svg path {
    fill: var(--favorite);
    stroke: var(--favorite);
}

.product-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.product-title-row h1 {
    margin-bottom: 0;
}

.product-bookmark-form {
    flex: 0 0 auto;
    margin-top: 4px;
}

.product-favorite-btn {
    position: static;
}

.home-section h2 {
    color: var(--text);
}

.home-section .section-lead {
    color: var(--muted);
}

/* Home carousel */
.home-product-carousel,
.home-journal-carousel {
    position: relative;
    padding: 0 48px;
}

.home-product-carousel .home-carousel-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    scroll-snap-align: none;
}

@media (max-width: 720px) {
    .home-product-carousel .home-carousel-card {
        flex: 0 0 min(260px, 78vw);
    }
}

.home-product-carousel-card {
    height: 100%;
}

.home-journal-carousel .home-carousel-card {
    flex: 0 0 min(420px, 82vw);
    scroll-snap-align: none;
}

.home-journal-card--editorial {
    display: block;
    height: 100%;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    background: transparent;
}

.home-journal-card-visual {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111;
}

.home-journal-card-blur-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0);
}

.home-journal-card-blur-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

[data-carousel-clone="true"] .home-journal-card-blur-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.home-journal-card-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-items: center;
    gap: 8px;
    padding: 18px 24px 22px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

@media (max-width: 720px) {
    .home-journal-card-overlay {
        padding: 12px 12px 16px;
        gap: 4px;
    }
}

.home-journal-card-kicker {
    grid-row: 1;
    align-self: start;
    flex-shrink: 0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
}

.home-journal-card-title {
    grid-row: 2;
    align-self: center;
    margin: 0;
    width: 100%;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.home-journal-card-title--lg {
    font-size: clamp(1.1rem, 2.8vw, 2.6rem);
    -webkit-line-clamp: 3;
}

.home-journal-card-title--md {
    font-size: clamp(0.9rem, 2vw, 1.85rem);
    -webkit-line-clamp: 4;
}

.home-journal-card-brand {
    grid-row: 3;
    align-self: end;
    flex-shrink: 0;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.9;
}

.home-journal-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 14px;
}

.product-variant-picker {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}

.product-price-variant-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 0 28px;
}

.product-price-variant-row .product-variant-picker {
    flex: 1 1 220px;
    min-width: 0;
}

.product-price-variant-row .price {
    flex: 0 0 auto;
    margin: 0;
}

.product-variant-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-color-swatches .catalog-color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.product-size-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.product-size-option {
    position: relative;
    z-index: 0;
    min-width: 0;
    padding: 6px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.product-size-option.is-active {
    color: var(--text);
}

.product-size-option.is-active::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.6em;
    height: 2.2em;
    transform: translate(-50%, -50%) rotate(-8deg);
    background: rgba(180, 168, 254, 0.72);
    border-radius: 58% 42% 64% 36% / 48% 56% 44% 52%;
    z-index: -1;
}

.product-size-option.is-unavailable {
    opacity: 0.35;
    cursor: not-allowed;
}

.admin-checkbox-group {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: grid;
    gap: 10px;
    margin: 0;
}

.admin-checkbox-group legend {
    padding: 0 6px;
    font-weight: 600;
}

.admin-checkbox-item {
    margin: 0;
}

.home-carousel {
    position: relative;
}

.home-carousel-track {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 4px 8px;
}

.home-carousel-track.is-scrolling {
    scroll-snap-type: none;
    pointer-events: none;
}

.home-carousel-track::-webkit-scrollbar {
    display: none;
}

.home-carousel-card {
    flex: 0 0 min(320px, 78vw);
    scroll-snap-align: none;
}

.home-carousel-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    z-index: 2;
}

.home-carousel-btn.prev {
    left: 4px;
}

.home-carousel-btn.next {
    right: 4px;
}

.home-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

/* Color filter */
.color-filter-block {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.color-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 160px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.color-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}

.color-filter-item span {
    white-space: nowrap;
}

.color-filter-item.is-hidden {
    display: none;
}

.bookmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
}

.bookmarks-page .bookmark-card .catalog-product-info {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "title title"
        "meta price"
        "actions actions";
    gap: 4px 12px;
    align-items: baseline;
}

.bookmarks-page .bookmark-card .catalog-product-info h3 {
    grid-area: title;
}

.bookmarks-page .bookmark-card .catalog-product-meta {
    grid-area: meta;
    margin: 0;
}

.bookmarks-page .bookmark-card .catalog-product-price {
    grid-area: price;
    margin: 0;
    text-align: right;
}

.bookmarks-page .bookmark-card .bookmark-remove-form {
    grid-area: actions;
    margin-top: 6px;
}

.bookmark-remove-form {
    margin-top: 10px;
}

.btn-link {
    border: 0;
    background: transparent;
    color: var(--muted);
    text-decoration: underline;
    padding: 0;
    font-size: 13px;
}

/* Auth page */
.auth-page .container {
    display: flex;
    justify-content: center;
}

.auth-split {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: stretch;
    width: min(100%, 920px);
}

.auth-panel {
    flex: 1 1 320px;
    min-width: 0;
}

.auth-panel-divider {
    border-left: 1px solid var(--border);
    padding-left: 48px;
}

.auth-panel h2 {
    margin: 0 0 24px;
    text-align: left;
}

.auth-panel .form-stack {
    width: 100%;
}

.auth-panel .form-stack label {
    display: block;
    margin-bottom: 16px;
    text-align: left;
}

.auth-panel .form-stack input {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.auth-panel .btn-aura {
    width: 100%;
}

/* Footer social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
    width: 100%;
}

.footer-social-link {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.footer-social-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.home-hero-banner h1,
.home-hero-banner .hero-brand {
    color: var(--text);
}

.home-hero-banner .hero-subtitle {
    color: var(--muted);
}

/* Mobile overrides — must stay after base auth/bookmark rules above */
@media (max-width: 960px) {
    .auth-page .container {
        justify-content: center;
    }

    .auth-split {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 32px;
        width: 100%;
        max-width: min(100%, 400px);
        margin: 0 auto;
    }

    .auth-panel {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .auth-panel h2 {
        text-align: center;
    }

    .auth-panel .form-stack label {
        text-align: center;
    }

    .auth-panel-divider {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 32px;
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .bookmarks-page .bookmark-grid,
    .bookmark-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }
}

@media (max-width: 1080px) {
    .product-page {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-page .product-summary {
        display: contents;
    }

    .product-page .product-gallery {
        order: 1;
    }

    .product-page .product-name {
        order: 2;
        margin-top: 16px;
    }

    .product-page .product-article-code {
        order: 2;
    }

    .product-page .product-price-block {
        order: 3;
    }

    .product-page .product-variant-picker {
        order: 4;
        margin: 12px 0 0;
        padding: 0 2px;
    }

    .product-page .product-actions-row {
        order: 5;
    }

    .product-page .product-meta-chips {
        order: 6;
    }

    .product-page .product-accordions {
        order: 7;
    }

    .product-page .product-back-link {
        order: 8;
    }
}

.product-name {
    margin: 0 0 16px;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-article-code {
    margin: -8px 0 16px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-price-block {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.product-summary .product-price-block .price {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.product-installments {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    cursor: pointer;
}

.product-installments-amount {
    font-weight: 500;
    color: var(--text);
}

.product-installments-label {
    text-decoration: underline;
    color: var(--muted);
    font-size: 13px;
}

.product-variant-picker {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.product-actions-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
}

.product-actions-row .product-cart-actions {
    flex: 1 1 auto;
    margin: 0;
}

.product-actions-row .product-cart-row {
    width: 100%;
}

.product-actions-row .product-cart-row .btn-aura--dark,
.product-actions-row .product-cart-qty-btn {
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
}

.product-favorite-slot {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.product-favorite-slot .product-favorite-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--surface);
}

.product-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface);
}

.product-accordions {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.product-oval-accordion {
    border: 0;
}

.product-oval-trigger {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 22px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.product-oval-accordion summary::-webkit-details-marker {
    display: none;
}

.product-oval-trigger::after {
    content: '›';
    transform: rotate(90deg);
    color: var(--muted);
    transition: transform 0.2s ease;
}

.product-oval-accordion[open] .product-oval-trigger::after {
    transform: rotate(-90deg);
}

.product-oval-panel {
    padding: 16px 8px 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.product-oval-panel p {
    margin: 0;
}

.product-back-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--text);
    font-size: 13px;
    text-decoration: underline;
}

.size-chart-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.size-chart-tab {
    padding: 0 0 10px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}

.size-chart-tab.is-active {
    color: var(--text);
    border-bottom-color: var(--text);
    font-weight: 600;
}

.size-chart-hint,
.size-chart-note {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--muted);
}

.size-chart-table-wrap {
    overflow-x: auto;
    margin-bottom: 8px;
}

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.size-chart-table th,
.size-chart-table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.size-chart-table th {
    font-weight: 600;
    color: var(--text);
}

.product-related-section {
    padding-top: 0;
}

.product-related-title {
    margin: 0 0 24px;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.installments-modal[hidden] {
    display: none;
}

.installments-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.installments-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.installments-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px 24px;
    border-radius: 16px;
    background: #fff;
    text-align: center;
}

.installments-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
}

.installments-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dolyame-logo {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

.dolyame-logo__bar {
    display: block;
    width: 5px;
    border-radius: 2px;
    background: #1b1f3b;
}

.dolyame-logo__bar--1 {
    height: 14px;
}

.dolyame-logo__bar--2 {
    height: 20px;
}

.dolyame-logo__bar--3 {
    height: 28px;
}

.dolyame-logo__bar--4 {
    height: 18px;
}

.dolyame-logo__text {
    margin-left: 8px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #1b1f3b;
    text-transform: lowercase;
}

.installments-modal-title {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.installments-modal-subtitle {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.installments-schedule {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.installments-schedule-item {
    display: grid;
    gap: 4px;
}

.installments-schedule-percent {
    font-size: 12px;
    font-weight: 600;
}

.installments-schedule-amount {
    font-size: 13px;
    font-weight: 700;
}

.installments-schedule-label {
    font-size: 11px;
    color: var(--muted);
}

.installments-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 0 20px;
}

.installments-progress-dot {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    background: #fff;
}

.installments-progress-dot.is-done {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.installments-progress-line {
    width: 48px;
    height: 1px;
    background: var(--border);
}

.installments-notes {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    text-align: left;
}

.installments-link-note {
    margin: 0 0 20px;
    font-size: 12px;
    color: var(--muted);
}

.installments-modal-action {
    width: 100%;
}

.file-picker-remove {
    margin-top: 6px;
    border: 0;
    background: transparent;
    color: #b42318;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.file-picker-preview {
    display: block;
    margin-top: 8px;
    max-width: 120px;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.file-picker-preview-video {
    display: block;
    margin-top: 8px;
    max-width: 160px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

@media (max-width: 640px) {
    .installments-schedule {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .installments-progress {
        display: none;
    }
}

.admin-inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 8px;
}

@media (max-width: 720px) {
    .admin-inline-fields {
        grid-template-columns: 1fr;
    }
}

.about-page {
    background: var(--bg);
    color: var(--text);
}

.about-hero {
    position: relative;
    min-height: clamp(520px, 88svh, 920px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #111;
}

.about-hero__image,
.about-break__image,
.about-final__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__overlay,
.about-break__overlay,
.about-final__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 34, 68, 0.18) 0%, rgba(8, 34, 68, 0.42) 100%);
    pointer-events: none;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    width: min(900px, 86vw);
    text-align: center;
    color: #fff;
    padding: 120px 24px 80px;
    transform: translateY(6vh);
}

.about-hero__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;
}

.about-hero__subtitle {
    margin: 0;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-anchor-nav {
    position: sticky;
    top: 72px;
    z-index: 20;
    background: rgba(243, 240, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.about-anchor-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 48px);
    padding: 18px clamp(20px, 4vw, 48px);
    overflow-x: auto;
    scrollbar-width: none;
}

.about-anchor-nav__inner::-webkit-scrollbar {
    display: none;
}

.about-anchor-nav__link {
    flex: 0 0 auto;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.about-anchor-nav__link:hover,
.about-anchor-nav__link.is-active {
    color: var(--text);
}

.about-intro,
.about-narrow,
.about-capsules-caption {
    background: var(--bg);
}

.about-intro {
    padding: clamp(72px, 10vw, 120px) 24px;
}

.about-intro__inner {
    width: min(66.666%, 920px);
    margin: 0 auto;
    text-align: center;
}

.about-intro__title {
    margin: 0 0 24px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-intro__text {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.8;
    color: var(--muted);
}

.about-split {
    background: var(--surface);
    padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 64px);
    scroll-margin-top: 120px;
}

.about-split__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.about-split--text-right .about-split__inner {
    direction: rtl;
}

.about-split--text-right .about-split__text,
.about-split--text-right .about-split__media {
    direction: ltr;
}

.about-split__kicker {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-split__title {
    margin: 0 0 20px;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.2;
}

.about-split__body {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
}

.about-split__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #ddd;
}

.about-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-break,
.about-final {
    position: relative;
    min-height: clamp(360px, 55vh, 620px);
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    background: #111;
    scroll-margin-top: 120px;
}

.about-break__title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 24px;
    text-align: center;
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-narrow {
    padding: clamp(72px, 9vw, 110px) 24px;
}

.about-narrow__inner {
    width: min(48%, 680px);
    margin: 0 auto;
}

.about-narrow__text {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
}

.about-capsules {
    background: #fff;
    padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
    scroll-margin-top: 120px;
}

.about-capsules__inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}

.about-capsules__title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.15;
}

.about-capsules__subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

.about-capsules__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-capsule-card {
    display: grid;
    gap: 12px;
}

.about-capsule-card__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg);
}

.about-capsule-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-capsule-card__label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
}

.about-capsules-caption {
    padding: 28px 24px 72px;
    text-align: center;
    background: #fff;
}

.about-capsules-caption p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-final {
    min-height: clamp(420px, 70vh, 760px);
    justify-items: center;
}

.about-final__content {
    position: relative;
    z-index: 2;
    width: min(66.666%, 920px);
    padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 72px);
    color: #fff;
    text-align: center;
}

.about-final__text {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 960px) {
    .about-intro__inner,
    .about-narrow__inner {
        width: min(100%, 720px);
    }

    .about-split__inner,
    .about-capsules__inner {
        grid-template-columns: 1fr;
    }

    .about-split--text-right .about-split__inner {
        direction: ltr;
    }

    .about-capsules__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .about-anchor-nav__inner {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
    }
}

@media (max-width: 640px) {
    .about-hero__content {
        transform: none;
        padding-top: 96px;
    }

    .about-anchor-nav {
        top: 64px;
    }

    .about-capsules__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Journal article page --- */

.journal-article-page {
    background: var(--bg);
    color: var(--text);
}

.journal-article-back {
    margin: 0;
    padding: 20px clamp(20px, 4vw, 48px) 0;
}

.journal-article-back a {
    color: var(--muted);
    text-decoration: none;
}

.journal-article-back a:hover {
    color: var(--text);
}

.journal-article-hero {
    position: relative;
    min-height: clamp(420px, 72svh, 820px);
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background: #111;
}

.journal-article-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 34, 68, 0.72) 0%, rgba(8, 34, 68, 0.28) 42%, rgba(8, 34, 68, 0.08) 100%);
    pointer-events: none;
}

.journal-article-hero__content {
    position: relative;
    z-index: 2;
    align-self: end;
    justify-self: start;
    width: min(760px, calc(100% - 48px));
    margin: 0;
    padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
    color: #fff;
    text-align: left;
}

.journal-article-hero__kicker {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.journal-article-hero__title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.04em;
}

.journal-article-hero__lead {
    margin: 0;
    max-width: 620px;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.journal-article-block--paragraph {
    padding: clamp(72px, 10vw, 120px) 24px;
    background: var(--bg);
}

.journal-article-block__inner {
    width: min(66.666%, 920px);
    margin: 0 auto;
    text-align: center;
}

.journal-article-paragraph {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.8;
    color: var(--muted);
    white-space: pre-wrap;
}

.journal-article-split {
    background: var(--surface);
    padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 64px);
}

.journal-article-split__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.journal-article-split--text-left .journal-article-split__text,
.journal-article-split--text-right .journal-article-split__media {
    grid-column: 1;
}

.journal-article-split--text-left .journal-article-split__media,
.journal-article-split--text-right .journal-article-split__text {
    grid-column: 2;
}

.journal-article-split__body {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    white-space: pre-wrap;
}

.journal-article-split__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #ddd;
}

.journal-article-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journal-article-block--banner {
    width: 100%;
    line-height: 0;
    background: #111;
}

.journal-article-banner__image {
    display: block;
    width: 100%;
    height: auto;
    min-height: clamp(240px, 40vh, 520px);
    object-fit: cover;
}

.journal-blocks-admin {
    display: grid;
    gap: 16px;
    margin-top: 12px;
}

.journal-blocks-admin__head h4 {
    margin: 0 0 8px;
}

.journal-block-item {
    display: grid;
    gap: 14px;
    min-width: 0;
    overflow: visible;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.journal-block-text-wrap[hidden],
.journal-block-image-wrap[hidden],
.journal-block-existing[hidden] {
    display: none !important;
}

.journal-block-existing {
    display: grid;
    gap: 10px;
}

.journal-block-existing img,
[data-block-existing-preview] {
    display: block;
    width: min(100%, 320px);
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.journal-block-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.journal-block-item__controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .journal-article-split__inner {
        grid-template-columns: 1fr;
    }

    .journal-article-split--text-left .journal-article-split__text,
    .journal-article-split--text-left .journal-article-split__media,
    .journal-article-split--text-right .journal-article-split__text,
    .journal-article-split--text-right .journal-article-split__media {
        grid-column: 1;
    }

    .journal-article-block__inner {
        width: min(100%, 720px);
    }
}

@media (max-width: 720px) {
    .journal-article-hero__content {
        width: calc(100% - 32px);
        padding: 40px 16px 32px;
    }
}

/* --- Contacts page --- */

.info-page__inner {
    max-width: 720px;
    margin: 0 auto;
}

.info-page__title {
    margin: 0 0 28px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.info-page__content {
    white-space: pre-line;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.admin-info-page-block {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.admin-info-page-block:first-of-type {
    border-top: none;
    padding-top: 0;
}

.admin-info-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-info-page-head h4 {
    margin: 0;
}

.contacts-page {
    padding: 48px 0 96px;
    background: transparent;
}

.contacts-page__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.contacts-page__title {
    margin: 0 0 20px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

.contacts-page__subtitle {
    margin: 0 0 40px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted, #666);
}

.contacts-store {
    text-align: left;
    margin-bottom: 36px;
}

.contacts-store__city {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contacts-store__name {
    margin: 0 0 20px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
}

.contacts-store__line {
    margin: 0 0 14px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contacts-store__label {
    font-weight: 400;
}

.contacts-store__link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.contacts-store__link:hover {
    opacity: 0.65;
}

.contacts-store__link--wa {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.contacts-store__sep {
    margin: 0 6px;
    opacity: 0.5;
}

.contacts-store__block {
    margin: 24px 0;
}

.contacts-store__block-title {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    font-weight: 700;
}

.contacts-store__block-line {
    margin: 0 0 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contacts-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-map-link {
    text-decoration: none;
    box-sizing: border-box;
}

.contacts-map-link::after {
    transform: rotate(0deg) !important;
}

.contacts-requisites-accordion .product-oval-trigger {
    background: transparent;
}

.contacts-requisites-accordion[open] .product-oval-trigger {
    background: transparent;
}

.contacts-map-link {
    background: transparent;
}

@media (max-width: 640px) {
    .contacts-page {
        padding-top: 32px;
    }

    .contacts-page__inner {
        padding: 0 20px;
    }

    .contacts-map-link,
    .contacts-requisites-accordion .product-oval-trigger {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
    }
}
