:root {
    --font-ui: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --bg: #f4f8fb;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --ink: #10233a;
    --muted: #5d7287;
    --line: rgba(16, 35, 58, 0.12);
    --brand: #0b7fc2;
    --brand-dark: #0a567d;
    --accent: #ffb64d;
    --success: #1b8f5a;
    --danger: #c44f4f;
    --shadow: 0 20px 60px rgba(12, 39, 64, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --container: min(1200px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(63, 186, 255, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 182, 77, 0.12), transparent 24%),
        linear-gradient(180deg, #f6fbff 0%, #eef6fb 38%, #f7fafc 100%);
    font-family: var(--font-ui);
}

.public-shell {
    --brand: #d6a15d;
    --brand-dark: #1a2431;
    --accent: #f0c88c;
    background:
        radial-gradient(circle at top, rgba(214, 161, 93, 0.12), transparent 25%),
        linear-gradient(180deg, #0a1118 0%, #111c27 21%, #eef2f6 21%, #f6f8fb 100%);
}

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

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.5rem;
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

h1 {
    font-size: clamp(2.6rem, 4.8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.3vw, 3.5rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

p,
li,
small,
span,
label,
td,
th {
    line-height: 1.65;
    overflow-wrap: break-word;
}

small {
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.3rem;
    background: linear-gradient(135deg, var(--brand) 0%, #0aa9d8 100%);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(11, 127, 194, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(11, 127, 194, 0.28);
}

.button-secondary,
.button-ghost {
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line);
}

.button-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: none;
}

.button-small {
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
}

.button-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(246, 251, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand--has-logo {
    gap: 0.95rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 32%),
        linear-gradient(145deg, #0d8bc8, #09416c);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark--image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    min-width: 156px;
    height: 76px;
    padding: 0;
    border-radius: 10;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.brand-mark--image img {
    width: auto;
    height: 76px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    transform: translateY(-8px);
    filter: none;
}

.brand-copy strong {
    display: block;
    font-size: 1rem;
}

.brand-copy small {
    display: block;
    font-size: 0.82rem;
}

.main-nav,
.admin-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav a,
.admin-nav a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.main-nav a.active,
.main-nav a:hover,
.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(11, 127, 194, 0.12);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(11, 127, 194, 0.08);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 800;
}

.hero-section,
.catalog-hero,
.page-header {
    padding: 4rem 0 2rem;
}

.hero-grid,
.catalog-hero__grid,
.contact-grid,
.split-panel,
.admin-two-column {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.hero-copy p,
.catalog-hero p,
.page-header p {
    max-width: 62ch;
    font-size: 1.08rem;
    color: var(--muted);
}

.hero-actions,
.hero-badges,
.table-actions,
.inline-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-badges span,
.catalog-badge,
.catalog-side-note,
.hero-card-shell,
.category-card,
.showcase-card,
.info-card,
.catalog-card,
.order-panel__sticky,
.flash,
.admin-card,
.stat-card,
.order-card,
.admin-login__panel {
    backdrop-filter: blur(10px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
}

.hero-badges span,
.catalog-badge {
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--brand-dark);
}

.hero-card {
    position: relative;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 10% -6% -10% 16%;
    background: radial-gradient(circle, rgba(11, 127, 194, 0.2), transparent 64%);
    z-index: -1;
}

.hero-card-shell {
    padding: 2rem;
    border-radius: calc(var(--radius) + 6px);
}

.hero-list {
    margin: 1.3rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.flash-wrap {
    padding: 0 0 1rem;
}

.flash {
    border-radius: 20px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.flash-success {
    color: var(--success);
}

.flash-error {
    color: var(--danger);
}

.section {
    padding: 2rem 0 4rem;
}

.section-alt {
    background: linear-gradient(180deg, rgba(12, 102, 145, 0.06), transparent);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.6rem;
}

.section-heading p {
    max-width: 42ch;
    color: var(--muted);
}

.category-grid,
.product-showcase,
.catalog-grid,
.stats-grid,
.orders-list {
    display: grid;
    gap: 1.2rem;
}

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

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

.category-card,
.showcase-card,
.info-card,
.catalog-card,
.admin-card,
.order-card,
.stat-card {
    border-radius: var(--radius);
}

.category-card {
    overflow: hidden;
}

.category-card__image,
.catalog-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(227, 240, 249, 0.9));
}

.category-card__image img,
.catalog-card__media img,
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card__body,
.showcase-card__content,
.catalog-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.category-card__body span,
.catalog-card__meta {
    color: var(--brand);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase-card {
    overflow: hidden;
}

.showcase-card img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(11, 127, 194, 0.16), rgba(255, 255, 255, 0.88));
}

.showcase-card__content span {
    display: inline-block;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.split-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding: 2rem;
    border-radius: calc(var(--radius) + 10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(232, 244, 249, 0.95));
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 1rem;
}

.check-list div {
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(16, 35, 58, 0.08);
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

.catalog-content {
    display: grid;
    gap: 1.8rem;
}

.catalog-group__heading {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.catalog-group__heading p {
    max-width: 58ch;
    margin: 0;
    color: var(--muted);
}

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

.catalog-card {
    overflow: hidden;
}

.catalog-card__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(16, 35, 58, 0.4));
    pointer-events: none;
}

.price-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 35, 58, 0.8);
    color: #fff;
    font-weight: 800;
}

.catalog-card__actions,
.stack-form,
.status-form {
    display: grid;
    gap: 0.9rem;
}

.catalog-card__actions {
    grid-template-columns: 1fr 1fr auto;
    padding: 0 1.2rem 1.25rem;
    align-items: end;
}

.order-panel__sticky {
    position: sticky;
    top: 100px;
    border-radius: calc(var(--radius) + 2px);
    padding: 1.35rem;
}

.order-items {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(245, 249, 252, 0.9);
    box-shadow: inset 0 0 0 1px rgba(16, 35, 58, 0.08);
}

.order-item strong {
    display: block;
    font-size: 0.95rem;
}

.order-item small {
    display: block;
    margin-top: 0.1rem;
}

.order-item__controls {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.order-placeholder,
.form-note {
    color: var(--muted);
    font-size: 0.92rem;
}

label {
    display: grid;
    gap: 0.38rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(16, 35, 58, 0.12);
    border-radius: 16px;
    padding: 0.88rem 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

textarea {
    resize: vertical;
}

.check-line {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.check-line input {
    width: auto;
}

.field-hint {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--muted);
}

.admin-image-preview {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-image-preview span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.admin-image-preview img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(16, 35, 58, 0.12);
}

.admin-file-preview {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-file-preview span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.admin-branding-preview {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-branding-preview > span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.admin-branding-preview__frame {
    display: grid;
    place-items: center;
    min-height: 140px;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #edf5fb);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.admin-branding-preview__frame img,
.admin-file-preview__frame img {
    display: block;
    max-width: min(100%, 240px);
    max-height: 100px;
    object-fit: contain;
}

.admin-branding-preview__frame--wide img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.admin-inline-check {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-inline-check input {
    margin-top: 0.15rem;
}

.contact-grid,
.admin-two-column {
    grid-template-columns: 1fr 1.25fr;
}

.info-card {
    padding: 1.5rem;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(16, 35, 58, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.public-shell .site-header {
    background: rgba(8, 13, 20, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.public-shell .brand-copy strong,
.public-shell .brand-copy small,
.public-shell .main-nav a {
    color: rgba(245, 240, 233, 0.92);
}

.public-shell .main-nav a.active,
.public-shell .main-nav a:hover {
    background: rgba(214, 161, 93, 0.18);
    color: #fff7ef;
}

.public-shell .nav-toggle {
    background: rgba(214, 161, 93, 0.16);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 1.5rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
}

.footer-meta {
    padding-top: 1rem;
    text-align: right;
}

.footer-meta span,
.footer-meta a {
    font-size: 0.92rem;
    color: var(--muted);
}

.footer-meta a {
    font-weight: 800;
}

.admin-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 100vh;
    background: linear-gradient(180deg, #f3f7fb, #eef2f7);
}

.admin-sidebar {
    padding: 1.25rem;
    background: linear-gradient(180deg, #0d2437, #102c42);
    color: rgba(255, 255, 255, 0.86);
}

.brand-admin .brand-mark {
    width: 48px;
    height: 48px;
}

.brand-admin .brand-mark--image {
    width: 124px;
    min-width: 124px;
    height: 40px;
}

.brand-admin .brand-mark--image img {
    height: 58px;
    transform: translateY(-7px);
}

.brand-admin {
    gap: 0.75rem;
}

.brand-admin .brand-copy strong {
    font-size: 0.95rem;
}

.brand-admin .brand-copy small {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.62);
}

.admin-shell h1,
.admin-shell h2,
.admin-shell h3,
.admin-shell h4 {
    font-family: var(--font-ui);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.admin-shell h1 {
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.admin-shell h2 {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.admin-shell h3 {
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.admin-nav {
    margin: 1.4rem 0;
    flex-direction: column;
    align-items: stretch;
}

.admin-nav a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.logout-form {
    margin-top: auto;
}

.admin-main {
    padding: 1.1rem 1.25rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0.85rem;
}

.stat-card,
.admin-card,
.order-card {
    padding: 0.9rem 1rem;
}

.admin-card__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-card__header h2 {
    margin-bottom: 0.15rem;
}

.admin-card__header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.stat-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
}

.stat-card strong {
    font-size: 1.65rem;
    font-family: var(--font-ui);
    font-weight: 800;
}

.admin-panels {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.85rem;
}

.admin-panels--stack {
    grid-template-columns: 1fr;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.65rem 0.55rem;
    border-bottom: 1px solid rgba(16, 35, 58, 0.08);
    text-align: left;
    vertical-align: top;
    font-size: 0.88rem;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table td small {
    display: block;
}

.admin-table td strong {
    display: block;
}

.admin-table td code {
    font-size: 0.8rem;
}

.admin-table td input,
.admin-table td select {
    width: 100%;
}

.order-card__header,
.order-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-card__meta {
    color: var(--muted);
    margin: 1rem 0;
}

.order-notes {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(244, 248, 251, 0.95);
}

.admin-brand-card {
    margin-bottom: 1rem;
    display: grid;
    gap: 0.6rem;
}

.admin-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(70, 177, 255, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(5, 18, 31, 0.96), rgba(10, 35, 57, 0.98));
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.admin-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.admin-loader__inner {
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.admin-loader__mark {
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.admin-loader__line {
    width: 140px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.12), #34aeef, rgba(255,255,255,0.12));
    background-size: 180% 100%;
    animation: adminLoaderFlow 1.1s linear infinite;
}

.admin-dialog {
    width: min(760px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 34px 80px rgba(3, 16, 27, 0.38);
}

.admin-dialog::backdrop {
    background: rgba(4, 16, 28, 0.52);
    backdrop-filter: blur(4px);
}

.admin-dialog__shell {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.admin-dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.admin-dialog__header h2 {
    margin-bottom: 0;
}

.admin-dialog__form {
    max-height: calc(100vh - 11rem);
    overflow-y: auto;
    padding-right: 0.2rem;
}

.orders-toolbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: end;
}

.orders-toolbar__search,
.orders-toolbar__filter {
    display: grid;
    gap: 0.35rem;
}

.orders-toolbar__search {
    grid-column: span 2;
}

.orders-toolbar__search span,
.orders-toolbar__filter span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-orders-table td {
    vertical-align: middle;
}

.admin-orders-table strong {
    font-size: 0.9rem;
}

.order-row-actions {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.order-row-actions .button {
    margin-left: auto;
}

.admin-row-actions {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.admin-row-actions__stack {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-empty-state {
    margin-top: 0.9rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: rgba(244, 248, 251, 0.96);
    border: 1px solid rgba(16, 35, 58, 0.08);
    color: var(--muted);
    font-size: 0.85rem;
}

.muted {
    color: var(--muted);
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.admin-pill--success {
    background: rgba(27, 143, 90, 0.14);
    color: #1b8f5a;
}

.admin-pill--info {
    background: rgba(29, 162, 227, 0.12);
    color: #12669e;
}

.admin-pill--warning {
    background: rgba(255, 182, 77, 0.18);
    color: #9d620b;
}

.admin-pill--muted {
    background: rgba(16, 35, 58, 0.08);
    color: #5f7388;
}

.admin-pill--danger {
    background: rgba(196, 79, 79, 0.12);
    color: #b24545;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.order-status-badge--new {
    background: rgba(29, 162, 227, 0.12);
    color: #12669e;
}

.order-status-badge--processing {
    background: rgba(255, 182, 77, 0.18);
    color: #9d620b;
}

.order-status-badge--completed {
    background: rgba(27, 143, 90, 0.14);
    color: #1b8f5a;
}

.order-status-badge--cancelled {
    background: rgba(196, 79, 79, 0.12);
    color: #b24545;
}

.order-detail-row td {
    padding: 0;
    border-bottom: 0;
}

.order-detail-card {
    margin: 0.75rem 0 1rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(244, 248, 251, 0.96);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.order-detail-card__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-detail-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-shell .button {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
}

.admin-shell .button-small {
    padding: 0.52rem 0.8rem;
    font-size: 0.82rem;
}

.settings-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1rem;
    align-items: start;
}

.settings-sidecard,
.settings-security {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(244, 248, 251, 0.96);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.settings-sidecard h3,
.settings-security h3 {
    margin-bottom: 0.45rem;
}

.settings-sidecard p,
.settings-security p {
    margin-bottom: 0.8rem;
}

.settings-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.settings-secret {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.settings-secret span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.settings-secret code,
.settings-secret textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(16, 35, 58, 0.12);
    font-size: 0.84rem;
    color: var(--text);
}

.settings-secret textarea {
    min-height: 96px;
    resize: vertical;
}

.admin-inline-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.settings-health {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 35, 58, 0.1);
}

.settings-health strong {
    display: block;
    margin-bottom: 0.35rem;
}

.settings-health p {
    margin-bottom: 0.3rem;
}

.admin-logs-table td {
    vertical-align: top;
}

.log-context {
    margin: 0;
    padding: 0.75rem;
    border-radius: 14px;
    background: rgba(16, 35, 58, 0.04);
    border: 1px solid rgba(16, 35, 58, 0.08);
    color: var(--text);
    font-size: 0.76rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 360px;
}

.admin-login-shell {
    display: block;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.admin-login__panel {
    width: min(520px, 100%);
    padding: 2rem;
    border-radius: 32px;
}

.image-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-weight: 900;
    color: rgba(16, 35, 58, 0.45);
    letter-spacing: 0.12em;
}

.brochure-cover {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    color: #f7f0e8;
}

.brochure-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(126, 228, 255, 0.18), transparent 20%),
        radial-gradient(circle at 82% 20%, rgba(86, 171, 255, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(8, 22, 35, 0.96), rgba(17, 45, 72, 0.92));
    pointer-events: none;
}

.brochure-cover > .container {
    position: relative;
    z-index: 1;
}

.cover-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.cover-copy p {
    max-width: 60ch;
    color: rgba(247, 240, 232, 0.78);
}

.cover-script {
    font-family: var(--font-ui);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.1;
    color: #fff6eb;
    margin: 1rem 0 1.6rem;
}

.cover-panel,
.catalog-cover-panel,
.intro-ribbon,
.brochure-flow,
.brochure-cta,
.order-bridge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.cover-panel,
.catalog-cover-panel {
    padding: 1.8rem;
    border-radius: 36px;
}

.cover-orb {
    width: 170px;
    height: 170px;
    margin: 0 auto 1.4rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: var(--font-ui);
    font-size: 2.3rem;
    font-weight: 700;
    background: radial-gradient(circle at 30% 30%, #f4d6a9, #9f5d27 72%);
    color: #fff8ef;
    box-shadow: 0 20px 60px rgba(159, 93, 39, 0.35);
}

.cover-lines {
    display: grid;
    gap: 0.8rem;
}

.cover-lines span {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: #fff8ef;
}

.intro-ribbon,
.brochure-flow,
.brochure-cta,
.order-bridge {
    display: grid;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: 34px;
}

.intro-ribbon {
    grid-template-columns: 1fr 0.9fr;
}

.intro-ribbon p,
.brochure-flow__intro p,
.brochure-section__header p,
.feature-note,
.brochure-card__body p {
    color: var(--muted);
}

.dramatic-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.dramatic-card,
.category-tile,
.brochure-feature,
.brochure-card,
.catalog-cover-panel,
.cover-panel {
    border-radius: 32px;
    overflow: hidden;
}

.dramatic-card {
    min-height: 420px;
    background:
        linear-gradient(180deg, rgba(10, 17, 24, 0.08), rgba(10, 17, 24, 0.58)),
        url('/assets/media/fish.svg') center/cover no-repeat;
    display: flex;
    align-items: end;
    padding: 1.5rem;
    color: #fff7ef;
}

.category-tile {
    background: rgba(255, 255, 255, 0.92);
}

.category-tile__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(214, 161, 93, 0.14), rgba(255,255,255,0.86));
}

.category-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile__body {
    padding: 1.2rem;
}

.category-tile__body span,
.brochure-card__body span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-showcase--editorial {
    grid-template-columns: 1.3fr 1fr 1fr;
}

.showcase-card--editorial {
    background: rgba(255, 255, 255, 0.92);
}

.showcase-card--editorial img {
    aspect-ratio: 4 / 3;
}

.showcase-card--wide {
    grid-row: span 2;
}

.showcase-card--wide img {
    aspect-ratio: 3 / 4;
}

.brochure-cover--catalog,
.brochure-cover--order {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.catalog-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.catalog-chip-list a,
.catalog-chip-list button,
.category-filter {
    border: 0;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ef;
    font-weight: 700;
    cursor: pointer;
}

.catalog-chip-list button.is-active,
.category-filter.is-active {
    background: linear-gradient(135deg, #d6a15d, #a86930);
    color: #fff;
}

.brochure-flow {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.brochure-section {
    padding-top: 1rem;
}

.brochure-section__header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 1.4rem;
}

.brochure-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: rgba(255, 255, 255, 0.94);
    margin-bottom: 1.2rem;
}

.brochure-feature__media {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, rgba(214, 161, 93, 0.12), rgba(255,255,255,0.8));
}

.brochure-feature__media img,
.brochure-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brochure-feature__copy {
    padding: 2rem;
}

.feature-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 35, 58, 0.1);
}

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

.brochure-card {
    background: rgba(255, 255, 255, 0.94);
}

.brochure-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
}

.brochure-card__body {
    padding: 1.2rem;
}

.brochure-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.order-card-tile {
    background: rgba(255, 255, 255, 0.94);
}

.order-card-tile .catalog-card__media {
    background: linear-gradient(135deg, rgba(214, 161, 93, 0.12), rgba(255,255,255,0.82));
}

.public-shell .site-footer {
    background: #0e151e;
    color: rgba(247, 240, 232, 0.84);
    border-top-color: rgba(255, 255, 255, 0.06);
}

.public-shell .footer-grid a,
.public-shell .site-footer p,
.public-shell .site-footer h4 {
    color: rgba(247, 240, 232, 0.72);
}

@media (max-width: 1180px) {
    .cover-grid,
    .intro-ribbon,
    .brochure-section__header,
    .brochure-feature,
    .brochure-cta,
    .brochure-flow,
    .dramatic-grid,
    .product-showcase--editorial {
        grid-template-columns: 1fr;
    }

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

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

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

    .catalog-layout,
    .hero-grid,
    .contact-grid,
    .split-panel,
    .admin-panels,
    .admin-two-column,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .order-panel__sticky {
        position: static;
    }
}

@media (max-width: 960px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: grid;
        gap: 1rem;
    }

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

    .orders-toolbar,
    .order-detail-card__header {
        grid-template-columns: 1fr;
        display: grid;
    }

    .orders-toolbar__search {
        grid-column: span 1;
    }

    .admin-header,
    .admin-card__header,
    .admin-dialog__header {
        align-items: start;
        flex-direction: column;
    }

    .admin-dialog {
        width: min(100vw - 1rem, 760px);
    }

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

@media (max-width: 780px) {
    .public-shell {
        background:
            linear-gradient(180deg, #0d1117 0 560px, #f5f1ea 560px 100%);
    }

    .premium-hero,
    .premium-pagehead {
        padding: 3.25rem 0 2.5rem;
    }

    .premium-hero__copy h1,
    .premium-pagehead h1 {
        font-size: clamp(1.9rem, 8.2vw, 2.55rem);
        line-height: 1.04;
        margin-bottom: 0.85rem;
        letter-spacing: -0.04em;
        text-wrap: pretty;
    }

    .catalog-brochure-cover h1,
    .premium-pagehead--about h1 {
        max-width: none;
    }

    .premium-hero__script {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .premium-hero__text,
    .premium-pagehead p {
        max-width: none;
        font-size: 0.92rem;
        line-height: 1.68;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .premium-hero__copy,
    .premium-pagehead__grid > * {
        min-width: 0;
    }

    .premium-band span {
        padding: 0.9rem 1rem;
        font-size: 0.78rem;
        text-align: center;
    }

    .topbar {
        gap: 0.7rem;
        align-items: start;
    }

    .brand {
        gap: 0.65rem;
        align-items: start;
        max-width: calc(100% - 112px);
    }

    .brand-mark--image {
        width: 120px;
        min-width: 120px;
        height: 54px;
    }

    .brand-mark--image img {
        height: 52px;
        transform: translateY(-6px);
    }

    .brand-copy strong {
        font-size: 0.94rem;
    }

    .brand-copy small {
        font-size: 0.74rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        padding: 0.8rem;
        border-radius: 24px;
        background: rgba(8, 23, 38, 0.98);
        border: 1px solid rgba(136, 214, 255, 0.12);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .public-shell .main-nav {
        background: rgba(8, 23, 38, 0.98);
        border: 1px solid rgba(136, 214, 255, 0.12);
    }

    .public-shell .main-nav a {
        color: rgba(244, 250, 255, 0.94);
    }

    .public-shell .main-nav a.active,
    .public-shell .main-nav a:hover {
        background: rgba(29, 162, 227, 0.18);
        color: #ffffff;
    }

    .section-heading {
        display: grid;
    }

    .category-grid,
    .product-showcase,
    .brochure-grid {
        grid-template-columns: 1fr;
    }

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

    .order-item {
        grid-template-columns: 1fr;
    }

    .brochure-cover {
        padding-top: 4rem;
    }
}

/* Public redesign v2 */
.public-shell {
    background:
        linear-gradient(180deg, #0d1117 0 620px, #f5f1ea 620px 100%);
    color: #1b2430;
}

.public-shell .site-header {
    background: rgba(10, 14, 20, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-shell .brand-mark {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 34%),
        linear-gradient(145deg, #b67b3d, #6a3d18);
}

.public-shell .brand-copy strong,
.public-shell .brand-copy small,
.public-shell .main-nav a {
    color: rgba(249, 243, 234, 0.9);
}

.public-shell .main-nav a.active,
.public-shell .main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.public-shell .site-footer {
    background: #11161d;
    color: rgba(249, 243, 234, 0.82);
    border-top-color: rgba(255,255,255,0.08);
}

.public-shell .site-footer p,
.public-shell .site-footer a,
.public-shell .site-footer h4 {
    color: rgba(249, 243, 234, 0.72);
}

.premium-hero,
.premium-pagehead {
    position: relative;
    color: #f7f1e8;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.premium-hero::before,
.premium-pagehead::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(126, 228, 255, 0.20), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(86, 171, 255, 0.18), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.10), transparent 26%),
        linear-gradient(145deg, #071523, #123252 58%, #0d2740);
    pointer-events: none;
}

.premium-hero > .container,
.premium-pagehead > .container {
    position: relative;
    z-index: 1;
}

.premium-hero__grid,
.premium-pagehead__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.premium-pagehead__grid--brochure {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
}

.premium-hero__copy h1,
.premium-pagehead h1 {
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.public-shell .editorial-section__header h2,
.public-shell .catalog-section__header h2,
.public-shell .service-panel > div h2,
.public-shell .service-panel--compact h2,
.public-shell .contact-card h2,
.public-shell .order-category .catalog-group__heading h2,
.public-shell .cart-drawer h2 {
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.08;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #17334e;
}

.public-shell .collection-card__body h3,
.public-shell .editorial-card__body h3,
.public-shell .catalog-product-card__body h3,
.public-shell .catalog-feature__copy h3,
.public-shell .print-card__body h3,
.public-shell .print-feature__body h3,
.public-shell .service-panel__steps h3 {
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: -0.024em;
    line-height: 1.12;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    color: #17334e;
}

.premium-hero__script {
    margin: 0 0 0.8rem;
    font-family: var(--font-ui);
    font-style: italic;
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    color: rgba(234, 246, 255, 0.92);
}

.hero-ocean-wave {
    position: absolute;
    left: 28%;
    width: 82%;
    background: url('/assets/media/hero-wave-mark.svg') center / 100% 100% no-repeat;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: screen;
    filter: drop-shadow(0 10px 26px rgba(58, 166, 255, 0.18));
    animation: oceanWaveShift 12s ease-in-out infinite;
}

.hero-ocean-wave--one {
    top: 36%;
    height: 150px;
    transform: rotate(-3deg);
}

.hero-ocean-wave--two {
    top: 54%;
    height: 180px;
    transform: rotate(-2deg) scaleX(1.03);
    opacity: 0.38;
    animation-delay: -4s;
}

.hero-ocean-wave--three {
    bottom: -1%;
    height: 140px;
    transform: rotate(1deg) scaleX(0.98);
    opacity: 0.28;
    animation-delay: -7s;
}

.premium-hero__text,
.premium-pagehead p {
    max-width: 58ch;
    color: rgba(247, 241, 232, 0.76);
}

.hero-issue,
.premium-pagehead__side {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 28px;
}

.premium-hero__art {
    display: grid;
    gap: 1rem;
    perspective: 1400px;
}

.hero-issue {
    padding: 1.5rem;
}

.hero-issue__kicker {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d8b27a;
}

.hero-issue strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
    font-size: 3.6rem;
}

.hero-issue p {
    margin: 0;
    color: rgba(247, 241, 232, 0.76);
}

.hero-frames {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-frames article {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-frames img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(27, 36, 48, 0.14);
}

.premium-band span {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4d5a68;
}

.section-soft {
    background: linear-gradient(180deg, rgba(17, 22, 29, 0.04), transparent);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.collection-card,
.editorial-card,
.catalog-feature,
.catalog-product-card,
.service-panel,
.order-panel__sticky,
.premium-pagehead__side {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 44px rgba(18, 32, 46, 0.08);
    overflow: hidden;
}

.collection-card__media,
.editorial-card__media,
.catalog-feature__media,
.catalog-product-card__media {
    background: linear-gradient(135deg, #f5eadc, #e9f0f4);
}

.collection-card__media {
    aspect-ratio: 3 / 4;
}

.collection-card__media img,
.editorial-card__media img,
.catalog-feature__media img,
.catalog-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card__body,
.editorial-card__body,
.catalog-product-card__body {
    padding: 1.2rem;
}

.collection-card__body span,
.editorial-card__body span,
.catalog-product-card__body span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #a06b2f;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editorial-section {
    display: grid;
    gap: 1.4rem;
}

.editorial-section__header {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: end;
}

.editorial-section__header p {
    margin: 0;
    color: #687684;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.editorial-card__media {
    aspect-ratio: 4 / 3;
}

.editorial-card--lead {
    grid-row: span 2;
}

.editorial-card--lead .editorial-card__media {
    aspect-ratio: 3 / 4;
}

.service-panel {
    display: grid;
    gap: 1.4rem;
    padding: 1.8rem;
}

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

.service-panel__steps article {
    padding: 1.1rem 0;
    border-top: 1px solid rgba(27, 36, 48, 0.12);
}

.service-panel__steps strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #a06b2f;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.service-panel--compact {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.premium-pagehead {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.premium-pagehead--catalog > .container,
.premium-pagehead--contact > .container,
.catalog-section .container,
.service-panel--compact.container {
    width: min(1100px, calc(100vw - 88px));
}

.premium-pagehead__side {
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-brochure-cover {
    display: grid;
    gap: 1.05rem;
    max-width: 700px;
}

.catalog-brochure-cover__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(247, 241, 232, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-brochure-cover h1 {
    max-width: 8ch;
    margin-bottom: 0;
}

.catalog-brochure-cover__subtitle {
    max-width: 44ch;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.75;
}

.catalog-brochure-cover__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.catalog-brochure-meta {
    display: grid;
    gap: 1.15rem;
    justify-self: end;
    align-content: end;
    width: min(100%, 330px);
    padding-bottom: 0.4rem;
}

.catalog-brochure-meta__intro {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(241, 248, 255, 0.78);
    line-height: 1.75;
    font-size: 0.98rem;
}

.contact-side-card {
    align-self: stretch;
}

.contact-side-card__row {
    display: grid;
    gap: 0.18rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-side-card__row span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 245, 255, 0.7);
}

.contact-side-card__row strong {
    font-size: 1.15rem;
    color: #ffffff;
}

.contact-map-card {
    overflow: hidden;
    border-radius: 22px;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 34px rgba(7, 25, 43, 0.16);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    min-height: 220px;
    border: 0;
}

.contact-grid--public {
    width: min(1100px, calc(100vw - 88px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.contact-card {
    padding: 2rem;
}

.contact-card h2 {
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: #5d7287;
}

.contact-card__lines {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.contact-card__lines p {
    margin: 0;
    font-size: 1.05rem;
}

.about-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 3rem;
    align-items: start;
}

.about-hero__copy {
    display: grid;
    gap: 1.15rem;
    width: min(100%, 760px);
}

.about-hero__topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(247, 241, 232, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.premium-pagehead--about h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(3.2rem, 5.4vw, 5.85rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.about-hero__intro {
    max-width: 48ch;
    margin: 0;
    color: rgba(247, 241, 232, 0.8);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-hero__visual {
    display: grid;
    align-content: start;
    justify-items: end;
    min-height: 100%;
    padding-top: 0.65rem;
}

.about-hero__stage {
    display: grid;
    gap: 1.1rem;
    width: min(100%, 420px);
    padding: 0.5rem 0 0.35rem;
}

.about-hero__map {
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 44px rgba(7, 25, 43, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.about-hero__map iframe {
    display: block;
    width: 100%;
    min-height: 300px;
    border: 0;
    filter: saturate(0.92) contrast(1.04);
}

.about-hero__orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.8rem 0.75rem;
    width: 100%;
    padding: 0.3rem 0.2rem 0;
    pointer-events: none;
    isolation: isolate;
}

.about-hero__orbit::before {
    content: "";
    position: absolute;
    inset: 0.35rem 3.2rem auto 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(116, 173, 255, 0.22), rgba(146, 126, 255, 0.14) 45%, rgba(255, 255, 255, 0) 72%);
    filter: blur(16px);
    z-index: 0;
}

.about-hero__orbit::after {
    content: "";
    position: absolute;
    inset: auto 1.6rem -0.2rem 1.6rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(179, 204, 255, 0.3), rgba(255, 255, 255, 0));
    z-index: 1;
}

.about-hero__orbit-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.1rem;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(112, 210, 255, 0.22), rgba(137, 140, 255, 0.22) 58%, rgba(206, 145, 255, 0.2)),
        rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(188, 204, 255, 0.24);
    box-shadow:
        0 10px 22px rgba(8, 33, 61, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    color: #f7fbff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    justify-self: center;
    animation: aboutOrbitFloat 7.5s ease-in-out infinite, aboutOrbitHue 14s linear infinite;
}

.about-hero__orbit-item--quality {
    grid-column: 2 / span 3;
}

.about-hero__orbit-item--consistency {
    grid-column: 8 / span 3;
    animation-delay: -2.2s;
}

.about-hero__orbit-item--responsibility {
    grid-column: 4 / span 6;
    animation-delay: -4.4s;
}

.about-hero__orbit-item--retail {
    grid-column: 2 / span 3;
    animation-delay: -1.1s;
}

.about-hero__orbit-item--horeca {
    grid-column: 5 / span 3;
    animation-delay: -3.3s;
}

.about-hero__orbit-item--supply {
    grid-column: 7 / span 5;
    animation-delay: -5.1s;
}

.certificate-sheet__preview iframe,
.admin-file-preview__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.about-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 2.5rem;
    align-items: start;
}

.about-editorial__lead {
    display: grid;
    gap: 0.9rem;
    padding: 0 0 2.1rem;
    border-bottom: 1px solid rgba(16, 35, 58, 0.1);
}

.about-editorial__lead h2 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(2.4rem, 3.6vw, 4.1rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #17334e;
}

.about-editorial__copy {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding-top: 0.2rem;
}

.about-editorial__side {
    display: grid;
    gap: 1.3rem;
    align-content: start;
    padding-top: 0.2rem;
}

.about-editorial__copy > .eyebrow,
.about-editorial__side > .eyebrow {
    margin-bottom: 0.15rem;
}

.about-editorial__side > p {
    margin: 0;
    color: #526b84;
    line-height: 1.8;
}

.about-story__body {
    display: grid;
    gap: 1.05rem;
    margin-top: 0.15rem;
}

.about-story__body p,
.about-story__aside p {
    margin: 0;
    color: #5d7287;
    line-height: 1.9;
}

.about-certificates {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}

.fao-zone {
    display: grid;
    gap: 1.5rem;
}

.fao-zone__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}

.fao-zone__sheet,
.fao-zone__legend {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 35, 58, 0.08);
    box-shadow: 0 24px 50px rgba(18, 43, 72, 0.08);
}

.fao-zone__image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(145deg, #f8fbff, #ddecf9);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.fao-zone__image img {
    display: block;
    width: 100%;
    height: auto;
}

.fao-zone__marker {
    position: absolute;
    width: 2.55rem;
    height: 2.55rem;
    margin: -1.275rem 0 0 -1.275rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, rgba(30, 145, 230, 0.94), rgba(113, 99, 255, 0.92));
    color: #fff;
    box-shadow: 0 12px 24px rgba(22, 59, 112, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fao-zone__marker span {
    pointer-events: none;
}

.fao-zone__marker:hover,
.fao-zone__marker:focus-visible,
.fao-zone__marker.is-active {
    transform: scale(1.08);
    box-shadow: 0 16px 28px rgba(22, 59, 112, 0.32);
    background: linear-gradient(135deg, rgba(28, 175, 236, 0.96), rgba(143, 92, 255, 0.95));
}

.fao-zone__legend {
    display: grid;
    gap: 1rem;
}

.fao-zone__legend-intro p {
    margin: 0;
    color: #5d7287;
    line-height: 1.75;
}

.fao-zone__chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.fao-zone__chip {
    padding: 0.78rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 35, 58, 0.08);
    background: rgba(247, 251, 255, 0.76);
    color: #1577bb;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fao-zone__chip:hover,
.fao-zone__chip:focus-visible,
.fao-zone__chip.is-active {
    transform: translateY(-2px);
    border-color: rgba(76, 123, 232, 0.18);
    background: linear-gradient(145deg, rgba(240, 248, 255, 0.96), rgba(233, 239, 255, 0.96));
    box-shadow: 0 14px 28px rgba(18, 43, 72, 0.08);
}

.fao-zone__detail {
    display: none;
    gap: 0.45rem;
    padding: 1.25rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(76, 123, 232, 0.12);
    background: linear-gradient(145deg, rgba(245, 250, 255, 0.96), rgba(236, 243, 255, 0.96));
    box-shadow: 0 16px 28px rgba(18, 43, 72, 0.08);
}

.fao-zone__detail.is-active {
    display: grid;
}

.fao-zone__detail span {
    color: #1577bb;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fao-zone__detail h3 {
    margin: 0;
    color: #10233a;
    font-size: 1.35rem;
    line-height: 1.2;
}

.fao-zone__detail p {
    margin: 0;
    color: #5d7287;
    line-height: 1.75;
}

.certificate-sheet {
    display: grid;
    gap: 1rem;
    align-content: start;
    grid-column: span 4;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 35, 58, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(18, 43, 72, 0.08);
}

.certificate-sheet__preview {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(145deg, #f8fbff, #ddecf9);
    border: 1px solid rgba(16, 35, 58, 0.08);
    aspect-ratio: 4 / 5;
}

.certificate-sheet--featured {
    grid-column: span 6;
}

.certificate-sheet__body span {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #1577bb;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.certificate-sheet__body h3 {
    margin-bottom: 0.4rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.certificate-sheet__body p {
    margin: 0;
    color: #5d7287;
    line-height: 1.7;
}

.certificate-sheet__actions {
    display: flex;
    align-items: center;
}

.admin-file-preview__frame {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(16, 35, 58, 0.08);
    aspect-ratio: 4 / 5;
}

.catalog-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.catalog-chip-list a,
.catalog-chip-list button {
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff4e3;
    font-weight: 700;
    cursor: pointer;
}

.catalog-chip-list button.is-active,
.catalog-chip-list a:hover,
.catalog-chip-list button:hover {
    background: linear-gradient(135deg, #d4a35e, #8c5829);
    color: #fff;
}

.catalog-section__header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 1.2rem;
}

.catalog-section__header p {
    margin: 0;
    color: #6c7886;
}

.catalog-feature {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    margin-bottom: 1rem;
}

.catalog-feature__media {
    position: relative;
    min-height: 420px;
}

.catalog-feature__copy {
    padding: 2rem;
}

.feature-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 36, 48, 0.1);
}

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

.catalog-product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
}

.price-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 22, 29, 0.84);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

.order-card-tile {
    background: rgba(255, 255, 255, 0.92);
}

.order-panel__sticky {
    position: sticky;
    top: 96px;
    padding: 1.35rem;
}

.order-items {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: #f5f1ea;
}

.order-placeholder,
.form-note {
    color: #687684;
}

.public-shell .button {
    background: linear-gradient(135deg, #c08b49, #8f5727);
    box-shadow: 0 14px 34px rgba(143, 87, 39, 0.22);
}

.public-shell .button-secondary,
.public-shell .button-ghost {
    background: rgba(255, 255, 255, 0.92);
    color: #1b2430;
    box-shadow: inset 0 0 0 1px rgba(27, 36, 48, 0.12);
}

@media (max-width: 1180px) {
    .premium-hero__grid,
    .premium-pagehead__grid,
    .editorial-section__header,
    .catalog-section__header,
    .catalog-feature,
    .about-hero,
    .about-editorial,
    .service-panel--compact,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

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

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

    .service-panel__steps {
        grid-template-columns: 1fr;
    }

    .contact-grid--public {
        grid-template-columns: 1fr;
    }

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 260px;
    }

    .premium-pagehead--about h1 {
        max-width: 12ch;
    }

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

    .fao-zone__layout {
        grid-template-columns: 1fr;
    }

    .about-editorial__lead {
        grid-column: 1 / -1;
    }

    .certificate-sheet,
    .certificate-sheet--featured {
        grid-column: span 1;
    }
}

@media (max-width: 780px) {
    .premium-band,
    .hero-frames,
    .collection-grid,
    .editorial-grid,
    .catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .collection-card__media,
    .editorial-card--lead .editorial-card__media,
    .catalog-feature__media {
        aspect-ratio: 4 / 3;
        min-height: auto;
    }

    .editorial-section__header,
    .catalog-section__header {
        gap: 1rem;
    }

    .service-panel {
        padding: 1.3rem;
        gap: 1.15rem;
    }

    .service-panel__steps article {
        padding: 0.9rem 0 0;
    }

    .about-hero__topline {
        flex-direction: column;
        align-items: start;
    }

    .about-certificates {
        grid-template-columns: 1fr;
    }

    .about-hero__visual {
        justify-items: start;
        padding-bottom: 0;
    }

    .about-hero__stage,
    .about-hero__map {
        width: 100%;
    }

    .about-hero__map iframe {
        min-height: 260px;
    }

    .about-hero__orbit {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 0.85rem;
    }

    .about-hero__orbit-item,
    .about-hero__orbit-item--quality,
    .about-hero__orbit-item--consistency,
    .about-hero__orbit-item--responsibility,
    .about-hero__orbit-item--retail,
    .about-hero__orbit-item--horeca,
    .about-hero__orbit-item--supply {
        position: static;
        transform: none;
        animation: none;
    }

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

    .order-item {
        grid-template-columns: 1fr;
    }
}

/* Ocean refresh */
.public-shell {
    --brand: #1c7ed6;
    --brand-dark: #0f365c;
    --accent: #8ad9ff;
    background:
        radial-gradient(circle at 12% 8%, rgba(118, 216, 255, 0.14), transparent 16%),
        radial-gradient(circle at 88% 12%, rgba(53, 157, 255, 0.12), transparent 18%),
        linear-gradient(180deg, #040c15 0 180px, #071726 180px 620px, #eef6fb 620px 100%);
}

.public-shell .site-header {
    background: rgba(7, 20, 34, 0.82);
}

.public-shell .brand-mark {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 34%),
        linear-gradient(145deg, #28a6e6, #12508c);
}

.public-shell .button {
    background: linear-gradient(135deg, #1da2e3, #155ea0);
    box-shadow: 0 14px 34px rgba(21, 94, 160, 0.24);
}

.public-shell .button-secondary,
.public-shell .button-ghost {
    background: rgba(255,255,255,0.94);
    color: #12314c;
}

.premium-hero::before,
.premium-pagehead::before {
    background:
        radial-gradient(circle at 14% 18%, rgba(126, 228, 255, 0.20), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(86, 171, 255, 0.18), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.10), transparent 26%),
        linear-gradient(145deg, #071523, #123252 58%, #0d2740);
}

.premium-hero::after,
.premium-pagehead::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(255,255,255,0.12), transparent 34%),
        radial-gradient(ellipse at 82% 10%, rgba(139, 222, 255, 0.10), transparent 30%),
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 38%, transparent 58%);
    pointer-events: none;
}

.premium-hero::before {
    background:
        url('/assets/media/ocean-waves.svg') center bottom / cover no-repeat,
        radial-gradient(circle at 16% 22%, rgba(153, 229, 255, 0.20), transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(68, 162, 255, 0.18), transparent 22%),
        radial-gradient(circle at 58% 68%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(118deg, #030b13 0%, #07192a 28%, #0b2a45 62%, #0e4a7b 100%);
    background-size: cover, auto, auto, auto, auto;
    animation: oceanDrift 22s ease-in-out infinite alternate;
}

.premium-hero::after {
    background:
        radial-gradient(circle at 24% 28%, rgba(255,255,255,0.08), transparent 14%),
        radial-gradient(circle at 78% 22%, rgba(255,255,255,0.07), transparent 14%),
        radial-gradient(circle at 84% 72%, rgba(125, 222, 255, 0.12), transparent 16%),
        linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.05) 34%, transparent 56%),
        linear-gradient(180deg, rgba(0,0,0,0.18), transparent 24%, transparent 74%, rgba(0,0,0,0.18));
    animation: heroShimmer 11s ease-in-out infinite;
}

.premium-band span,
.collection-card__body span,
.editorial-card__body span,
.catalog-product-card__body span,
.service-panel__steps strong,
.hero-issue__kicker {
    color: #1577bb;
}

.hero-fish-stage {
    position: relative;
    min-height: 520px;
    border-radius: 36px;
    padding: 2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,0.32), transparent 16%),
        radial-gradient(circle at 76% 78%, rgba(104, 225, 255, 0.24), transparent 24%),
        linear-gradient(145deg, rgba(10, 51, 94, 0.98), rgba(19, 104, 171, 0.9) 62%, rgba(17, 76, 132, 0.96));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
        0 28px 80px rgba(8, 37, 68, 0.38),
        inset 0 1px 0 rgba(255,255,255,0.18);
    transform: rotateY(-9deg) rotateX(2deg);
    transform-style: preserve-3d;
    animation: stageBreath 9s ease-in-out infinite;
}

.hero-fish-stage::before {
    content: '';
    position: absolute;
    inset: 7% 6%;
    border-radius: 28px;
    background:
        radial-gradient(circle at 25% 35%, rgba(255,255,255,0.18), transparent 12%),
        radial-gradient(circle at 72% 32%, rgba(255,255,255,0.12), transparent 10%),
        radial-gradient(circle at 62% 62%, rgba(187, 240, 255, 0.18), transparent 12%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    pointer-events: none;
}

.hero-fish-stage::after {
    content: '';
    position: absolute;
    inset: 2.5%;
    border-radius: 32px;
    background:
        linear-gradient(118deg, rgba(255,255,255,0.20), transparent 22%, transparent 64%, rgba(255,255,255,0.12) 84%, transparent),
        linear-gradient(180deg, rgba(255,255,255,0.07), transparent 26%, transparent 72%, rgba(255,255,255,0.04));
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-stage-glow,
.hero-stage-ribbon,
.hero-stage-bubble {
    position: absolute;
    pointer-events: none;
}

.hero-stage-glow {
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.78;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-stage-glow--one {
    inset: 14% auto auto 12%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.34), rgba(170, 234, 255, 0.08) 58%, transparent 72%);
}

.hero-stage-glow--two {
    inset: auto 10% 10% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(67, 193, 255, 0.34), rgba(67, 193, 255, 0.08) 54%, transparent 72%);
    animation-delay: -3s;
}

.hero-stage-ribbon {
    inset: 18% 8% auto auto;
    width: 54%;
    height: 18%;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 203, 118, 0.92), rgba(249, 142, 39, 0.88));
    clip-path: polygon(0 0, 100% 18%, 82% 100%, 8% 78%);
    transform: translateZ(30px) rotate(-8deg);
    opacity: 0.88;
    box-shadow: 0 12px 32px rgba(255, 162, 66, 0.3);
    animation: ribbonSway 10s ease-in-out infinite;
}

.hero-stage-bubble {
    border-radius: 999px;
    background: radial-gradient(circle at 34% 34%, rgba(255,255,255,0.72), rgba(201, 240, 255, 0.16) 52%, rgba(176, 228, 255, 0.04) 72%, transparent 74%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
}

.hero-stage-bubble--one {
    top: 14%;
    right: 10%;
    width: 26px;
    height: 26px;
    animation: bubbleLift 7s ease-in-out infinite;
}

.hero-stage-bubble--two {
    bottom: 18%;
    right: 24%;
    width: 46px;
    height: 46px;
    animation: bubbleLift 9s ease-in-out infinite -2s;
}

.hero-stage-bubble--three {
    top: 48%;
    left: 9%;
    width: 18px;
    height: 18px;
    animation: bubbleLift 6.5s ease-in-out infinite -1s;
}

.hero-fish-visual {
    position: absolute;
    inset: 4% 8% auto 4%;
    width: 92%;
    max-width: 760px;
    z-index: 2;
    filter: drop-shadow(0 22px 50px rgba(5, 25, 51, 0.35));
    animation: fishFloat 6s ease-in-out infinite;
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    color: #f4fbff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 40px rgba(8, 33, 61, 0.26);
    animation: cardFloat 8s ease-in-out infinite;
}

.hero-floating-card span {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 251, 255, 0.74);
}

.hero-floating-card strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.05rem;
}

.hero-floating-card--top {
    top: 8%;
    right: 5%;
    min-width: 260px;
}

.hero-floating-card--bottom {
    left: 5%;
    bottom: 8%;
    min-width: 240px;
    animation-delay: -4s;
}

.premium-pagehead__side,
.hero-issue {
    background: rgba(255,255,255,0.1);
}

.catalog-chip-list a,
.catalog-chip-list button {
    background: rgba(255,255,255,0.12);
}

.catalog-chip-list button.is-active,
.catalog-chip-list a:hover,
.catalog-chip-list button:hover {
    background: linear-gradient(135deg, #30aeee, #166bb1);
}

.catalog-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 1.75rem;
}

.order-panel__sticky {
    padding: 1.5rem;
    border: 1px solid rgba(22, 94, 157, 0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,249,255,0.96));
}

.order-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cart-counter {
    min-width: 52px;
    height: 52px;
    padding: 0 0.9rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1da2e3, #155ea0);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(21, 94, 160, 0.24);
}

.cart-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.cart-summary__item {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f2f9ff;
    border: 1px solid rgba(28, 126, 214, 0.1);
}

.cart-summary__item span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6d879c;
}

.cart-summary__item strong {
    display: block;
    margin-top: 0.35rem;
    color: #12314c;
    font-size: 1.1rem;
}

.order-items {
    max-height: 320px;
    overflow: auto;
    padding-right: 0.2rem;
}

.order-item {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(28, 126, 214, 0.12);
    box-shadow: 0 10px 24px rgba(18, 49, 76, 0.05);
}

.order-item strong {
    display: block;
    color: #12314c;
    margin-bottom: 0.1rem;
}

.order-item small {
    color: #6a7f93;
}

.order-item__controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cart-icon-button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: #eaf6ff;
    color: #145891;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

.cart-icon-button--danger {
    background: #ffe8ea;
    color: #bf4759;
}

.order-form {
    padding-top: 0.2rem;
}

.order-form .button-full {
    margin-top: 0.4rem;
}

.catalog-card.order-card-tile {
    background: #fff;
    border: 1px solid rgba(28, 126, 214, 0.1);
}

.catalog-card.order-card-tile .catalog-card__media {
    background: linear-gradient(135deg, #eff8ff, #d9f1ff);
}

.catalog-card.order-card-tile .catalog-card__actions {
    gap: 0.75rem;
}

.catalog-feature,
.catalog-product-card,
.collection-card,
.editorial-card,
.service-panel {
    border: 1px solid rgba(28, 126, 214, 0.08);
}

@keyframes fishFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes oceanDrift {
    0% {
        background-position: center bottom, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: center calc(100% + 14px), 18px -10px, -14px 10px, 12px 18px, 0 0;
    }
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.72;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

@keyframes stageBreath {
    0%, 100% {
        transform: rotateY(-9deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: rotateY(-7deg) rotateX(1deg) translateY(-6px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.56;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.05);
    }
}

@keyframes ribbonSway {
    0%, 100% {
        transform: translateZ(30px) rotate(-8deg) translateY(0);
    }
    50% {
        transform: translateZ(30px) rotate(-5deg) translateY(-5px);
    }
}

@keyframes bubbleLift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.72;
    }
    50% {
        transform: translate3d(6px, -14px, 0) scale(1.08);
        opacity: 1;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes oceanWaveShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.52;
    }
    50% {
        transform: translateX(18px) translateY(-10px);
        opacity: 0.9;
    }
}

@keyframes adminLoaderFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 180% 50%;
    }
}

@keyframes aboutOrbitFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes aboutOrbitHue {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(30deg) saturate(1.06);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

@keyframes aboutOrbitField {
    0% {
        background-position: 0 0, 8px 10px, 16px 18px;
    }
    50% {
        background-position: 10px -8px, 14px 16px, 24px 8px;
    }
    100% {
        background-position: 0 0, 8px 10px, 16px 18px;
    }
}

@media (max-width: 1180px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .hero-fish-stage {
        min-height: 420px;
        transform: none;
    }
}

@media (max-width: 780px) {
    .hero-fish-stage {
        min-height: 300px;
        padding: 1rem;
        transform: none;
        border-radius: 26px;
    }

    .hero-floating-card {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.85rem 0.95rem;
    }

    .hero-stage-ribbon {
        width: 44%;
        height: 13%;
    }

    .hero-ocean-wave {
        left: 14%;
        width: 96%;
    }

    .hero-fish-visual {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        filter: drop-shadow(0 12px 30px rgba(5, 25, 51, 0.24));
    }

    .hero-stage-glow,
    .hero-stage-bubble {
        display: none;
    }

    .cart-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    :root {
        --container: min(1200px, calc(100vw - 24px));
    }

    .premium-hero,
    .premium-pagehead {
        padding: 2.8rem 0 2.2rem;
    }

    .premium-hero__copy h1,
    .premium-pagehead h1 {
        font-size: clamp(1.62rem, 7.2vw, 2.05rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .premium-hero__script {
        font-size: 0.88rem;
    }

    .premium-hero__text,
    .premium-pagehead p {
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.13em;
    }

    .eyebrow::before {
        width: 22px;
    }

    .hero-actions .button {
        padding-inline: 0.9rem;
    }

    .brand-copy strong {
        font-size: 0.9rem;
    }

    .brand-copy small {
        font-size: 0.7rem;
    }
}

/* Catalog search, export and brochure PDF */
.catalog-brochure-note,
.catalog-editorial-note {
    display: grid;
    gap: 0.65rem;
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-brochure-note p,
.catalog-editorial-note p {
    margin: 0;
    color: rgba(241, 248, 255, 0.82);
    font-size: 0.97rem;
}

.catalog-search {
    display: grid;
    gap: 0.35rem;
}

.catalog-search span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 248, 255, 0.82);
}

.catalog-search input {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.catalog-search input::placeholder {
    color: rgba(240, 248, 255, 0.54);
}

.catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.premium-hero::before,
.premium-pagehead::before {
    background:
        url('/assets/media/ocean-waves.svg') center bottom / cover no-repeat,
        radial-gradient(circle at 14% 18%, rgba(126, 228, 255, 0.18), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(86, 171, 255, 0.16), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(145deg, #071523, #123252 58%, #0d2740);
}

.catalog-product-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
}

.catalog-product-card {
    grid-column: span 4;
}

.catalog-product-card--wide {
    grid-column: span 8;
}

.catalog-product-card--tall .catalog-product-card__media {
    aspect-ratio: 4 / 4.8;
}

.print-shell {
    background: #eef5f9;
    color: #17334e;
}

.print-catalog {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.print-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.print-toolbar__brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.print-toolbar strong,
.print-cover h1,
.print-section h2 {
    font-family: var(--font-ui);
}

.print-toolbar span {
    display: block;
    color: #5c7286;
}

.print-brand-logo {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 0.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 35, 58, 0.08);
}

.print-cover {
    position: relative;
    padding: 2rem;
    border-radius: 28px;
    color: #f7fbff;
    background:
        url('/assets/media/ocean-waves.svg') center/cover no-repeat,
        linear-gradient(145deg, #08213a, #1367aa);
    box-shadow: 0 18px 44px rgba(14, 63, 107, 0.2);
    margin-bottom: 1.5rem;
}

.print-cover__logo {
    display: block;
    width: 92px;
    height: 92px;
    object-fit: contain;
    padding: 0.55rem;
    margin-bottom: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.print-cover__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.print-cover__meta div {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.print-cover__meta span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(239, 248, 255, 0.74);
}

.print-cover__meta strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.05rem;
    color: #fff;
}

.print-overview {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding: 1.6rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 89, 145, 0.08);
}

.print-overview__intro p,
.print-overview__item p {
    margin: 0;
    color: #607587;
}

.print-overview__list {
    display: grid;
    gap: 0.85rem;
}

.print-overview__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(19, 89, 145, 0.08);
}

.print-overview__item:first-child {
    border-top: 0;
    padding-top: 0;
}

.print-overview__item > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1da2e3, #155ea0);
    color: #fff;
    font-weight: 800;
}

.print-overview__item strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #17334e;
}

.print-section {
    margin-top: 1.5rem;
    break-inside: auto;
}

.print-section--page-break {
    page-break-before: auto;
    break-before: auto;
}

.print-section__header {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1rem;
}

.print-section__header p {
    margin: 0;
    color: #607587;
}

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

.print-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(19, 89, 145, 0.08);
}

.print-feature__media {
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, #eff8ff, #d8f0ff);
}

.print-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.print-feature__body {
    padding: 1.4rem;
}

.print-feature__body span {
    display: inline-block;
    margin-bottom: 0.3rem;
    color: #1577bb;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.print-feature__body h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.print-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(19, 89, 145, 0.08);
    break-inside: auto;
}

.print-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #eff8ff, #d8f0ff);
}

.print-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.print-card__body {
    padding: 1rem;
}

.print-card__body span {
    display: inline-block;
    margin-bottom: 0.3rem;
    color: #1577bb;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-product-card,
    .catalog-product-card--wide {
        grid-column: span 1;
    }

    .print-overview,
    .print-feature,
    .print-grid,
    .print-section__header {
        grid-template-columns: 1fr;
    }

    .print-cover__meta {
        grid-template-columns: 1fr;
    }

    .premium-pagehead__grid--brochure {
        grid-template-columns: 1fr;
    }

    .catalog-brochure-meta {
        justify-self: start;
        width: 100%;
    }
}

@media (max-width: 780px) {
    .print-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-product-grid,
    .print-grid {
        grid-template-columns: 1fr;
    }

    .footer-meta {
        text-align: left;
    }

    .premium-pagehead--contact > .container,
    .contact-grid--public {
        width: min(100vw - 32px, 1100px);
    }

    .catalog-brochure-cover__topline {
        flex-direction: column;
        align-items: start;
    }
}

@page {
    size: A4 portrait;
    margin: 10mm;
}

@media print {

    .print-toolbar {
        display: none;
    }

    .print-shell {
        background: #fff;
    }

    .print-catalog {
        max-width: none;
        padding: 0;
        display: grid;
        gap: 8mm;
    }

    .print-cover {
        box-shadow: none;
        page-break-after: always;
        break-after: page;
    }

    .print-overview {
        page-break-after: always;
        break-after: page;
    }

    .print-section {
        margin-top: 0;
        display: grid;
        gap: 6mm;
    }

    .print-feature,
    .print-card {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .print-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5mm;
        align-items: start;
    }

    .print-card__media {
        aspect-ratio: 4 / 2.8;
    }

    .print-card__body {
        padding: 4mm;
    }

    .print-card__body h3 {
        font-size: 1rem;
        line-height: 1.15;
    }

    .print-card__body p {
        margin: 0;
        font-size: 0.77rem;
        line-height: 1.35;
    }

    .print-feature__body h3 {
        font-size: 1.45rem;
    }

    .print-feature__body p,
    .print-section__header p,
    .print-overview__intro p,
    .print-overview__item p {
        font-size: 0.86rem;
        line-height: 1.4;
    }
}

/* Top cart order layout */
.order-workspace {
    display: grid;
    gap: 1.2rem;
}

.cart-topbar {
    position: sticky;
    top: 86px;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 126, 214, 0.1);
    box-shadow: 0 14px 34px rgba(18, 49, 76, 0.08);
}

.cart-topbar__summary strong {
    display: block;
    margin-top: 0.1rem;
    color: #12314c;
    font-size: 1.05rem;
}

.cart-toggle-button,
.cart-close-button {
    border: 0;
    cursor: pointer;
}

.cart-toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1da2e3, #155ea0);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(21, 94, 160, 0.2);
}

.cart-toggle-button b {
    min-width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.95rem;
}

.cart-drawer {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(241,249,255,0.96));
    border: 1px solid rgba(28, 126, 214, 0.1);
    box-shadow: 0 18px 40px rgba(18, 49, 76, 0.08);
}

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.cart-close-button {
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: #eaf6ff;
    color: #145891;
    font-weight: 800;
}

.order-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.order-items {
    max-height: 260px;
}

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

.order-panel {
    display: none;
}

@media (max-width: 780px) {
    .cart-topbar,
    .cart-drawer__header {
        flex-direction: column;
        align-items: stretch;
    }

    .order-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-hero::before,
    .premium-hero::after,
    .hero-fish-stage,
    .hero-ocean-wave,
    .hero-stage-glow,
    .hero-stage-ribbon,
    .hero-stage-bubble,
    .hero-fish-visual,
    .hero-floating-card,
    .about-hero__orbit::before,
    .about-hero__orbit-item {
        animation: none !important;
        transform: none !important;
        filter: none !important;
    }
}

@media (max-width: 780px) {
    .public-shell .site-header .main-nav.is-open {
        z-index: 30;
        background: rgba(8, 23, 38, 0.98);
        border: 1px solid rgba(136, 214, 255, 0.12);
    }

    .public-shell .site-header .main-nav.is-open a {
        color: rgba(244, 250, 255, 0.94);
    }

    .public-shell .site-header .main-nav.is-open a.active,
    .public-shell .site-header .main-nav.is-open a:hover {
        background: rgba(29, 162, 227, 0.18);
        color: #ffffff;
    }
}
