:root {
    --blue-950: #10233e;
    --blue-900: #173a68;
    --blue-700: #24548f;
    --blue-500: #3d79c4;
    --blue-100: #eef5fd;
    --lime-500: #9ef01a;
    --lime-400: #b8ff4f;
    --orange-500: #ff8b1f;
    --orange-600: #f97316;
    --ink-900: #162231;
    --ink-700: #526276;
    --ink-500: #708196;
    --ink-300: #d8e1ea;
    --surface: #ffffff;
    --surface-alt: #f7fafc;
    --bg: #f3f7fb;
    --success: #dff7d1;
    --danger: #ffe0e0;
    --shadow: 0 28px 68px rgba(16, 35, 62, 0.08);
    --shadow-soft: 0 14px 38px rgba(16, 35, 62, 0.055);
    --shadow-tiny: 0 6px 18px rgba(16, 35, 62, 0.04);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(61, 121, 196, 0.06), transparent 18%),
        radial-gradient(circle at top left, rgba(255, 139, 31, 0.04), transparent 16%),
        linear-gradient(180deg, #fbfdff 0%, #f4f8fc 48%, #edf3f9 100%);
    color: var(--ink-900);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

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

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

.required-mark {
    color: #dc2626;
    font-weight: 700;
}

.form-note {
    margin: -2px 0 14px;
    color: var(--ink-700);
    font-size: 0.92rem;
}

.field-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.field-required,
.field-optional {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.field-required {
    color: #b91c1c;
}

.field-optional {
    color: var(--ink-500);
}

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

.top-shell {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(135%);
    border-bottom: 1px solid rgba(23, 58, 104, 0.06);
    box-shadow: 0 10px 30px rgba(16, 35, 62, 0.05);
    position: sticky;
    top: 0;
    z-index: 80;
}

.topbar,
.menu-row,
.footer-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar {
    padding: 20px 0 12px;
    gap: 18px;
}

.logo {
    min-width: 256px;
    width: clamp(256px, 18.25vw, 308px);
    padding: 2px 0;
    color: var(--blue-950);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo::after {
    content: none;
}

.logo img {
    width: 97%;
    max-width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo::before {
    content: none;
}

.searchbar {
    display: flex;
    flex: 1;
    gap: 0;
    border: 1px solid rgba(23, 58, 104, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-tiny);
}

.searchbar-shell {
    position: relative;
    flex: 1;
    min-width: 320px;
    z-index: 82;
}

.searchbar-shell .searchbar {
    position: relative;
    z-index: 2;
}

.searchbar input,
.searchbar button,
.menu-pill,
.btn-outline,
.btn-accent,
button,
input,
textarea,
select {
    font: inherit;
}

.searchbar input {
    flex: 1;
    border: 0;
    padding: 16px 18px;
    color: var(--ink-900);
    background: transparent;
}

.searchbar button,
.btn-outline,
.btn-accent,
button.primary {
    border: 0;
    cursor: pointer;
}

.searchbar button {
    background: var(--blue-900);
    color: #fff;
    padding: 0 28px;
    font-weight: 600;
    transition: background 160ms ease, transform 160ms ease;
}

.searchbar button:hover {
    background: #1f487f;
}

.search-suggest-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(980px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(320px, 1fr);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(23, 58, 104, 0.1);
    border-radius: 24px;
    box-shadow: 0 26px 68px rgba(16, 35, 62, 0.16);
    overflow: hidden;
}

.search-suggest-panel[hidden] {
    display: none !important;
}

.search-suggest-list-wrap,
.search-suggest-preview {
    min-width: 0;
}

.search-suggest-list-wrap {
    border-right: 1px solid rgba(23, 58, 104, 0.08);
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(245, 248, 253, 0.94));
}

.search-suggest-title {
    padding: 18px 20px 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink-900);
}

.search-suggest-list {
    display: grid;
    padding: 0 0 10px;
}

.search-suggest-item,
.search-suggest-empty {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
}

.search-suggest-item {
    color: var(--blue-900);
    transition: background 160ms ease, color 160ms ease;
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
    background: rgba(36, 84, 143, 0.11);
}

.search-suggest-item-part {
    font-weight: 700;
}

.search-suggest-item-brand {
    color: var(--orange-600);
}

.search-suggest-empty {
    color: var(--ink-700);
}

.search-suggest-preview {
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
}

.search-suggest-preview-placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    border: 1px dashed rgba(23, 58, 104, 0.12);
    border-radius: 20px;
    color: var(--ink-500);
    text-align: center;
    padding: 20px;
}

.search-suggest-preview-card {
    display: grid;
    gap: 14px;
}

.search-suggest-preview-head {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(23, 58, 104, 0.08);
}

.search-suggest-preview-body {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.search-suggest-preview-media {
    width: 132px;
    height: 132px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(23, 58, 104, 0.06);
    background: linear-gradient(180deg, #fbfdff, #f1f6fc);
    display: grid;
    place-items: center;
}

.search-suggest-preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.search-suggest-preview-fallback {
    padding: 14px;
    text-align: center;
    color: var(--blue-900);
    font-weight: 700;
}

.search-suggest-preview-content {
    min-width: 0;
}

.search-suggest-preview-part,
.search-suggest-preview-name {
    display: block;
    color: var(--blue-900);
    font-weight: 800;
    line-height: 1.3;
}

.search-suggest-preview-part {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.search-suggest-preview-name {
    font-size: 1.04rem;
    margin-bottom: 10px;
}

.search-suggest-preview-brand,
.search-suggest-preview-meta,
.search-suggest-preview-summary {
    color: var(--ink-700);
}

.search-suggest-preview-meta + .search-suggest-preview-meta {
    margin-top: 4px;
}

.search-suggest-preview-summary {
    margin: 14px 0 0;
    line-height: 1.6;
}

.search-suggest-preview-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.search-suggest-qty-field {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: #fff5cf;
    color: var(--ink-900);
    font-weight: 700;
    border: 1px solid rgba(255, 139, 31, 0.22);
}

.search-suggest-qty-field span {
    white-space: nowrap;
}

.search-suggest-qty-input {
    width: 82px;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(23, 58, 104, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink-900);
    font-weight: 700;
}

.search-suggest-cart-btn {
    min-height: 44px;
}

.utility-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex: 0 0 auto;
}

.utility-mobile-bar {
    display: contents;
}

.utility-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(23, 58, 104, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-900);
    font-weight: 700;
    box-shadow: var(--shadow-tiny);
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.utility-toggle-lines {
    display: inline-grid;
    gap: 5px;
}

.utility-toggle-lines span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.utility-nav-panel {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-nav-panel[hidden] {
    display: none !important;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.utility-cart-group,
.utility-main-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-main-group {
    position: relative;
    padding-left: 18px;
    margin-left: 4px;
}

.utility-main-group::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 26px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent, rgba(23, 58, 104, 0.16), transparent);
}

.utility-nav a {
    font-weight: 600;
    color: var(--ink-900);
    transition: color 160ms ease, opacity 160ms ease;
}

.utility-nav a:hover {
    color: var(--blue-900);
}

.utility-nav .account-link {
    color: var(--ink-900);
}

.utility-nav .cart-link {
    position: relative;
    display: inline-grid;
    justify-items: center;
    gap: 4px;
    padding: 4px 8px 2px;
    color: var(--blue-900);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    transition: transform 160ms ease, opacity 160ms ease;
}

.utility-nav .cart-link:hover {
    transform: translateY(-1px);
}

.cart-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 30px;
    color: #1f57a6;
}

.cart-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.cart-label {
    font-size: 0.92rem;
    color: var(--blue-900);
    letter-spacing: -0.01em;
}

.btn-outline,
.btn-accent {
    padding: 13px 20px;
    border-radius: 16px;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-outline {
    background: rgba(240, 245, 251, 0.9);
    color: var(--blue-900);
    border: 1px solid rgba(23, 58, 104, 0.08);
}

.btn-accent {
    background: linear-gradient(135deg, #d86a23, #f08a2b);
    color: #fff7ef;
    box-shadow: 0 12px 26px rgba(216, 106, 35, 0.24);
}

.btn-outline:hover,
.btn-accent:hover {
    transform: translateY(-1px);
}

.btn-outline:hover {
    background: #fff;
    box-shadow: var(--shadow-tiny);
}

.badge {
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e11d2e;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(225, 29, 46, 0.24);
}

.lang-switcher {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-left: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    color: var(--blue-900);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.2;
}

.lang-pill::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1.5px solid rgba(23, 58, 104, 0.32);
    background: #fff;
    box-shadow: inset 0 0 0 3px transparent;
}

.lang-pill.is-active {
    color: var(--blue-900);
    box-shadow: none;
}

.lang-pill.is-active::before {
    border-color: var(--blue-700);
    box-shadow: inset 0 0 0 3px var(--blue-700);
}

.menu-row {
    padding: 2px 0 18px;
    overflow-x: auto;
}

.menu-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(23, 58, 104, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
    color: var(--ink-700);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
    transition: all 160ms ease;
}

.menu-pill.active {
    background: var(--blue-900);
    border-color: transparent;
    color: #fff;
}

.menu-pill:hover {
    border-color: rgba(23, 58, 104, 0.16);
    color: var(--blue-900);
}

.page-shell {
    padding: 28px 0 48px;
}

.notice-board {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
    padding: 20px 22px;
    border: 1px solid rgba(23, 58, 104, 0.05);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.notice-item {
    color: var(--ink-900);
    font-weight: 600;
    position: relative;
    padding-left: 18px;
}

.notice-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--lime-500);
}

.hero-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    overflow: visible;
}

.hero-slider {
    position: relative;
    z-index: 1;
    min-height: 470px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(23, 58, 104, 0.07);
    box-shadow: var(--shadow-soft);
    background: #dfe8f1;
}

.hero-slider-track {
    position: relative;
    min-height: 470px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-slide-media-fallback {
    background:
        radial-gradient(circle at 18% 24%, rgba(61, 121, 196, 0.34), transparent 28%),
        linear-gradient(135deg, #284f82, #10233e 74%);
}

.category-panel,
.hero-banner,
.content-card,
.support-card,
.admin-card,
.admin-table-wrap {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 58, 104, 0.055);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.category-panel h2,
.support-card h3,
.admin-card h3,
.content-card h3 {
    margin: 0;
}

.category-panel h2 {
    padding: 18px 20px;
    background: rgba(247, 250, 252, 0.82);
    color: var(--ink-900);
    border-bottom: 1px solid rgba(23, 58, 104, 0.055);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.category-panel {
    position: relative;
    z-index: 10;
}

.category-list {
    position: relative;
}

.category-list .category-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid #eef3f7;
    color: var(--ink-900);
    font-weight: 600;
    background: #fff;
    position: relative;
}

.category-list .category-link:hover {
    background: #f7fafc;
}

.category-link.is-active {
    background: #eef5fd;
    color: var(--blue-900);
}

.category-node {
    display: block;
    position: relative;
}

.category-toggle {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(36, 84, 143, 0.08);
    color: var(--blue-900);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.category-toggle span {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 160ms ease;
}

.category-children {
    position: absolute;
    top: -1px;
    left: calc(100% - 6px);
    min-width: 250px;
    background: #fff;
    border: 1px solid rgba(23, 58, 104, 0.1);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(16, 35, 62, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 20;
}

.category-node:hover > .category-children,
.category-node:focus-within > .category-children {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.category-link.depth-1,
.category-link.depth-2,
.category-link.depth-3,
.category-link.depth-4,
.category-link.depth-5 {
    padding-left: 18px;
    font-weight: 600;
    font-size: 0.96rem;
}

.category-node.depth-0 > .category-link,
.category-list > .category-link {
    border-top: 1px solid #eef3f7;
}

.category-link.has-children span:last-child {
    color: var(--blue-700);
}

@media (max-width: 960px) {
    .category-node.has-children > .category-link {
        padding-right: 62px;
    }

    .category-toggle {
        display: inline-flex;
    }

    .category-children {
        position: static;
        min-width: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        background: #f8fbfe;
        max-height: 0;
        overflow: hidden;
        transition: max-height 180ms ease, opacity 160ms ease, visibility 160ms ease;
    }

    .category-node.is-open > .category-children {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 1600px;
    }

    .category-node.is-open > .category-toggle span {
        transform: rotate(90deg);
    }

    .category-link.depth-1,
    .category-link.depth-2,
    .category-link.depth-3,
    .category-link.depth-4,
    .category-link.depth-5 {
        padding-left: 34px;
    }
}

.hero-banner {
    min-height: 470px;
    padding: 42px;
    background:
        radial-gradient(circle at 18% 24%, rgba(61, 121, 196, 0.34), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(158, 240, 26, 0.12), transparent 18%),
        linear-gradient(135deg, #284f82, #10233e 74%);
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner-dynamic {
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 139, 31, 0.22), transparent 62%);
    pointer-events: none;
}

.hero-actions {
    justify-content: center;
    margin-top: 24px;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--blue-950);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.hero-slider-prev {
    left: 18px;
}

.hero-slider-next {
    right: 18px;
}

.hero-slider-dots {
    position: absolute;
    inset: auto 0 18px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    padding: 0;
}

.hero-slider-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.hero-banner h1 {
    margin: 0 0 12px;
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-banner p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.content-grid,
.support-grid,
.admin-stats {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

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

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

.content-card {
    padding: 24px;
}

.product-card {
    display: grid;
    gap: 14px;
}

.product-thumb {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    border: 1px solid rgba(23, 58, 104, 0.05);
    background: linear-gradient(180deg, #fbfdff, #f3f7fc);
    display: grid;
    place-items: center;
    color: var(--blue-900);
    font-weight: 700;
    overflow: hidden;
}

.product-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 16px;
}

.product-thumb-image-large {
    padding: 20px;
}

.product-thumb-link {
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-thumb-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 58, 104, 0.12);
    border-color: rgba(23, 58, 104, 0.14);
}

.product-meta {
    display: grid;
    gap: 8px;
}

.product-meta h3 {
    margin: 0;
}

.product-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.product-title-link:hover {
    color: var(--orange-600);
}

.eyebrow {
    color: var(--ink-500);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price {
    color: var(--orange-600);
    font-weight: 800;
    font-size: 1.15rem;
}

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

.actions form {
    margin: 0;
    display: inline-flex;
}

.actions a,
.actions button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 14px;
    background: var(--blue-900);
    color: #fff;
    border: 0;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.actions a:hover,
.actions button:hover,
.button-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(23, 58, 104, 0.14);
}

.actions .secondary {
    background: rgba(247, 250, 252, 0.9);
    color: var(--ink-900);
    border: 1px solid rgba(23, 58, 104, 0.08);
}

.cart-remove-link {
    gap: 8px;
    white-space: nowrap;
}

.cart-remove-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

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

.support-card,
.admin-card {
    padding: 26px;
}

.admin-stat-card {
    display: grid;
    gap: 8px;
    align-content: start;
}

.admin-stat-card h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
}

.admin-stat-card p {
    margin: 0;
    color: var(--ink-700);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.dashboard-section-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-section-head p {
    margin: 6px 0 0;
    color: var(--ink-700);
}

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

.dashboard-item {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(23, 58, 104, 0.07);
    background: rgba(251, 253, 255, 0.9);
}

.dashboard-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.dashboard-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: var(--ink-700);
    font-size: 0.94rem;
    margin-bottom: 12px;
}

.dashboard-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-summary-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(247, 250, 252, 0.84);
    border: 1px solid rgba(23, 58, 104, 0.06);
    display: grid;
    gap: 6px;
}

.dashboard-summary-item span {
    color: var(--ink-700);
    font-size: 0.92rem;
}

.dashboard-summary-item strong {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.site-footer {
    margin-top: 34px;
    padding: 38px 0 32px;
    background: linear-gradient(180deg, #2a3440, #202b36);
    color: #fff;
}

.footer-inner {
    justify-content: space-between;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr 0.95fr;
    gap: 42px;
    align-items: start;
}

.footer-column h3 {
    margin: 0 0 16px;
    font-size: 1.3rem;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    isolation: isolate;
}

.footer-logo-wrap::before {
    content: "";
    position: absolute;
    inset: -18px -24px -16px -20px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12) 38%, transparent 72%),
        radial-gradient(circle at 22% 55%, rgba(255, 255, 255, 0.08), transparent 58%);
    filter: blur(22px);
    opacity: 0.88;
    z-index: -1;
    pointer-events: none;
}

.footer-logo-image {
    width: min(290px, 100%);
    height: auto;
    display: block;
    filter:
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.18))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.08))
        drop-shadow(0 10px 20px rgba(7, 13, 21, 0.24));
}

.footer-copy,
.footer-block p,
.footer-contact-list li {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 0.95rem;
}

.footer-block {
    margin-bottom: 16px;
}

.footer-block strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.96rem;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.96);
}

.footer-payments,
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-payments span,
.footer-socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 650;
}

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

.footer-admin-link {
    display: inline-flex;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
}

.flash {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
}

.flash-success {
    background: linear-gradient(180deg, #ecfddb, var(--success));
}

.flash-error {
    background: linear-gradient(180deg, #fff2f2, var(--danger));
}

.section-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.featured-section {
    margin-top: 26px;
}

.section-heading {
    margin-bottom: 8px;
}

.popular-brand-section {
    margin-top: 26px;
}

.popular-brand-slider {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(23, 58, 104, 0.08);
    border-bottom: 1px solid rgba(23, 58, 104, 0.08);
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.72);
}

.popular-brand-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: popular-brand-marquee 38s linear infinite;
}

.popular-brand-slider:hover .popular-brand-track {
    animation-play-state: paused;
}

.popular-brand-item {
    display: grid;
    place-items: center;
    min-width: 150px;
    height: 66px;
    padding: 8px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 58, 104, 0.06);
}

.popular-brand-item img {
    max-width: 148px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.popular-brand-item span {
    color: var(--blue-900);
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
}

@keyframes popular-brand-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 16px));
    }
}

.catalog-layout,
.product-layout,
.quote-layout,
.admin-form-grid {
    display: grid;
    gap: 18px;
}

.account-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.account-shell-logged {
    align-items: start;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 20px;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(245, 248, 251, 0.88);
    border: 1px solid rgba(23, 58, 104, 0.08);
    color: var(--ink-700);
    font-weight: 600;
    transition: all 160ms ease;
}

.filter-tab.is-active {
    background: var(--blue-900);
    color: #fff;
    border-color: transparent;
}

.filter-tab:hover {
    color: var(--blue-900);
    border-color: rgba(23, 58, 104, 0.14);
}

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

.admin-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 420px) auto;
    gap: 14px;
    align-items: end;
}

.admin-toolbar input {
    width: 100%;
}

.admin-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-list-header .section-title {
    margin-bottom: 8px;
}

.admin-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
    color: var(--ink-500);
    font-size: 0.95rem;
}

.admin-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.admin-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(23, 58, 104, 0.08);
    background: rgba(247, 250, 252, 0.92);
    color: var(--ink-900);
    text-decoration: none;
    font-weight: 600;
}

.admin-pagination a.is-current {
    background: var(--blue-900);
    border-color: transparent;
    color: #fff;
}

.admin-pagination a.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.order-card {
    padding: 20px;
    border: 1px solid rgba(23, 58, 104, 0.08);
    border-radius: 18px;
    background: #fbfdff;
}

.order-card-compact {
    padding: 18px 20px;
}

.order-card-highlight {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.order-card-head,
.order-meta-grid,
.order-status-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.order-card-head {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.order-meta-grid {
    margin-bottom: 14px;
    color: var(--ink-700);
}

.order-meta-grid > div {
    min-width: 220px;
}

.account-collapse-card {
    padding: 0;
    overflow: hidden;
}

.account-collapse {
    display: block;
}

.account-collapse summary {
    list-style: none;
}

.account-collapse summary::-webkit-details-marker {
    display: none;
}

.account-collapse-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    user-select: none;
}

.account-collapse-summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #eef5fd;
    color: var(--blue-900);
    font-size: 1.2rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.account-collapse[open] .account-collapse-summary::after {
    content: "−";
}

.account-collapse-meta {
    margin-left: auto;
    color: var(--ink-500);
    font-size: 0.95rem;
    font-weight: 600;
    padding-right: 6px;
}

.account-collapse-body {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(23, 58, 104, 0.07);
}

.checkout-summary-card {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid rgba(23, 58, 104, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.checkout-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
}

.checkout-summary-head h3 {
    margin: 0 0 4px;
}

.checkout-summary-table {
    margin-bottom: 16px;
}

.checkout-summary-totals {
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf4, #ffffff);
    padding: 16px 18px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    color: var(--ink-700);
}

.checkout-total-row + .checkout-total-row {
    border-top: 1px solid rgba(23, 58, 104, 0.08);
}

.checkout-total-row.is-grand-total {
    color: var(--ink-900);
    font-size: 1.05rem;
    font-weight: 800;
}

.checkout-summary-note {
    margin: 14px 0 0;
    color: var(--ink-700);
    font-size: 0.94rem;
}

.checkout-actions {
    grid-column: 1 / -1;
    padding-top: 4px;
}

.payment-shell {
    display: grid;
    gap: 22px;
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.payment-step {
    text-align: center;
    color: var(--ink-500);
    font-weight: 600;
    padding-top: 8px;
}

.payment-step span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #fff;
    margin-bottom: 10px;
}

.payment-step strong {
    display: block;
}

.payment-step.is-active {
    color: var(--ink-900);
}

.payment-step.is-active span {
    background: #54a83e;
}

.payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.payment-card {
    background: #fff;
    border: 1px solid rgba(23, 58, 104, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 26px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0 22px;
}

.payment-method-card {
    border: 1px solid rgba(84, 168, 62, 0.24);
    border-radius: 20px;
    background: linear-gradient(180deg, #fcfff9, #fff);
    padding: 18px;
}

.payment-method-card h3 {
    margin: 0 0 10px;
}

.payment-instructions {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f7fbf5;
    border: 1px solid rgba(84, 168, 62, 0.18);
}

.payment-instructions p {
    margin: 8px 0 0;
    color: var(--ink-700);
    line-height: 1.7;
}

.payment-qr {
    width: min(180px, 100%);
    border-radius: 16px;
    margin-top: 12px;
    border: 1px solid rgba(23, 58, 104, 0.08);
}

.payment-summary-card .cart-table {
    margin-top: 16px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(36, 84, 143, 0.12);
    color: var(--blue-900);
    font-weight: 700;
    font-size: 0.88rem;
}

.status-chip-muted {
    background: #edf3f8;
    color: var(--ink-700);
}

.catalog-layout {
    grid-template-columns: 280px minmax(0, 1fr);
}

.catalog-toolbar,
.quote-layout,
.cart-table,
.admin-table,
.admin-form-grid,
.empty-state {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 58, 104, 0.055);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.catalog-toolbar,
.quote-layout,
.empty-state {
    padding: 22px 24px;
}

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

.product-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.product-layout-parts {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.product-gallery,
.product-detail {
    min-width: 0;
    width: 100%;
    padding: 26px;
}

.product-thumb-large {
    width: 100%;
    max-width: 100%;
    min-height: 360px;
}

.product-thumb-image-large {
    width: 100%;
    max-width: 100%;
}

.spec-list {
    display: grid;
    gap: 12px;
    color: var(--ink-700);
}

.product-note,
.price-note {
    color: var(--ink-700);
    line-height: 1.6;
}

.part-info-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.info-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2fb;
}

.info-row span {
    font-weight: 700;
    color: #374151;
}

.price-block,
.qty-box,
.note-panel,
.spec-section {
    margin-top: 18px;
}

.qty-box,
.note-panel {
    padding: 16px;
    border-radius: 16px;
    background: #f8fbfd;
    border: 1px solid rgba(23, 58, 104, 0.06);
}

.product-purchase-panel {
    margin-top: 18px;
}

.product-purchase-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 18px;
    align-items: flex-end;
}

.product-qty-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
}

.product-qty-field > span {
    font-weight: 700;
    color: #1f2937;
}

.product-qty-field small {
    color: var(--ink-700);
}

.product-qty-control {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #d7e3f2;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    width: fit-content;
    max-width: 100%;
}

.product-qty-btn {
    width: 46px;
    border: 0;
    background: #eef4fb;
    color: var(--brand-blue);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
}

.product-qty-btn:hover {
    background: #e4edf9;
}

.product-qty-input {
    width: 96px;
    border: 0;
    border-left: 1px solid #d7e3f2;
    border-right: 1px solid #d7e3f2;
    text-align: center;
    font-weight: 700;
    border-radius: 0;
    box-shadow: none;
}

.product-purchase-actions {
    margin-top: 0;
}

.spec-section {
    padding: 22px;
}

.pdf-viewer-shell {
    margin-top: 14px;
    border: 1px solid rgba(23, 58, 104, 0.07);
    border-radius: 18px;
    overflow: hidden;
    background: #f8fbfd;
}

.pdf-viewer {
    display: block;
    width: 100%;
    min-height: 780px;
    border: 0;
    background: #fff;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}

.spec-table th,
.spec-table td {
    padding: 14px 16px;
    border: 1px solid #e7eef5;
    vertical-align: top;
}

.spec-table th {
    width: 28%;
    background: #f7fafc;
    text-align: left;
}

.catalog-facts {
    display: grid;
    gap: 6px;
    color: var(--ink-700);
    font-size: 0.92rem;
}

form {
    margin: 0;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    box-shadow: none;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #dbe5ef;
    border-radius: 14px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.96);
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(36, 84, 143, 0.34);
    box-shadow: 0 0 0 4px rgba(36, 84, 143, 0.08);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

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

.register-form {
    gap: 14px 18px;
}

.register-form label {
    gap: 6px;
}

.register-form textarea {
    min-height: 92px;
}

.register-form-wide {
    grid-column: 1 / -1;
}

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

.captcha-block .g-recaptcha {
    max-width: 100%;
    overflow-x: auto;
}

.form-grid.full,
.admin-form-grid.full {
    grid-template-columns: 1fr;
}

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

.cart-table th,
.cart-table td,
.admin-table th,
.admin-table td {
    padding: 15px 16px;
    border-bottom: 1px solid #edf2fb;
    text-align: left;
}

.cart-summary {
    margin-top: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 58, 104, 0.055);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.admin-body {
    background: linear-gradient(180deg, #f4f7fb, #eef3f8);
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    padding: 24px 18px;
    background: linear-gradient(180deg, #173a68, #10233e 72%);
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand {
    display: block;
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 700;
}

.admin-sidebar nav {
    display: grid;
    gap: 10px;
}

.admin-sidebar nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 160ms ease;
}

.admin-sidebar nav a:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
}

.admin-main {
    padding: 30px;
}

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

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(460px, 100%);
    padding: 30px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(23, 58, 104, 0.06);
    border-top: 3px solid var(--blue-500);
}

@media (max-width: 980px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .topbar,
    .utility-nav,
    .utility-links,
    .utility-cart-group,
    .utility-main-group,
    .product-layout,
    .admin-layout,
    .catalog-layout,
    .hero-grid,
    .content-grid,
    .support-grid,
    .admin-stats,
    .product-list,
    .form-grid,
    .admin-form-grid,
    .account-shell {
        grid-template-columns: 1fr;
    }

    .topbar,
    .menu-row,
    .footer-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar {
        padding: 14px 0 12px;
        gap: 14px;
    }

    .lang-switcher {
        flex-direction: row;
        align-items: center;
        margin-left: 0;
    }

    .utility-main-group {
        padding-left: 0;
        margin-left: 0;
    }

    .utility-main-group::before {
        content: none;
    }

    .logo {
        min-width: 0;
        justify-content: center;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .logo img {
        width: 100%;
        max-height: 58px;
    }

    .searchbar {
        width: 100%;
    }

    .searchbar-shell {
        width: 100%;
        min-width: 0;
    }

    .search-suggest-panel {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .search-suggest-preview {
        display: none;
    }

    .utility-nav {
        width: 100%;
        display: block;
        margin-left: 0;
    }

    .utility-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .utility-cart-group {
        width: auto;
    }

    .utility-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .utility-nav-panel {
        display: grid;
        gap: 12px;
        margin-top: 12px;
        padding: 14px;
        border: 1px solid rgba(23, 58, 104, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-tiny);
    }

    .utility-nav.is-open .utility-toggle {
        background: var(--blue-900);
        color: #fff;
        border-color: transparent;
    }

    .utility-nav.is-open .utility-toggle-lines span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .utility-nav.is-open .utility-toggle-lines span:nth-child(2) {
        opacity: 0;
    }

    .utility-nav.is-open .utility-toggle-lines span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .utility-links {
        display: block;
    }

    .utility-main-group {
        display: grid;
        gap: 10px;
    }

    .utility-main-group a,
    .utility-main-group .btn-outline,
    .utility-main-group .btn-accent {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .lang-switcher {
        justify-content: flex-start;
        gap: 16px;
        padding-top: 4px;
    }

    .hero-slider,
    .hero-slider-track,
    .hero-banner {
        min-height: 360px;
    }

    .hero-slider-nav {
        display: none;
    }

    .payment-grid,
    .payment-methods,
    .payment-steps {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-grid,
    .admin-stats-dashboard,
    .dashboard-summary-grid {
        grid-template-columns: 1fr;
    }
}
