:root {
    --bg: #f6f1ea;
    --surface: #ffffff;
    --ink: #1d2b2f;
    --muted: #6b6b6b;
    --primary: #2f5f63;
    --secondary: #cc6b2c;
    --accent: #7f3b2e;
    --border: #e0d7ce;
    --shadow: 0 10px 30px rgba(30, 32, 34, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Candara", "Optima", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #fff9f2 0%, var(--bg) 55%, #efe6dc 100%);
}

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

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.brand-title {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--muted);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 14px;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.site-nav a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f2f7f6;
}

.main-content {
    padding: 32px 0 48px;
}

.site-footer {
    padding: 18px 0 32px;
    color: var(--muted);
    font-size: 13px;
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.page-header h1 {
    margin: 0 0 6px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 28px;
}

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

.header-actions {
    display: flex;
    gap: 10px;
}

.button {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
}

.button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.button.primary {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.button.primary:hover {
    filter: brightness(1.05);
}

.button.ghost {
    background: transparent;
}

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert.success {
    background: #e7f6ef;
    border: 1px solid #bfe6d0;
}

.alert.error {
    background: #fde7e7;
    border: 1px solid #f3b1b1;
}

.alert ul {
    margin: 8px 0 0 18px;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid.cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 28px;
}

.grid.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.panel {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card.accent {
    background: linear-gradient(135deg, #ffe6d5, #fff5ec);
}

.card-title {
    font-size: 14px;
    color: var(--muted);
}

.card-value {
    font-size: 26px;
    margin: 8px 0;
    font-weight: 700;
}

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

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

.action-list a {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8f2ea;
    border: 1px solid transparent;
}

.action-list a:hover {
    border-color: var(--secondary);
}

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

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

input,
select,
textarea {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(47, 95, 99, 0.2);
    border-color: var(--primary);
}

.form-actions {
    display: flex;
    gap: 12px;
}

.logo-preview img {
    max-width: 180px;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 6px;
    background: #fff;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.table-wrapper {
    overflow-x: auto;
    background: var(--surface);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

th,
td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

th {
    color: var(--muted);
    font-weight: 600;
}

tr.low-stock {
    background: #fff6e6;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.link-button {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 0;
}

.empty {
    text-align: center;
    color: var(--muted);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.detail-grid .label {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

.detail-notes {
    margin-top: 18px;
}

.list {
    padding-left: 18px;
    color: var(--muted);
}

.pos-picker {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.cart-table input {
    width: 80px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal.open {
    display: grid;
}

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

.modal-panel {
    position: relative;
    background: var(--surface);
    border-radius: 18px;
    padding: 20px;
    width: min(1400px, 96vw);
    box-shadow: var(--shadow);
    z-index: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.2s ease;
    z-index: 60;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: #c43d3d;
}

.loader {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(246, 241, 234, 0.6);
    z-index: 70;
}

.loader.show {
    display: flex;
}

.spinner {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid rgba(47, 95, 99, 0.2);
    border-top-color: var(--secondary);
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body.landing {
    position: relative;
    overflow-x: hidden;
    color: #18262f;
    font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 12% -4%, rgba(117, 199, 255, 0.28) 0%, rgba(117, 199, 255, 0) 42%),
        radial-gradient(circle at 88% 0%, rgba(255, 161, 123, 0.22) 0%, rgba(255, 161, 123, 0) 44%),
        linear-gradient(162deg, #eef4fb 0%, #f7f2ea 46%, #ece9df 100%);
}

body.landing::before,
body.landing::after {
    content: "";
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(54, 125, 173, 0.24), rgba(54, 125, 173, 0));
    z-index: -1;
    filter: blur(10px);
    pointer-events: none;
}

body.landing::before {
    top: -220px;
    left: -180px;
}

body.landing::after {
    bottom: -280px;
    right: -160px;
    background: radial-gradient(circle, rgba(255, 141, 94, 0.24), rgba(255, 141, 94, 0));
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(242, 246, 251, 0.76);
    border-bottom: 1px solid rgba(73, 103, 128, 0.2);
    backdrop-filter: blur(12px);
}

.landing-header .header-inner {
    padding: 14px 0;
}

.landing-header .brand {
    gap: 12px;
}

.landing-header .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(140deg, #1f5c72, #ff8e5e);
    box-shadow: 0 10px 24px rgba(20, 69, 95, 0.3);
}

.landing-header .brand-title {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 19px;
    letter-spacing: 0.3px;
}

.landing-header .brand-subtitle {
    color: #596a76;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.landing-nav {
    gap: 10px;
    align-items: center;
}

.landing-nav a {
    border: 1px solid transparent;
    color: #1a2e3b;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.2px;
    background: transparent;
    transition: all 0.22s ease;
}

.landing-nav a:hover {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(58, 104, 136, 0.32);
    color: #0f5065;
}

.landing-nav a.button {
    padding: 9px 16px;
    font-weight: 600;
    border-color: transparent;
}

.landing-nav a.button:hover {
    border-color: transparent;
    color: #fff;
    filter: brightness(1.05);
}

.landing-content {
    padding-top: 70px;
    padding-bottom: 58px;
}

.hero-split {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
    padding-bottom: 28px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: #708696;
    margin: 0 0 12px;
}

.hero-copy {
    max-width: 560px;
    animation: fadeUp 0.75s ease both;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(53, 104, 134, 0.34);
    background: rgba(255, 255, 255, 0.58);
    color: #225a73;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.hero-title {
    margin: 0 0 12px;
    line-height: 1.05;
    font-size: clamp(36px, 5.2vw, 64px);
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: #123446;
    max-width: 11ch;
    text-wrap: balance;
}

.hero-title::after {
    content: "";
    display: block;
    width: 104px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1f657f, #ff9166);
    margin-top: 13px;
}

.hero-lead {
    max-width: 58ch;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 24px;
    color: #415360;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-note {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(86, 118, 142, 0.22);
    font-size: 13px;
    max-width: 480px;
}

.note-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    color: #6a7e8d;
}

.hero-stats {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    padding: 12px 12px 13px;
    border-radius: 14px;
    border: 1px solid rgba(86, 118, 142, 0.22);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 255, 0.62));
    min-height: 76px;
}

.stat-card strong {
    display: block;
    margin-top: 4px;
    color: #183548;
    font-size: 14px;
    line-height: 1.35;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #678090;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    padding: 24px;
    border: 1px solid rgba(87, 120, 142, 0.2);
    box-shadow: 0 24px 50px rgba(31, 68, 94, 0.14);
    backdrop-filter: blur(6px);
    animation: fadeUp 0.9s ease both;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -2px -2px auto auto;
    width: 140px;
    height: 140px;
    border-radius: 32px;
    background: radial-gradient(circle, rgba(110, 174, 219, 0.32), rgba(110, 174, 219, 0));
    pointer-events: none;
}

.hero-card-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.hero-logo {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(150deg, #edf5fb, #ffffff);
    border: 1px solid rgba(84, 123, 148, 0.24);
    display: grid;
    place-items: center;
    overflow: hidden;
}

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

.logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1f607a, #ff9162);
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 12px 20px rgba(21, 72, 99, 0.22);
}

.hero-card-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #11374a;
}

.hero-card-subtitle {
    font-size: 13px;
    color: #637988;
}

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

.hero-list-item {
    display: grid;
    gap: 4px;
    padding: 11px 13px;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(247, 252, 255, 0.82), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(95, 132, 156, 0.16);
    font-size: 14px;
}

.hero-list-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #698091;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    justify-content: flex-start;
    margin: 28px 0 0;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(90, 130, 156, 0.22);
    font-size: 12px;
    color: #556a79;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeUp 0.7s ease both;
}

.about-split {
    margin-top: 52px;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(280px, 1.04fr) minmax(280px, 0.96fr);
    align-items: center;
}

.about-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.2vw, 40px);
    color: #123a4e;
    line-height: 1.15;
    max-width: 20ch;
}

.about-card-block {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 22px 44px rgba(31, 68, 94, 0.12);
    border: 1px solid rgba(84, 124, 150, 0.2);
    backdrop-filter: blur(5px);
}

.about-card-block .muted {
    color: #455867;
    line-height: 1.8;
    max-width: 60ch;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.about-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(245, 251, 255, 0.9);
    border: 1px solid rgba(84, 123, 148, 0.24);
    font-size: 12px;
    color: #31556b;
}

.about-points {
    display: grid;
    gap: 16px;
}

.point-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #678090;
}

.about-points p {
    margin: 6px 0 0;
    color: #495f6f;
    line-height: 1.65;
}

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

.about-photo {
    position: relative;
    min-height: 240px;
    border-radius: 26px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(135deg, #164f68, #4f8fb5 52%, #ff9d71);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 42px rgba(21, 66, 90, 0.24);
    overflow: hidden;
}

.about-photo::before {
    content: "";
    position: absolute;
    inset: -36% auto auto 52%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    filter: blur(2px);
}

.photo-label {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    opacity: 0.88;
}

.photo-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    max-width: 18ch;
    line-height: 1.35;
}

.about-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 32px rgba(20, 63, 87, 0.14);
    border: 1px solid rgba(92, 130, 154, 0.2);
}

.about-card h3 {
    margin: 10px 0 6px;
    color: #173c50;
}

.about-card p {
    margin: 0;
    color: #4e6474;
    font-size: 14px;
    line-height: 1.62;
}

.chip {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    color: #1f5f7d;
    border: 1px solid rgba(68, 118, 151, 0.28);
    background: rgba(242, 250, 255, 0.82);
}

.value-section {
    margin-top: 54px;
}

.landing-section-header .muted {
    color: #516675;
}

.landing-section-header h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    color: #123a4e;
    max-width: 20ch;
}

.value-grid {
    margin-top: 22px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.value-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    box-shadow: 0 15px 34px rgba(24, 63, 88, 0.12);
    border: 1px solid rgba(88, 126, 151, 0.2);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(20, 63, 87, 0.18);
}

.value-card h3 {
    margin: 0 0 6px;
    color: #153b4e;
}

.value-card p {
    margin: 0;
    color: #4d6372;
    font-size: 14px;
    line-height: 1.62;
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, #e7f4fc, #f9fdff);
    color: #1e6786;
    border: 1px solid rgba(95, 136, 162, 0.24);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.contact-banner {
    position: relative;
    margin: 56px 0 30px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0e425a, #2f6c88 58%, #ff9262);
    color: #fff;
    display: grid;
    gap: 18px;
    box-shadow: 0 22px 42px rgba(17, 59, 82, 0.28);
    overflow: hidden;
}

.contact-banner::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -76px;
    right: -72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.contact-banner p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-banner .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.contact-banner h2 {
    margin: 0 0 8px;
    max-width: 20ch;
    line-height: 1.2;
}

.contact-grid {
    position: relative;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid > div {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.09);
}

.contact-grid .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.catalog-highlight {
    margin-top: 44px;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
}

.catalog-highlight-copy {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(90, 126, 151, 0.2);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 40px rgba(28, 70, 96, 0.12);
}

.catalog-highlight-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.3vw, 38px);
    line-height: 1.16;
    color: #133d52;
    max-width: 18ch;
}

.catalog-highlight-copy .button {
    margin-top: 14px;
}

.catalog-highlight-cards {
    display: grid;
    gap: 14px;
}

.catalog-highlight-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(92, 131, 154, 0.2);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(26, 62, 83, 0.1);
}

.catalog-highlight-card h3 {
    margin: 10px 0 5px;
    color: #173f54;
}

.catalog-highlight-card p {
    margin: 0;
    color: #516675;
    font-size: 14px;
    line-height: 1.58;
}

.catalog-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #1e6786;
    border: 1px solid rgba(90, 131, 156, 0.24);
    background: linear-gradient(150deg, #e8f5fd, #ffffff);
}

.catalog-highlight-icon svg {
    width: 22px;
    height: 22px;
}

.catalog-hero {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(280px, 1.1fr) minmax(250px, 0.9fr);
    align-items: center;
    margin-bottom: 16px;
}

.catalog-hero-copy {
    max-width: 620px;
    animation: fadeUp 0.7s ease both;
}

.catalog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(78, 122, 150, 0.3);
    background: rgba(255, 255, 255, 0.72);
    color: #1f5f7b;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.catalog-kicker svg {
    width: 15px;
    height: 15px;
}

.catalog-hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(36px, 5.5vw, 58px);
    line-height: 1.04;
    color: #14384b;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    max-width: 16ch;
    text-wrap: balance;
}

.catalog-hero-copy p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.75;
    color: #47606f;
}

.catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

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

.catalog-stat-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(88, 127, 151, 0.2);
    background: rgba(255, 255, 255, 0.75);
}

.catalog-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #206886;
    border: 1px solid rgba(95, 132, 154, 0.24);
    background: linear-gradient(155deg, #ebf6fd, #fefefe);
}

.catalog-stat-icon svg {
    width: 19px;
    height: 19px;
}

.catalog-stat-card span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6a8192;
}

.catalog-stat-card strong {
    display: block;
    margin-top: 2px;
    color: #133749;
    font-size: 18px;
}

.catalog-hero-visual {
    position: relative;
    min-height: 320px;
    border-radius: 30px;
    border: 1px solid rgba(86, 126, 152, 0.22);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(240, 250, 255, 0.74));
    box-shadow: 0 24px 50px rgba(25, 63, 86, 0.14);
    overflow: hidden;
    animation: fadeUp 0.85s ease both;
}

.catalog-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.orb-one {
    width: 180px;
    height: 180px;
    top: -32px;
    right: -26px;
    background: rgba(111, 181, 221, 0.34);
}

.orb-two {
    width: 160px;
    height: 160px;
    left: -24px;
    bottom: -28px;
    background: rgba(255, 157, 120, 0.3);
}

.orb-three {
    width: 120px;
    height: 120px;
    top: 120px;
    left: 40%;
    background: rgba(126, 188, 143, 0.24);
}

.catalog-icon-tile {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 14px;
    border: 1px solid rgba(90, 131, 154, 0.24);
    background: rgba(255, 255, 255, 0.8);
    color: #1e5f7b;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(28, 62, 80, 0.12);
}

.catalog-icon-tile svg {
    width: 18px;
    height: 18px;
}

.catalog-icon-tile:nth-of-type(4) {
    top: 52px;
    left: 36px;
}

.catalog-icon-tile:nth-of-type(5) {
    top: 138px;
    right: 38px;
}

.catalog-icon-tile:nth-of-type(6) {
    bottom: 48px;
    left: 70px;
}

.catalog-filter-wrap {
    margin-top: 22px;
}

.catalog-filter {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.52fr) auto;
    align-items: end;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(88, 126, 150, 0.2);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 16px 34px rgba(25, 62, 84, 0.1);
}

.catalog-input-group {
    display: grid;
    gap: 7px;
}

.catalog-input-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #647e8f;
}

.catalog-input {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(91, 127, 151, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 12px;
    min-height: 44px;
}

.catalog-input svg {
    width: 16px;
    height: 16px;
    color: #648092;
    flex-shrink: 0;
}

.catalog-input input,
.catalog-input select {
    border: none;
    background: transparent;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    color: #243e4f;
}

.catalog-input input:focus,
.catalog-input select:focus {
    outline: none;
}

.catalog-filter-actions {
    display: flex;
    gap: 10px;
}

.catalog-grid-section {
    margin-top: 26px;
}

.catalog-grid-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.catalog-grid-head h2 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 36px);
    color: #133c51;
}

.catalog-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(88, 126, 151, 0.22);
    color: #36596d;
    font-size: 13px;
}

.catalog-result svg {
    width: 15px;
    height: 15px;
}

.catalog-grid {
    margin-top: 16px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.catalog-card {
    border-radius: 20px;
    border: 1px solid rgba(84, 124, 149, 0.2);
    background: rgba(255, 255, 255, 0.8);
    padding: 14px;
    box-shadow: 0 15px 34px rgba(23, 59, 80, 0.11);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px rgba(24, 60, 82, 0.18);
}

.catalog-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.catalog-product-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(97, 136, 161, 0.24);
    color: #1d5e7a;
}

.catalog-product-icon svg {
    width: 24px;
    height: 24px;
}

.icon-drink {
    background: linear-gradient(150deg, #ddf2ff, #f5fbff);
}

.icon-snack {
    background: linear-gradient(150deg, #ffe8d8, #fff7f0);
}

.icon-fresh {
    background: linear-gradient(150deg, #e5f7e8, #f7fff8);
}

.icon-beauty {
    background: linear-gradient(150deg, #ffe9ef, #fff8fb);
}

.icon-clean {
    background: linear-gradient(150deg, #e9f1ff, #f8fbff);
}

.icon-tool {
    background: linear-gradient(150deg, #eceef4, #fbfcff);
}

.icon-box {
    background: linear-gradient(150deg, #eef4fb, #fbfdff);
}

.catalog-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.catalog-stock-badge svg {
    width: 13px;
    height: 13px;
}

.status-ready .catalog-stock-badge {
    background: #e7f9ef;
    color: #1f7a4f;
    border-color: #c8ecd8;
}

.status-low .catalog-stock-badge {
    background: #fff5df;
    color: #93621a;
    border-color: #efd8a8;
}

.status-sold_out .catalog-stock-badge {
    background: #fdebec;
    color: #a34040;
    border-color: #f0bfbe;
}

.catalog-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #173d51;
}

.catalog-meta-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-meta-list span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6d8494;
}

.catalog-meta-list strong {
    display: block;
    margin-top: 2px;
    color: #17384a;
    font-size: 13px;
    line-height: 1.4;
}

.catalog-empty {
    margin-top: 16px;
    padding: 24px;
    border-radius: 22px;
    border: 1px dashed rgba(95, 132, 154, 0.32);
    text-align: center;
    background: rgba(255, 255, 255, 0.74);
}

.catalog-empty h3 {
    margin: 12px 0 6px;
    color: #173d50;
}

.catalog-empty p {
    margin: 0;
    color: #577080;
}

.catalog-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #edf5fb;
    color: #245f7b;
    border: 1px solid rgba(88, 129, 154, 0.25);
}

.catalog-empty-icon svg {
    width: 26px;
    height: 26px;
}

.catalog-pagination {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.page-item {
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    border: 1px solid rgba(87, 126, 151, 0.28);
    background: rgba(255, 255, 255, 0.85);
    color: #2c4e63;
}

.page-item.active {
    background: linear-gradient(135deg, #1f607b, #ff9262);
    color: #fff;
    border-color: transparent;
}

.page-item.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.catalog-contact {
    margin-top: 34px;
    border-radius: 28px;
    background: linear-gradient(136deg, #103f54, #2d6c88 55%, #ff9464);
    color: #fff;
    padding: 24px;
    display: grid;
    gap: 14px;
    box-shadow: 0 24px 46px rgba(19, 57, 79, 0.28);
}

.catalog-contact h2 {
    margin: 0 0 6px;
    max-width: 19ch;
    line-height: 1.2;
}

.catalog-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.catalog-contact .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.catalog-contact-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.catalog-contact-grid > div {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    display: grid;
    gap: 6px;
}

.catalog-contact-grid svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.catalog-contact-grid span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.catalog-contact-grid strong {
    font-size: 14px;
    line-height: 1.5;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy,
    .hero-card,
    .logo-pill,
    .value-card {
        animation: none;
        transition: none;
    }
}

@media (max-width: 1080px) {
    .hero-split,
    .about-split,
    .catalog-highlight,
    .catalog-hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: none;
    }
}

@media (max-width: 980px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .catalog-filter-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .hero-card {
        order: 2;
    }
}

@media (max-width: 620px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: clamp(32px, 11vw, 44px);
    }

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

    .catalog-hero-copy h1 {
        font-size: clamp(30px, 10vw, 42px);
    }

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

    .catalog-contact {
        padding: 18px;
    }
}

@media (max-width: 840px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        justify-content: flex-start;
    }

    table {
        min-width: 520px;
    }

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