/* Design Tokens Section */
:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #dbe4f0;
    --soft: #edf2ff;
    --soft-2: #f1f5f9;
    --success: #0f9d58;
    --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 16px 32px rgba(15, 23, 42, 0.08);
}

/* Base Reset Section */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Base Document Section */
html {
    scroll-behavior: smooth;
}

/* Base Body Section */
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
    font-size: 16px;
    color: var(--dark);
    background:
        radial-gradient(560px 300px at 12% -4%, rgba(37, 99, 235, 0.09), transparent 60%),
        radial-gradient(620px 320px at 92% 4%, rgba(15, 23, 42, 0.06), transparent 60%),
        var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 48px;
    font-weight: 800;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    margin: 0;
    color: var(--gray);
}

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

.container {
    width: min(1200px, calc(100vw - 48px));
    margin-inline: auto;
}

.section {
    padding: 92px 0;
}

.section-light {
    background: var(--soft-2);
}

.section-title {
    margin-bottom: 30px;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-eyebrow--light {
    color: #bfdbfe;
}

/* Header Shell Section */
.header-shell {
    position: sticky;
    top: 0;
    z-index: 70;
    padding-top: 10px;
}

.header-shell .container {
    width: min(1280px, calc(100vw - 32px));
}

.promo-strip {
    background: transparent;
    font-size: 14px;
    max-height: 54px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
}

.promo-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    flex-wrap: wrap;
    padding: 7px 24px 6px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.promo-inner p {
    color: #dbeafe;
}

.navbar {
    position: relative;
    top: auto;
    z-index: auto;
    background: transparent;
    box-shadow: none;
}

.nav-inner {
    max-width: none;
    margin-inline: auto;
    height: 72px;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 22px 22px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
    position: relative;
    overflow: visible;
}

.nav-inner > *:not(.blur-layer) {
    position: relative;
    z-index: 1;
}

.blur-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(240, 240, 191, 0.08);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.header-shell.is-scrolled .promo-strip {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
}

.header-shell.is-scrolled .nav-inner {
    border-radius: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #ffffff;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.logo-text {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu a {
    color: #dbeafe;
    font-weight: 500;
}

.menu a:hover {
    color: #ffffff;
}

.menu a.active {
    color: #ffffff;
    font-weight: 700;
}

.menu-dropdown {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.menu-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.menu-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.menu-dropdown-trigger i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.menu-dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: min(320px, 86vw);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #dbe4f0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 80;
}

.menu-dropdown-panel .menu-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-dropdown-panel .menu-dropdown-item i {
    width: 20px;
    font-size: 18px;
    color: #2563eb;
}

.menu-dropdown:hover .menu-dropdown-panel,
.menu-dropdown:focus-within .menu-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-dropdown:hover .menu-dropdown-trigger i,
.menu-dropdown:focus-within .menu-dropdown-trigger i {
    transform: rotate(180deg);
}

.menu-dropdown-panel .menu-dropdown-item:hover,
.menu-dropdown-panel .menu-dropdown-item:focus-visible {
    transform: scale(1.03);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #0f172a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 95;
    flex-shrink: 0;
}

.appointment-btn {
    height: 40px;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, 0.55);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(59, 130, 246, 0.16));
    color: #ffffff;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.appointment-btn small {
    margin: 0;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #bfdbfe;
}

.appointment-btn span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.appointment-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(191, 219, 254, 0.85);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(96, 165, 250, 0.24));
}

.cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.cart-count {
    position: absolute;
    right: -7px;
    top: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-btn i {
    font-size: 18px;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 23, 42, 0.34);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
    width: 17px;
    height: 2.2px;
    border-radius: 2px;
    background: #ffffff;
    display: block;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
    border-color: rgba(191, 219, 254, 0.55);
    background: rgba(30, 58, 138, 0.42);
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@keyframes menuOptionIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.hero-banner {
    min-height: auto;
    padding: 34px 0 2px;
}

.hero-banner .container {
    width: min(1280px, calc(100vw - 32px));
}

.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(219, 228, 240, 0.55);
    min-height: clamp(300px, 34vw, 410px);
    box-shadow: var(--shadow-md);
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.3)),
        linear-gradient(90deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.12));
}

.banner-content {
    position: relative;
    z-index: 2;
    min-height: clamp(300px, 34vw, 410px);
    width: min(760px, calc(100% - 48px));
    margin-inline: auto;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-copy {
    width: min(100%, 680px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-content .section-eyebrow {
    margin-bottom: 10px;
    letter-spacing: 0.16em;
    max-width: none;
    white-space: nowrap;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: 0.79rem;
    font-weight: 700;
    color: #dbeafe;
    text-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
}

.banner-content h1 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2.3rem, 4.7vw, 4rem);
    max-width: 16ch;
    text-wrap: pretty;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-shadow: 0 14px 34px rgba(15, 23, 42, 0.24);
}

.banner-content .lead {
    margin-top: 18px;
    color: #f8fbff;
    max-width: none;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(0.9rem, 1.04vw, 1.03rem);
    font-weight: 500;
    line-height: 1.55;
    text-wrap: pretty;
    text-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.banner-content .lead span {
    display: block;
    white-space: nowrap;
}

.banner-content .lead span + span {
    margin-top: 2px;
}

.banner-highlights {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 42rem;
}

.banner-highlights span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #f8fbff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 13px;
    backdrop-filter: blur(10px);
}

.banner-content .hero-buttons {
    margin-top: 22px;
    justify-content: center;
}

.banner-content .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(15, 23, 42, 0.16);
}

.banner-metrics {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.banner-metrics--inline {
    width: min(100%, 410px);
}

.banner-metrics--external {
    max-width: none;
}

.banner-metrics article {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 12px;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.banner-metrics strong {
    display: block;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.1;
}

.banner-metrics span {
    display: block;
    margin-top: 2px;
    color: #eff6ff;
    font-size: 11px;
    font-weight: 600;
}

/* Brand Strip Section */
.brand-strip-section {
    padding-top: 26px;
    padding-bottom: 24px;
}

.brand-strip {
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        radial-gradient(420px 180px at 2% 0%, rgba(37, 99, 235, 0.14), transparent 70%),
        linear-gradient(145deg, #ffffff, #f7fbff);
    box-shadow: var(--shadow-md);
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.brand-strip-copy h2 {
    margin-top: 12px;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    letter-spacing: -0.03em;
}

.brand-strip-copy p:last-of-type {
    margin-top: 12px;
    max-width: 44ch;
}

.dealer-badge,
.brand-page-tag {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #c9dbf6;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 700;
}

.dealer-badge i,
.brand-page-tag i {
    font-size: 16px;
}

.dealer-badge--featured {
    border-color: #93c5fd;
    background: #dbeafe;
}

.dealer-note {
    margin-top: 14px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

.dealer-note i {
    color: #1d4ed8;
    font-size: 17px;
    margin-top: 1px;
}

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

.brand-tile {
    min-height: 96px;
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-family: "Outfit", "Inter", sans-serif;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    font-weight: 700;
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-tile img {
    height: 34px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.brand-tile i {
    font-size: 18px;
    color: #2563eb;
}

.brand-tile:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: #bfdbfe;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.brand-tile[href*="brand=hp"],
.brand-tile[href*="brand=epson"] {
    background:
        radial-gradient(120px 56px at 14% 18%, rgba(59, 130, 246, 0.15), transparent 72%),
        linear-gradient(180deg, #f2f7ff, #eaf2ff);
    border-color: #c8daf7;
}

/* Fast Recommendation CTA Section */
.home-cta-section {
    padding-top: 12px;
    padding-bottom: 30px;
}

.home-cta-card {
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: 26px;
    background:
        radial-gradient(440px 200px at 0% 0%, rgba(37, 99, 235, 0.28), transparent 70%),
        linear-gradient(130deg, #0f172a, #1e3a8a);
    padding: 30px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.24);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px;
    color: #ffffff;
}

.home-cta-copy h2 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    letter-spacing: -0.03em;
    color: #ffffff;
}

.home-cta-copy p {
    margin-top: 12px;
    max-width: 54ch;
    color: #dbeafe;
}

.home-cta-card .hero-buttons {
    margin-top: 20px;
}

.home-cta-card .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.06);
}

.home-cta-points {
    display: grid;
    gap: 12px;
}

.home-cta-points article {
    border: 1px solid rgba(191, 219, 254, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
}

.home-cta-points strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
}

.home-cta-points span {
    display: block;
    margin-top: 6px;
    color: #dbeafe;
    font-size: 14px;
}

/* Page Hero Section */
.page-hero {
    padding: 90px 0 62px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(420px 220px at 12% 0%, rgba(37, 99, 235, 0.14), transparent 70%),
        linear-gradient(160deg, #f8fbff, #eef4ff);
}

.page-hero--printers {
    position: relative;
    border-bottom: 1px solid #d3deef;
    background: #e7edf6;
}

.page-hero--printers::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.page-hero--printers .container {
    position: relative;
    z-index: 1;
}

.page-hero--printers .section-eyebrow,
.page-hero--printers h1,
.page-hero--printers p {
    color: #0f172a;
}

.page-hero--printers p {
    max-width: 62ch;
    color: #475569;
}

.page-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    border: 1px solid #c7d8f3;
    border-radius: 10px;
    background: #f8fbff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 700;
    padding: 0 12px;
    margin-bottom: 14px;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-hero-back i {
    font-size: 16px;
}

.page-hero-back:hover {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1e3a8a;
}

.page-hero > .container > p,
.page-hero-content p {
    margin-top: 14px;
    max-width: 650px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 28px;
    align-items: center;
}

.page-hero-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

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

.page-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.page-hero-card li {
    position: relative;
    padding-left: 18px;
    color: #334155;
}

.page-hero-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 9px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.hero-left .lead {
    font-size: 18px;
    max-width: 560px;
    margin-top: 16px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Button System Section */
.btn {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.btn-block {
    width: 100%;
}

/* Global Loader Section */
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .bar {
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    animation: scale-up4 1s linear infinite;
}

.loader .bar:nth-child(2) {
    height: 35px;
    margin: 0 5px;
    animation-delay: 0.25s;
}

.loader .bar:nth-child(3) {
    animation-delay: 0.5s;
}

.loader.loader--dark .bar {
    background-color: rgba(15, 23, 42, 0.35);
}

.loader.loader--dark .bar:nth-child(1),
.loader.loader--dark .bar:nth-child(2),
.loader.loader--dark .bar:nth-child(3) {
    background-color: rgba(15, 23, 42, 0.35);
}

@keyframes scale-up4 {
    20% {
        background-color: #ffffff;
        transform: scaleY(1.5);
    }

    40% {
        transform: scaleY(1);
    }
}

.loader.loader--dark .bar {
    animation-name: scale-up4-dark;
}

@keyframes scale-up4-dark {
    20% {
        background-color: #0f172a;
        transform: scaleY(1.5);
    }

    40% {
        transform: scaleY(1);
    }
}

button.is-loading,
.btn.is-loading {
    pointer-events: none;
    opacity: 0.9;
}

button.is-loading .loader,
.btn.is-loading .loader {
    transform: scale(0.85);
}

.search-card {
    margin-top: 24px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    max-width: 560px;
}

.search-card input {
    flex: 1;
    height: 44px;
    border: none;
    outline: none;
    font: inherit;
    color: var(--dark);
    padding: 0 12px;
    border-radius: 10px;
    background: var(--light);
}

.trust-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    font-size: 13px;
    color: #1e293b;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 999px;
    padding: 7px 12px;
}

.hero-visual {
    position: relative;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(150deg, #eef3ff, #f8fafc);
    box-shadow: var(--shadow-md);
}

.placeholder {
    border: 1px dashed #a6b5cc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f6079;
    background: linear-gradient(145deg, #f1f5f9, #e8efff);
    font-weight: 600;
}

.hero-placeholder {
    min-height: 450px;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: var(--shadow-sm);
}

.floating-card p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.floating-card strong {
    font-size: 14px;
    color: #1e293b;
}

.card-top {
    left: -18px;
    top: 22px;
}

.card-bottom {
    right: -18px;
    bottom: 22px;
}

/* Printer Category Section */
.printer-category-section {
    padding-top: 84px;
    background: linear-gradient(180deg, #f8fafd, #f1f4f8);
    border-top: 1px solid #e5ebf3;
    border-bottom: 1px solid #e5ebf3;
}

.printer-category-head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.printer-category-head h2 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.03em;
}

.printer-category-head p {
    margin: 16px auto 0;
    max-width: 50ch;
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    color: #475569;
    text-wrap: balance;
    white-space: nowrap;
}

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

.printer-category-card {
    position: relative;
    min-height: 182px;
    border-radius: 20px;
    border: 1px solid #d6dde8;
    background:
        radial-gradient(160px 80px at 88% -8%, rgba(37, 99, 235, 0.12), transparent 70%),
        linear-gradient(180deg, #ffffff, #f8fafd);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.printer-category-card::before {
    content: "";
    width: 54px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #5c93ff);
    opacity: 0.6;
}

.printer-category-card h3 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(1.58rem, 2.05vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.printer-category-card p {
    margin-top: 4px;
    color: #475569;
    font-size: 1.05rem;
}

.printer-category-card:hover {
    transform: translateY(-5px);
    border-color: #c2d4f8;
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.printer-category-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

.home-stats-section {
    padding: 34px 0 16px;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

.home-stats-section .why-stats-grid {
    margin-top: 0;
    gap: 24px;
}

.home-stats-section .why-stat-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    background:
        radial-gradient(520px 240px at 8% 0%, rgba(37, 99, 235, 0.08), transparent 72%),
        linear-gradient(180deg, #f8fbff, #f3f7fd);
    border-bottom: 1px solid #e6edf7;
}

.why-choose-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.why-choose-head h2 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 2.7rem);
    letter-spacing: -0.03em;
}

@media (min-width: 1025px) {
    .why-choose-head h2 {
        white-space: nowrap;
    }
}

.why-choose-head > p:last-child {
    margin: 14px auto 0;
    max-width: 58ch;
    font-size: 1.03rem;
    color: #475569;
}

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

.why-visual-card {
    min-height: 254px;
    border: 1px solid #dbe4f0;
    border-radius: 22px;
    background:
        radial-gradient(160px 72px at 88% -2%, rgba(37, 99, 235, 0.1), transparent 70%),
        #ffffff;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-visual-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: #bfd4f2;
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, #dbeafe, #edf4ff);
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon i {
    font-size: 24px;
}

.why-visual-card h3 {
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.25;
}

.why-card-points {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.why-card-points li {
    position: relative;
    padding-left: 18px;
    color: #475569;
    font-size: 14px;
}

.why-card-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2563eb;
    position: absolute;
    left: 0;
    top: 8px;
}

.why-pre-cta {
    margin-top: 40px;
}

.how-works-card {
    margin-top: 40px;
    position: static;
    isolation: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.how-works-card::before {
    display: none;
    content: none;
}

.how-works-head {
    text-align: center;
}

.how-works-head h3 {
    margin: 0;
    font-size: clamp(2rem, 2.8vw, 2.85rem);
    color: #0f172a;
    letter-spacing: -0.02em;
}

.how-works-head p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #64748b;
}

.how-works-layout {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.how-works-visual {
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #f8fbff;
}

.how-works-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

.how-step-item {
    border: 1px solid rgba(219, 228, 240, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    padding: 18px 12px;
    min-height: 232px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.how-step-item:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.how-step-no {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(180deg, #1e67d8, #1b57b8);
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.how-step-item h4 {
    margin: 6px 0 0;
    font-size: clamp(1.5rem, 1.55vw, 1.9rem);
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.how-step-item p {
    margin: 0;
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 24ch;
}

.why-compare-card {
    margin-top: 40px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.why-compare-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.why-compare-head h3 {
    font-size: 28px;
}

.why-compare-head p {
    max-width: 42ch;
}

.why-compare-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trust-column {
    border: 1px solid #d7e2f0;
    border-radius: 14px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.trust-column h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    font-weight: 800;
}

.trust-column--others h4 {
    color: #be123c;
}

.trust-column--us h4 {
    color: #047857;
}

.trust-column--others {
    background: linear-gradient(180deg, #fff4f7, #ffffff);
}

.trust-column--us {
    background: linear-gradient(180deg, #f1fcf7, #ffffff);
}

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

.trust-list li {
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    background: #ffffff;
    min-height: 58px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09);
}

.trust-list li i {
    font-size: 18px;
    flex: 0 0 auto;
}

.trust-column--others .trust-list li i {
    color: #e11d48;
}

.trust-column--us .trust-list li i {
    color: #059669;
}

.why-stats-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.why-stat-card {
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #ffffff;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.why-stat-card strong {
    display: block;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: #0f172a;
    line-height: 1.1;
}

.why-stat-card span {
    display: inline-block;
    margin-top: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}

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

/* Best Seller Section */
.bestseller-section {
    position: relative;
    overflow: hidden;
    padding-top: 58px;
}

.bestseller-section::after {
    display: none;
}

.bestseller-section .container {
    position: relative;
    z-index: 1;
}

.bestseller-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 22px;
    align-items: stretch;
}

.bestseller-feature {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid #d1def3;
    border-radius: 22px;
    background:
        radial-gradient(220px 120px at 0% 0%, rgba(37, 99, 235, 0.12), transparent 72%),
        linear-gradient(180deg, #ffffff, #f7faff);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.bestseller-feature::before {
    display: none;
}

.bestseller-feature > * {
    position: relative;
    z-index: 1;
}

.bestseller-feature-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    min-height: 28px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
}

.bestseller-feature-image,
.bestseller-mini-image {
    min-height: 128px;
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    background: linear-gradient(145deg, #eff6ff, #f8fbff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1d4ed8;
}

.bestseller-feature-image {
    min-height: 204px;
    border-radius: 16px;
}

.bestseller-feature-image img,
.bestseller-mini-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.bestseller-feature-image i,
.bestseller-mini-image i {
    font-size: 32px;
}

.bestseller-feature-image span,
.bestseller-mini-image span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bestseller-feature-copy {
    display: grid;
    gap: 10px;
}

.bestseller-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bestseller-brand {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
}

.bestseller-brand-logo {
    height: 24px;
    width: auto;
    max-width: 88px;
    object-fit: contain;
    display: block;
}

.bestseller-rating {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.bestseller-feature-copy h3,
.bestseller-mini-copy h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.24;
    color: #0f172a;
}

.bestseller-feature-copy h3 {
    font-size: 32px;
    line-height: 1.14;
}

.bestseller-mini-copy h3 {
    font-size: 18px;
}

.bestseller-price {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #1e40af;
}

.bestseller-feature .bestseller-price {
    font-size: 42px;
    letter-spacing: -0.03em;
}

.bestseller-feature-note {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #475569;
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bestseller-price span {
    margin-right: 3px;
}

.bestseller-card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.bestseller-mini-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #64748b;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-sm {
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
}

.bestseller-view-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #1d4ed8;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bestseller-view-link i {
    font-size: 16px;
}

.bestseller-view-link:hover {
    color: #1e3a8a;
    transform: translateX(2px);
}

.bestseller-list {
    display: grid;
    gap: 14px;
}

.bestseller-mini-card {
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 14px;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bestseller-mini-card:hover,
.bestseller-feature:hover {
    transform: translateY(-4px);
    border-color: #c7d8f8;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.bestseller-mini-image {
    min-height: 94px;
}

.scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.32);
    cursor: pointer;
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 125;
}

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

.scroll-top-btn:hover {
    background: #1d4ed8;
}

/* Floating Search Section */
.floating-search-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 120%);
    width: min(720px, calc(100vw - 28px));
    height: 56px;
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0 14px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 120;
}

.floating-search-bar.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.floating-search-bar i {
    color: #1d4ed8;
    font-size: 18px;
}

.floating-search-bar input {
    width: 100%;
    height: 42px;
    border: 0;
    outline: none;
    font: inherit;
    color: #0f172a;
    background: transparent;
}

.floating-search-bar button {
    height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.category-card {
    height: 220px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: #1e3a8a;
    font-weight: 700;
}

.category-card p {
    font-size: 14px;
}

.category-card a {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
}

.sticky-section {
    min-height: 2000px;
}

.sticky-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 42px;
    align-items: start;
}

.sticky-card {
    position: sticky;
    top: 120px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.sticky-card p {
    margin-top: 12px;
}

.sticky-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sticky-card li {
    padding-left: 20px;
    position: relative;
    color: #334155;
}

.sticky-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.sticky-right {
    display: grid;
    gap: 100px;
}

.story-image {
    min-height: 320px;
}

.story-block h3 {
    margin-top: 14px;
}

.story-block p {
    margin-top: 8px;
}

.split-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.link-inline {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Product Grid Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(215, 227, 245, 0.78);
    background: transparent;
    padding: 18px;
    box-shadow: none;
    display: grid;
    align-content: start;
    gap: 10px;
}

.product-card--clickable {
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.product-card--clickable:hover,
.product-card--clickable:focus-visible {
    transform: translateY(-6px);
    border-color: #bfd4f2;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.28);
}

.product-title-link {
    color: inherit;
    text-decoration: none;
}

.product-title-link:hover {
    color: #1d4ed8;
}

.product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}

.product-badge {
    font-size: 11px;
    font-weight: 700;
    color: #1e3a8a;
    background: #e6f0ff;
    border-radius: 999px;
    padding: 6px 9px;
    border: 1px solid #cddffc;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-type {
    font-size: 11px;
    color: #334155;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 6px 9px;
    border: 1px solid #dbe4f0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-image {
    min-height: 152px;
    border-radius: 10px;
    border: 1px solid #dbe4f0;
    background:
        radial-gradient(180px 80px at 16% 0%, rgba(147, 197, 253, 0.28), transparent 72%),
        linear-gradient(160deg, #f8fbff, #eff4fb);
    aspect-ratio: 4 / 3;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
}

.product-image-main {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.product-image-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid #c8daf7;
    background: #e8f0ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-image-icon i {
    font-size: 26px;
}

.product-image-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-brand {
    font-size: 13px;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-card .rating {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #475569;
}

.product-card .rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #f59e0b;
}

.product-card .rating-stars i {
    font-size: 11px;
    line-height: 1;
}

.product-card .rating-value {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
}

.product-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.product-subline {
    font-size: 14px;
    color: #64748b;
    line-height: 1.45;
    min-height: auto;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-row {
    margin-top: 2px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.price {
    color: #0f172a;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 14px;
}

.product-actions {
    margin-top: auto;
    padding-top: 2px;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-view-link i {
    font-size: 16px;
}

.product-view-link:hover,
.product-view-link:focus-visible {
    color: #0f172a;
    transform: translateX(2px);
}

.product-add-form,
.bestseller-add-form {
    margin: 0;
}

.product-add-form {
    flex: 0 0 auto;
}

.product-add-form .btn {
    width: 100%;
}

.product-buy-form {
    flex: 1 1 auto;
    min-width: 138px;
}

.product-buy-form .btn i {
    font-size: 15px;
}

.product-cart-icon-form {
    flex: 0 0 auto;
}

.btn-cart-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #c7d8f3;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn-cart-icon i {
    font-size: 18px;
}

.btn-cart-icon:hover,
.btn-cart-icon:focus-visible {
    transform: translateY(-1px);
    border-color: #93c5fd;
    background: #dbeafe;
}

.cart-notice {
    margin: 0 0 16px;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1e3a8a;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
}

.form-alert {
    margin: 0 0 12px;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
}

.form-alert--error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.form-alert--success {
    border: 1px solid #bbf7d0;
    background: #ecfdf3;
    color: #166534;
}

.btn-cart-sm {
    min-height: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
}

.product-detail-section {
    background: linear-gradient(180deg, #f6f9ff, #eef3fb);
    padding-top: 42px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: start;
}

.product-cart-notice {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.product-detail-sticky {
    position: sticky;
    top: 118px;
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 18px;
}

.product-detail-image-box {
    min-height: 330px;
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff, #eef4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.product-detail-image-main {
    width: min(100%, 350px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.16));
}

.product-detail-brand-mark {
    margin-top: 12px;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #f8fbff;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-detail-brand-mark img {
    height: 22px;
    width: auto;
    max-width: 78px;
    object-fit: contain;
}

.product-detail-brand-mark span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
}

.product-detail-scroll {
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    max-height: none;
    overflow: visible;
}

.product-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail-pill {
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    background: #f8fbff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
}

.product-detail-title {
    margin-top: 14px;
    font-size: clamp(2rem, 2.5vw, 2.7rem);
    line-height: 1.08;
}

.product-detail-description {
    margin-top: 12px;
    color: #475569;
    line-height: 1.7;
}

.product-detail-price-row {
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.product-detail-prices .price {
    color: #2563eb;
    font-size: clamp(2rem, 2.3vw, 2.4rem);
}

.product-detail-prices .old-price {
    margin-top: 4px;
}

.product-detail-rating {
    margin: 0;
    border: 1px solid #fde68a;
    border-radius: 999px;
    background: #fffbeb;
    color: #92400e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
}

.product-detail-rating i {
    color: #f59e0b;
}

.product-detail-actions-grid {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.product-detail-actions-grid .btn {
    min-width: 0;
}

.product-detail-actions-grid .product-buy-form {
    min-width: 190px;
    flex: 0 1 230px;
}

.product-detail-actions-grid .btn-outline {
    flex: 1 1 260px;
}

.product-detail-actions-grid .btn-cart-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 20px;
}

.product-expert-note {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.product-detail-note {
    margin-top: 14px;
    color: #475569;
    font-size: 14px;
}

.product-detail-specs {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.product-specs-head {
    display: grid;
    gap: 6px;
}

.product-specs-head .section-eyebrow {
    margin: 0;
}

.product-detail-specs h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-specs-table-wrap {
    margin-top: 14px;
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    overflow: auto;
    background: #ffffff;
}

.product-specs-table-modern {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.product-specs-table-modern thead th {
    border-bottom: 1px solid #dbe4f0;
    padding: 10px 12px;
    text-align: left;
    background: #f8fbff;
    color: #334155;
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.product-specs-table-modern tbody th,
.product-specs-table-modern tbody td {
    border-bottom: 1px solid #e2e8f0;
    padding: 11px 12px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

.product-specs-table-modern tbody tr:last-child th,
.product-specs-table-modern tbody tr:last-child td {
    border-bottom: 0;
}

.product-specs-table-modern tbody tr:nth-child(even) th,
.product-specs-table-modern tbody tr:nth-child(even) td {
    background: #fbfdff;
}

.product-specs-table-modern tbody th {
    width: 36%;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.product-specs-table-modern tbody td {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.01em;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.cart-main {
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
    padding: 18px;
}

.cart-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.cart-main-head h2 {
    font-size: 24px;
}

.cart-main-head p {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.cart-empty {
    min-height: 260px;
    border: 1px dashed #bfdbfe;
    border-radius: 8px;
    background: #f8fbff;
    padding: 24px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.cart-empty h2 {
    font-size: 30px;
}

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

.cart-item {
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #ffffff;
    padding: 12px;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.cart-item-image {
    min-height: 100px;
    border: 1px solid #dbe4f0;
    border-radius: 6px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-image-fallback {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cart-item-content h3 {
    font-size: 18px;
    line-height: 1.28;
}

.cart-item-content h3 a:hover {
    color: #1d4ed8;
}

.cart-item-meta {
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.cart-item-price {
    margin-top: 4px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-actions {
    margin-top: 10px;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-qty-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-qty-form label {
    font-size: 12px;
    color: #475569;
    font-weight: 700;
}

.cart-qty-form input {
    width: 72px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid #dbe4f0;
    padding: 0 8px;
    font: inherit;
}

.cart-line-total {
    margin: 2px 0 0;
    text-align: right;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-item-total-mobile {
    display: none;
}

.cart-remove-btn {
    border-color: #fecaca;
    color: #b91c1c;
}

.cart-remove-btn:hover {
    border-color: #fca5a5;
    background: #fef2f2;
}

.cart-summary {
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
    padding: 18px;
    position: sticky;
    top: 108px;
}

.cart-summary h3 {
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.cart-summary-row {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #334155;
}

.cart-summary-row strong {
    color: #0f172a;
}

.cart-summary p {
    margin-top: 12px;
    font-size: 13px;
}

.cart-summary .btn {
    margin-top: 10px;
    border-radius: 6px;
}

.cart-clear-form {
    margin: 0;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
    opacity: 0.55;
    pointer-events: none;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    gap: 30px;
    align-items: start;
}

.checkout-main h2,
.checkout-order h2 {
    margin: 0;
    font-size: clamp(2rem, 2.9vw, 2.35rem);
    letter-spacing: -0.02em;
}

.checkout-main {
    padding-right: 8px;
}

.checkout-form {
    margin-top: 18px;
}

.checkout-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-field {
    display: grid;
    gap: 7px;
}

.checkout-field--full {
    grid-column: 1 / -1;
}

.checkout-field label {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}

.checkout-field-note {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    color: #334155;
    font-size: 12px;
    line-height: 1.4;
}

.checkout-field input {
    width: 100%;
    height: 60px;
    border-radius: 14px;
    border: 1px solid #d4deec;
    background: #ffffff;
    padding: 0 18px;
    color: #0f172a;
    font: inherit;
}

.checkout-field input:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.32);
    outline-offset: 1px;
    border-color: #93c5fd;
}

.checkout-payment {
    margin-top: 24px;
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: #f8fbff;
    padding: 20px;
}

.checkout-payment h3 {
    margin: 0;
    font-size: 30px;
}

.checkout-payment p {
    margin-top: 8px;
    color: #334155;
}

.checkout-payment-option {
    margin-top: 14px;
    border: 2px solid #2563eb;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 18px 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.checkout-payment-option input {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

.checkout-payment-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.checkout-payment-icon i {
    font-size: 22px;
}

.checkout-payment-option strong {
    display: block;
    color: #0f172a;
    font-size: 20px;
}

.checkout-payment-option small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 14px;
}

.checkout-order {
    border: 1px solid #dbe4f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    padding: 24px;
    position: sticky;
    top: 104px;
}

.checkout-order-list {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.checkout-order-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.checkout-order-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.checkout-order-item p {
    margin: 0;
    color: #0f172a;
    line-height: 1.45;
}

.checkout-order-item-copy {
    display: grid;
    gap: 8px;
}

.checkout-order-item-name {
    margin: 0;
}

.checkout-order-qty-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkout-order-qty-form label {
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.checkout-order-qty-form input {
    width: 78px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #dbe4f0;
    padding: 0 10px;
    color: #0f172a;
    font: inherit;
}

.checkout-order-qty-form input:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.22);
    outline-offset: 1px;
    border-color: #93c5fd;
}

.checkout-order-item strong {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.checkout-order-total {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #dbe4f0;
}

.checkout-order-total span {
    color: #0f172a;
    font-size: 36px;
    font-weight: 800;
}

.checkout-order-total strong {
    color: #0f172a;
    font-size: 40px;
    font-weight: 800;
}

.checkout-place-order {
    margin-top: 18px;
    width: 100%;
    min-height: 70px;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 700;
}

.checkout-order-note {
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #475569;
    font-size: 18px;
}

.checkout-order-note i {
    color: #1d4ed8;
}

.checkout-order-note span {
    color: #94a3b8;
}

.checkout-success {
    margin: 0 auto;
    width: min(100%, 760px);
    border: 1px solid #bbf7d0;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    padding: 28px;
    text-align: center;
}

.checkout-success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #86efac;
    background: #dcfce7;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.checkout-success-icon i {
    font-size: 34px;
}

.checkout-success h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 3.4vw, 2.7rem);
}

.checkout-success p {
    margin: 10px auto 0;
    max-width: 62ch;
    color: #334155;
}

.checkout-delivery-note {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e3a8a;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
}

.checkout-delivery-note i {
    font-size: 16px;
}

.checkout-delivery-inline {
    margin: 10px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e3a8a;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

.checkout-delivery-inline i {
    font-size: 15px;
}

.checkout-success-meta {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.checkout-success-meta article {
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px;
    display: grid;
    gap: 4px;
}

.checkout-success-meta span {
    color: #64748b;
    font-size: 13px;
}

.checkout-success-meta strong {
    color: #0f172a;
}

.checkout-success-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-pagination {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.shop-pagination .page-link {
    min-width: 42px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.shop-pagination .page-link:hover {
    border-color: #93c5fd;
    background: #eff6ff;
}

.shop-pagination .page-link.is-active {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
}

.shop-pagination .page-link.is-disabled {
    pointer-events: none;
    opacity: 0.45;
}

.filter-layout {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.mobile-filter-toggle,
.filter-mobile-close,
.filter-backdrop {
    display: none;
}

.mobile-filter-toggle {
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    background: #eff6ff;
    color: #1d4ed8;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.mobile-filter-toggle i {
    font-size: 16px;
}

.filter-sidebar {
    border: 0;
    border-right: 1px solid #dbe4f0;
    border-radius: 0;
    background: transparent;
    padding: 4px 18px 4px 0;
    box-shadow: none;
    position: sticky;
    top: 96px;
}

.filter-sidebar h3 {
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.smart-filter-form {
    display: grid;
    gap: 0;
}

.smart-filter-subline {
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.filter-group {
    margin-top: 16px;
}

.filter-group > p,
.filter-group > label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #334155;
    font-size: 16px;
}

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

.filter-headline strong {
    color: #1e40af;
    font-size: 13px;
    font-weight: 700;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    line-height: 1;
}

.budget-range {
    width: 100%;
    appearance: none;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(to right, #2563eb var(--range-progress, 60%), #d8e1f0 var(--range-progress, 60%));
    outline: none;
}

.budget-range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #1d4ed8;
    box-shadow: 0 4px 9px rgba(29, 78, 216, 0.32);
    cursor: pointer;
}

.budget-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #1d4ed8;
    box-shadow: 0 4px 9px rgba(29, 78, 216, 0.32);
    cursor: pointer;
}

.budget-range::-moz-range-track {
    height: 12px;
    border-radius: 999px;
    background: #d8e1f0;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    padding-right: 42px;
    border-radius: 10px;
    height: 46px;
    border-color: #ccd8eb;
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
    appearance: none;
}

.filter-group--category .select-wrap select {
    border-color: #bfdbfe;
    background: #f8fbff;
}

.select-wrap i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #334155;
    font-size: 18px;
    pointer-events: none;
}

select {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 0 12px;
    font: inherit;
    background: #ffffff;
    color: #1e293b;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    background: #ffffff;
    min-height: 42px;
    padding: 8px 10px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.check-item:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.check-item input {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

.check-item input:checked + span {
    color: #1d4ed8;
}

.brand-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.filter-actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.filter-actions .btn {
    width: 100%;
}

.filter-content {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

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

.contact-simple-form label {
    margin-top: 4px;
    font-weight: 600;
    color: #334155;
}

.contact-simple-form input,
.contact-simple-form select,
.contact-simple-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dbe4f0;
    padding: 11px 12px;
    font: inherit;
    color: #1e293b;
    background: #ffffff;
}

.contact-simple-form textarea {
    resize: vertical;
}

.contact-simple-form .btn {
    margin-top: 8px;
}

/* Contact Page Section */
.contact-hero {
    padding: 54px 0 24px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.contact-hero-copy {
    border: 1px solid #cfe0ff;
    border-radius: 22px;
    background: linear-gradient(165deg, #ffffff 0%, #edf4ff 100%);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.contact-hero-copy p {
    max-width: 58ch;
}

.contact-hero-copy h1 {
    margin-top: 6px;
    font-size: clamp(2.1rem, 3.6vw, 3.1rem);
}

.contact-hero-copy h1 span {
    color: #1d4ed8;
}

.contact-hero-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: #1e293b;
    font-size: 13px;
    font-weight: 600;
}

.contact-hero-tags i {
    color: #2563eb;
    font-size: 16px;
}

.contact-hero-card {
    border: 1px solid #dbe4f0;
    border-radius: 22px;
    background: linear-gradient(180deg, #0f2d77 0%, #153d9e 100%);
    padding: 26px;
    color: #e2e8f0;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
}

.contact-hero-card h3 {
    color: #ffffff;
    font-size: 24px;
}

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

.contact-hero-metrics article {
    min-height: 98px;
    border-radius: 14px;
    border: 1px solid rgba(191, 219, 254, 0.35);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 10px;
    display: grid;
    align-content: center;
    gap: 4px;
}

.contact-hero-metrics strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
}

.contact-hero-metrics span {
    font-size: 12px;
    line-height: 1.45;
    color: #dbeafe;
}

.contact-hero-card > p {
    margin-top: 14px;
    color: #dbeafe;
    font-size: 14px;
}

.contact-corp-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.contact-info-panel h2,
.contact-form-head h2 {
    font-size: 28px;
}

.contact-info-panel > p,
.contact-form-head p {
    margin-top: 6px;
}

.contact-info-panel {
    border: 1px solid rgba(30, 64, 175, 0.35);
    background:
        radial-gradient(340px 180px at 10% -6%, rgba(59, 130, 246, 0.35), transparent 68%),
        linear-gradient(170deg, #0b1f58 0%, #132f78 56%, #17439d 100%);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.24);
}

.contact-info-panel h2 {
    color: #ffffff;
}

.contact-info-panel > p {
    color: #cbd5e1;
}

.contact-panel-highlights {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-panel-highlights article {
    border: 1px solid rgba(191, 219, 254, 0.42);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.contact-panel-highlights i {
    color: #bfdbfe;
    font-size: 18px;
}

.contact-panel-highlights strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

.contact-panel-highlights span {
    display: block;
    margin-top: 2px;
    color: #dbeafe;
    font-size: 12px;
}

.contact-info-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-info-card {
    border: 1px solid rgba(191, 219, 254, 0.42);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 14px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(191, 219, 254, 0.85);
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.24);
}

.contact-info-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(191, 219, 254, 0.22);
    color: #bfdbfe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.contact-info-card h3 {
    margin: 0;
    font-size: 16px;
}

.contact-info-card a,
.contact-info-card p {
    margin-top: 3px;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.5;
}

.contact-info-card--email .contact-email-link {
    display: block;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-escalation-note {
    margin-top: 14px;
    border: 1px solid rgba(191, 219, 254, 0.45);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px;
}

.contact-escalation-note h4 {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

.contact-escalation-note p {
    margin-top: 5px;
    color: #dbeafe;
}

.contact-corporate-form {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.contact-form-badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-form-panel {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

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

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-corporate-form label {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.contact-corporate-form input,
.contact-corporate-form select,
.contact-corporate-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    padding: 11px 12px;
    font: inherit;
    color: #1e293b;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-corporate-form input:focus,
.contact-corporate-form select:focus,
.contact-corporate-form textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-corporate-form textarea {
    resize: vertical;
}

.contact-form-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.contact-form-actions p {
    font-size: 13px;
    color: #475569;
}

.about-snapshot-section {
    padding-top: 74px;
}

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

.about-snapshot-card {
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.about-snapshot-card strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
    color: #0f172a;
}

.about-snapshot-card span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-mission-card {
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.about-mission-card h3 {
    margin-top: 4px;
    font-size: 28px;
}

.about-mission-card p:last-child {
    margin-top: 10px;
}

.about-story-card {
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.about-story-copy p + p {
    margin-top: 12px;
}

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

.about-value-card {
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 18px 16px;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0ecff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-value-card h3 {
    margin-top: 12px;
    font-size: 19px;
}

.about-value-card p {
    margin-top: 6px;
}

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

.about-process-card {
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 18px 16px;
}

.about-process-step {
    display: inline-flex;
    min-width: 44px;
    height: 26px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-process-card h3 {
    margin-top: 10px;
    font-size: 18px;
}

.about-process-card p {
    margin-top: 6px;
}

.about-executive-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
}

.about-executive-card {
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: linear-gradient(180deg, #0f2d77 0%, #1e3a8a 100%);
    padding: 24px;
    color: #dbeafe;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.2);
}

.about-executive-card h2 {
    margin-top: 4px;
    color: #ffffff;
}

.about-executive-card > p {
    margin-top: 8px;
    color: #dbeafe;
}

.about-executive-metrics {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-executive-metrics article {
    border: 1px solid rgba(191, 219, 254, 0.4);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 10px;
    min-height: 96px;
    display: grid;
    align-content: center;
    gap: 4px;
}

.about-executive-metrics strong {
    font-size: 20px;
    color: #ffffff;
}

.about-executive-metrics span {
    font-size: 12px;
    color: #dbeafe;
}

.about-governance-card {
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.about-governance-card h3 {
    margin-top: 4px;
    font-size: 24px;
}

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

.about-governance-list li {
    min-height: 54px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px 12px;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.about-trust-list li {
    gap: 10px;
}

.about-trust-list li i {
    color: #2563eb;
    font-size: 18px;
    flex: 0 0 auto;
}

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

.about-capability-card {
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 18px 16px;
}

.about-capability-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-capability-card h3 {
    margin-top: 10px;
    font-size: 19px;
}

.about-capability-card p {
    margin-top: 6px;
}

.about-industry-block {
    border: 1px solid #dbe4f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

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

.about-industry-chip {
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #f8fbff;
    min-height: 52px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    font-weight: 600;
}

.about-industry-chip i {
    color: #2563eb;
    font-size: 18px;
}

.about-corporate-cta {
    border: 1px solid rgba(191, 219, 254, 0.45);
    border-radius: 22px;
    background: linear-gradient(145deg, #0f2d77, #1d4ed8);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.22);
    color: #dbeafe;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.about-corporate-cta h2 {
    color: #ffffff;
}

.about-corporate-cta p {
    margin-top: 8px;
    color: #dbeafe;
    max-width: 58ch;
}

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

/* About Page Section */
.about-page .page-hero--about {
    position: relative;
    border-bottom: 1px solid #d9e3f2;
    background:
        radial-gradient(640px 260px at 86% 0%, rgba(96, 165, 250, 0.2), transparent 72%),
        radial-gradient(520px 220px at 12% 8%, rgba(59, 130, 246, 0.18), transparent 74%),
        linear-gradient(160deg, #f7faff, #edf3fc);
}

.about-page .page-hero--about::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(37, 99, 235, 0.06), transparent 48%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.02), transparent 65%);
    pointer-events: none;
}

.about-page .page-hero--about .container {
    position: relative;
    z-index: 1;
}

.about-page .page-hero-content h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    letter-spacing: -0.035em;
}

.about-page .page-hero-content p {
    margin-top: 12px;
    max-width: 54ch;
    color: #475569;
    font-size: 1.04rem;
}

.about-page .page-hero-card {
    border-radius: 22px;
    border: 1px solid #d1dcf0;
    background:
        radial-gradient(200px 90px at 92% -8%, rgba(37, 99, 235, 0.12), transparent 72%),
        #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.about-page .page-hero-card h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
}

.about-page .page-hero-card li {
    color: #334155;
    font-size: 15px;
}

.about-page .section-title {
    margin: 0 auto 34px;
    max-width: 860px;
    text-align: center;
}

.about-page .section-title h2 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2rem, 3.3vw, 2.9rem);
    letter-spacing: -0.03em;
    color: #0f172a;
}

.about-page .section-title > p:not(.section-eyebrow) {
    margin: 12px auto 0;
    max-width: 62ch;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.65;
}

.about-page .about-snapshot-section {
    padding-top: 82px;
    background:
        radial-gradient(560px 220px at 8% 0%, rgba(37, 99, 235, 0.08), transparent 74%),
        linear-gradient(180deg, #f8fbff, #f2f7ff);
}

.about-page .about-snapshot-grid {
    gap: 18px;
}

.about-page .about-snapshot-card {
    border-radius: 20px;
    border: 1px solid #d2dff0;
    background:
        radial-gradient(130px 64px at 90% -2%, rgba(96, 165, 250, 0.12), transparent 72%),
        #ffffff;
    padding: 26px 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.about-page .about-snapshot-card strong {
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    letter-spacing: -0.02em;
}

.about-page .about-snapshot-card span {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #64748b;
}

.about-page .about-story-section {
    background:
        radial-gradient(500px 220px at 88% 0%, rgba(148, 163, 184, 0.12), transparent 72%),
        #f8fafc;
}

.about-page .about-story-card {
    max-width: 980px;
    margin-inline: auto;
    border-radius: 22px;
    border: 1px solid #dbe4f0;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.about-page .about-story-copy p {
    font-size: 1.06rem;
    line-height: 1.75;
    color: #334155;
}

.about-page .about-trust-section {
    background:
        radial-gradient(520px 240px at 12% 0%, rgba(59, 130, 246, 0.08), transparent 74%),
        linear-gradient(180deg, #f7fbff, #f4f8ff);
}

.about-page .about-governance-card {
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.about-page .about-trust-list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-page .about-trust-list li {
    min-height: 70px;
    border-radius: 16px;
    border: 1px solid #d4e1f2;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    padding: 14px 14px;
    font-size: 15px;
    line-height: 1.5;
}

.about-page .about-trust-list li i {
    color: #1d4ed8;
}

.about-page .about-mission-section {
    background:
        radial-gradient(520px 220px at 82% -4%, rgba(59, 130, 246, 0.12), transparent 72%),
        linear-gradient(180deg, #eff5ff, #f8fbff);
}

.about-page .about-mission-grid {
    gap: 20px;
}

.about-page .about-mission-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #d4e0f2;
    background: #ffffff;
    padding: 28px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.about-page .about-mission-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.about-page .about-mission-card h3 {
    font-size: clamp(1.9rem, 2.5vw, 2.4rem);
    letter-spacing: -0.03em;
}

.about-page .about-mission-card p:last-child {
    margin-top: 12px;
    color: #475569;
    font-size: 1.02rem;
}

.about-page .about-work-section {
    background:
        radial-gradient(520px 220px at 12% 0%, rgba(59, 130, 246, 0.1), transparent 74%),
        linear-gradient(180deg, #f7fbff, #eff5ff);
}

.about-page .about-process-grid {
    gap: 16px;
}

.about-page .about-process-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid #d4e0f2;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
    padding: 24px 18px;
}

.about-page .about-process-step {
    min-width: 52px;
    height: 30px;
    font-size: 12px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
}

.about-page .about-process-card h3 {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.28;
}

.about-page .about-process-card p {
    margin-top: 8px;
    color: #475569;
    font-size: 15px;
}

.about-page .about-values-section {
    background:
        radial-gradient(560px 240px at 88% 0%, rgba(37, 99, 235, 0.08), transparent 74%),
        linear-gradient(180deg, #f8fbff, #f2f7ff);
}

.about-page .about-values-grid {
    gap: 18px;
}

.about-page .about-value-card {
    border-radius: 20px;
    border: 1px solid #d4e0f2;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
    padding: 22px 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-page .about-value-card:hover {
    transform: translateY(-4px);
    border-color: #bfd4f2;
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
}

.about-page .about-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(145deg, #dbeafe, #eff6ff);
    color: #1d4ed8;
}

.about-page .about-value-card h3 {
    margin-top: 14px;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.about-page .about-value-card p {
    margin-top: 8px;
    color: #475569;
}

.about-page .about-final-section {
    padding-top: 10px;
}

.about-page .about-corporate-cta {
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background:
        radial-gradient(400px 180px at 0% 0%, rgba(59, 130, 246, 0.22), transparent 70%),
        linear-gradient(140deg, #0f172a, #1e3a8a);
    padding: 32px;
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.24);
}

.about-page .about-corporate-cta h2 {
    font-size: clamp(2rem, 3.1vw, 2.8rem);
    letter-spacing: -0.03em;
}

.about-page .about-corporate-cta p {
    font-size: 1.04rem;
    color: #dbeafe;
}

.about-page .about-corporate-actions {
    gap: 12px;
}

.about-page .about-corporate-cta .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .about-page .about-trust-list {
        grid-template-columns: 1fr;
    }

    .about-page .about-corporate-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .about-page .section-title {
        margin-bottom: 26px;
    }

    .about-page .section-title h2 {
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }

    .about-page .page-hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .about-page .about-story-card,
    .about-page .about-mission-card,
    .about-page .about-process-card,
    .about-page .about-value-card,
    .about-page .about-corporate-cta {
        padding: 20px;
    }
}

.filter-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.filter-toolbar-copy {
    display: grid;
    gap: 6px;
}

.filter-toolbar h2 {
    margin: 0;
}

.filter-result-summary {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.filter-count {
    color: #64748b;
    font-size: 18px;
    font-weight: 700;
}

.filter-sort-form {
    margin: 0;
}

.filter-toolbar select {
    width: 240px;
    border-radius: 12px;
    border-color: #d4dfef;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
}

.product-empty-state {
    grid-column: 1 / -1;
    border: 1px dashed #c6d6f0;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
    padding: 26px;
    text-align: center;
}

.product-empty-state h3 {
    margin: 0;
    font-size: 24px;
}

.product-empty-state p {
    margin: 8px 0 16px;
    color: #64748b;
}

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

.filtered-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--light);
    padding: 16px;
}

.filtered-card h3 {
    font-size: 18px;
}

.filtered-card p {
    margin-top: 4px;
    color: var(--dark);
    font-weight: 700;
}

.filtered-card span {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: #475569;
}

.table-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: auto;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

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

th {
    background: var(--light);
    color: var(--dark);
    font-weight: 700;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-card {
    width: 350px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #ffffff;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1e3a8a;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card p {
    margin-top: 12px;
}

.testimonial-card h3 {
    margin-top: 12px;
    font-size: 17px;
}

.testimonial-card span {
    display: inline-block;
    margin-top: 3px;
    font-size: 14px;
    color: #475569;
}

/* Final CTA Section */
.final-cta {
    background: transparent;
    color: #ffffff;
    padding: 76px 0;
}

.cta-inner {
    border: 1px solid rgba(191, 219, 254, 0.24);
    border-radius: 30px;
    background:
        radial-gradient(460px 220px at -2% 0%, rgba(59, 130, 246, 0.2), transparent 72%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.74), rgba(30, 41, 59, 0.74));
    padding: 34px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.38);
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 26px;
    align-items: center;
}

.cta-inner p {
    margin-top: 12px;
    color: #dbeafe;
    max-width: 50ch;
}

.cta-copy h2 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2.1rem, 3vw, 2.95rem);
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.cta-benefits {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cta-benefits span {
    border: 1px solid rgba(191, 219, 254, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #eff6ff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-benefits i {
    color: #93c5fd;
    font-size: 14px;
}

.cta-actions-card {
    border: 1px solid rgba(191, 219, 254, 0.22);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
        rgba(15, 23, 42, 0.44);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.cta-actions-card h3 {
    margin-top: 10px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.1;
}

.cta-actions-card > p:last-of-type {
    margin-top: 8px;
    color: #cbd5e1;
}

.cta-actions-label {
    margin: 0;
    color: #bfdbfe;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 700;
}

.cta-actions-card .hero-buttons {
    margin-top: 12px;
}

.cta-meta {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.cta-meta article {
    border: 1px solid rgba(191, 219, 254, 0.2);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.32);
    padding: 10px 11px;
}

.cta-meta strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
}

.cta-meta span {
    display: block;
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
}

.final-cta .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.final-cta .btn-primary {
    background: #0ea5e9;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.4);
}

.home-main {
    --home-card-radius: 10px;
    --home-section-gap: 50px;
}

.home-main .section-title > p:not(.section-eyebrow),
.home-main .banner-copy .lead,
.home-main .home-cta-copy > p,
.home-main .why-compare-head p,
.home-main .cta-copy > p,
.home-main .cta-actions-card > p {
    font-family: "Outfit", "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.home-main .section-title h2,
.home-main .brand-strip-copy h2,
.home-main .how-works-head h3,
.home-main .why-compare-head h3 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0f172a;
}

.home-main .section-title > p:not(.section-eyebrow),
.home-main .brand-strip-copy > p,
.home-main .how-works-head p,
.home-main .why-compare-head p {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    font-weight: 500;
    line-height: 1.55;
    color: #475569;
}

.home-main .home-cta-copy h2,
.home-main .cta-copy h2,
.home-main .cta-actions-card h3 {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.home-main .home-cta-copy > p,
.home-main .cta-copy > p,
.home-main .cta-actions-card > p {
    font-family: "Plus Jakarta Sans", "Outfit", "Inter", sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0;
}

.home-main > .section:not(.hero-banner) {
    margin-top: var(--home-section-gap);
}

.home-main .brand-strip,
.home-main .brand-tile,
.home-main .home-cta-card,
.home-main .home-cta-points article,
.home-main .bestseller-feature,
.home-main .bestseller-feature-image,
.home-main .bestseller-mini-card,
.home-main .bestseller-mini-image,
.home-main .printer-category-card,
.home-main .why-visual-card,
.home-main .why-card-icon,
.home-main .why-compare-card,
.home-main .trust-column,
.home-main .trust-list li,
.home-main .why-stat-card,
.home-main .cta-inner,
.home-main .cta-actions-card,
.home-main .cta-meta article {
    border-radius: var(--home-card-radius);
}

/* Footer Section */
.footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(520px 230px at 8% -10%, rgba(56, 189, 248, 0.18), transparent 72%),
        radial-gradient(460px 190px at 92% 6%, rgba(99, 102, 241, 0.14), transparent 74%),
        linear-gradient(180deg, #f8fbff, #eef5ff 55%, #eaf2ff);
    color: #334155;
    padding: 58px 0 16px;
    border-top: 1px solid #dbe4f0;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 180px;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid #cfe0fb;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(6px);
}

.footer-cta-copy {
    display: grid;
    gap: 5px;
}

.footer-cta .section-eyebrow {
    margin-bottom: 2px;
    color: #2563eb;
}

.footer-cta h3 {
    color: #0f172a;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.2;
}

.footer-cta p {
    color: #475569;
    margin: 0;
    max-width: 58ch;
    font-size: 14px;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 190px;
}

.footer-cta-actions .btn {
    min-width: 170px;
    min-height: 44px;
}

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

.footer-col {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.footer-col--brand {
    padding-right: 10px;
}

.footer-brand-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon i {
    font-size: 18px;
}

.footer-brand-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-brand-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 5px 10px;
    background: #eff6ff;
}

.footer-brand-tags i {
    font-size: 14px;
    color: #2563eb;
}

.footer h3,
.footer h4 {
    color: #0f172a;
    margin: 0 0 10px;
}

.footer h3 {
    font-size: 21px;
}

.footer h4 {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e40af;
    position: relative;
    padding-bottom: 8px;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #60a5fa, #2563eb);
}

.footer-links {
    display: grid;
    gap: 7px;
}

.footer a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #334155;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
    font-size: 14px;
}

.footer-link-button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #334155;
    font: inherit;
    line-height: 1.45;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    font-size: 14px;
}

.footer-contact-list {
    display: grid;
    gap: 8px;
}

.footer-contact-list p,
.footer-contact-list a {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-list i {
    margin-top: 2px;
    color: #2563eb;
    font-size: 16px;
}

.footer a:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

.footer-link-button:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #dbe4f0;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 10px 18px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom p {
    color: #64748b;
    margin: 0;
    font-size: 13px;
}

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

body.nav-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 68;
}

/* Policy Modal Section */
.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

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

.policy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.66);
    backdrop-filter: blur(10px);
}

.policy-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    max-height: min(88vh, 900px);
    border-radius: 24px;
    border: 1px solid rgba(219, 228, 240, 0.9);
    background: #ffffff;
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.policy-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.policy-modal__title {
    display: grid;
    gap: 3px;
}

.policy-modal__label {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #2563eb;
}

.policy-modal__header h3 {
    font-size: 24px;
}

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

.policy-modal__icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.policy-modal__icon-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.policy-modal__icon-btn span {
    font-size: 26px;
    line-height: 1;
}

.policy-modal__body {
    padding: 0;
    max-height: calc(min(88vh, 900px) - 80px);
    overflow: auto;
}

.policy-modal__content {
    padding: 22px 22px 28px;
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
}

.policy-modal--refund .policy-modal__header {
    background: linear-gradient(180deg, #ecfeff 0%, #f8fbff 100%);
}

.policy-modal--shipping .policy-modal__header {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
}

.policy-modal--terms .policy-modal__header {
    background: linear-gradient(180deg, #f5f3ff 0%, #f8fbff 100%);
}

.policy-modal--appointment .policy-modal__header {
    align-items: flex-start;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fbff 100%);
}

/* Appointment Modal Section */
.appointment-modal-panel {
    width: min(100%, 700px);
    border: 1px solid #cfdcf3;
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.2);
}

.appointment-subtitle {
    margin: 8px 0 0;
    max-width: 52ch;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.appointment-form {
    padding: 24px;
    display: grid;
    gap: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

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

.appointment-field {
    display: grid;
    gap: 7px;
}

.appointment-field--full {
    grid-column: 1 / -1;
}

.appointment-field label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.appointment-field input,
.appointment-field textarea {
    height: 44px;
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    padding: 0 13px;
    font: inherit;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-field textarea {
    min-height: 110px;
    height: auto;
    padding: 11px 13px;
    resize: vertical;
}

.appointment-field input:focus,
.appointment-field textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.appointment-submit {
    margin-top: 8px;
    width: 100%;
}

.appointment-status {
    margin: 0 0 6px;
    display: block;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #bbf7d0;
    background: #ecfdf3;
    color: #166534;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
}

.appointment-status[hidden] {
    display: none !important;
}

.appointment-status--error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

@media print {
    body * {
        visibility: hidden;
    }

    .policy-modal,
    .policy-modal * {
        visibility: visible;
    }

    .policy-modal {
        position: static;
        padding: 0;
    }

    .policy-modal__backdrop,
    .policy-modal__actions {
        display: none !important;
    }

    .policy-modal__panel {
        width: 100%;
        max-height: none;
        box-shadow: none;
        border: 0;
    }

    .policy-modal__body {
        max-height: none;
        overflow: visible;
    }
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-ready [data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.system-page {
    background: var(--light);
}

.system-header {
    padding: 64px 0 24px;
}

.system-header p {
    margin-top: 10px;
    max-width: 680px;
}

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

.swatch {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
}

.swatch-tone {
    height: 110px;
    border-radius: 10px;
}

.swatch label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #334155;
}

.type-card {
    margin-top: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    background: #ffffff;
}

.type-card p {
    margin-top: 10px;
}

/* Responsive Section (1200px) */
@media (max-width: 1200px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .nav-inner {
        padding: 0 32px;
    }
}

/* Responsive Section (1024px) */
@media (max-width: 1024px) {
    .hero-grid,
    .sticky-grid,
    .filter-layout,
    .bestseller-layout,
    .bestseller-feature,
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .bestseller-section::after {
        display: none;
    }

    .sticky-section {
        min-height: auto;
    }

    .filter-sidebar {
        position: static;
        top: auto;
        border-right: 0;
        border-bottom: 1px solid #dbe4f0;
        padding: 0 0 14px;
    }

    .select-wrap select {
        height: 52px;
    }

    .sticky-card {
        position: static;
    }

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

    .product-detail-sticky {
        position: static;
        top: auto;
    }

    .product-detail-scroll {
        max-height: none;
        overflow: visible;
    }

    .product-detail-specs h3 {
        font-size: 22px;
    }

    .brand-strip {
        grid-template-columns: 1fr;
    }

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

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .printer-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .printer-category-head {
        margin-bottom: 32px;
    }

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

    .why-compare-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .how-works-visual img {
        min-height: 280px;
    }

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

    .how-works-grid::before {
        display: none;
    }

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

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

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

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

    .contact-hero-grid,
    .contact-corp-layout,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

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

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

    .about-executive-wrap,
    .about-corporate-cta {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-hero-copy,
    .contact-hero-card,
    .contact-info-panel,
    .contact-form-panel {
        padding: 20px;
    }

    .checkout-main {
        padding-right: 0;
    }

    .checkout-order {
        position: static;
        top: auto;
    }

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

    .banner-card {
        min-height: clamp(300px, 42vw, 390px);
    }

    .banner-content {
        min-height: clamp(300px, 42vw, 390px);
        width: min(700px, calc(100% - 40px));
        padding: 30px 18px;
    }

    .banner-content .lead {
        font-size: 0.93rem;
    }

    .banner-copy {
        width: min(100%, 620px);
    }

    .bestseller-feature-visual {
        min-height: 260px;
    }
}

/* Responsive Section (760px) */
@media (max-width: 760px) {
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    .filter-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        position: relative;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(86vw, 320px);
        max-width: 320px;
        border-right: 1px solid #dbe4f0;
        border-bottom: 0;
        border-radius: 0;
        background: #ffffff;
        padding: 56px 14px 18px;
        box-shadow: 0 22px 38px rgba(15, 23, 42, 0.2);
        transform: translateX(-108%);
        transition: transform 0.22s ease;
        z-index: 1300;
        overflow-y: auto;
    }

    .filter-sidebar h3 {
        font-size: clamp(1.45rem, 7vw, 1.8rem);
        padding-right: 40px;
    }

    .filter-sidebar.is-open {
        transform: translateX(0);
    }

    .mobile-filter-toggle {
        display: inline-flex;
        width: fit-content;
    }

    .filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.46);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1290;
    }

    .filter-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .filter-mobile-close {
        display: inline-flex;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: 1px solid #dbe4f0;
        background: #f8fbff;
        color: #1d4ed8;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    .filter-mobile-close i {
        font-size: 20px;
    }

    .filter-group > p,
    .filter-group > label {
        font-size: 16px;
    }

    .select-wrap select {
        height: 48px;
        font-size: 16px;
    }

    .check-item {
        font-size: 16px;
    }

    .brand-check-grid {
        grid-template-columns: 1fr;
    }

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

    .checkout-field-grid {
        grid-template-columns: 1fr;
    }

    .checkout-payment {
        padding: 16px;
        border-radius: 16px;
    }

    .checkout-payment h3 {
        font-size: 24px;
    }

    .checkout-payment-option {
        grid-template-columns: 18px 36px minmax(0, 1fr);
        padding: 12px;
    }

    .checkout-payment-option strong {
        font-size: 18px;
    }

    .checkout-order {
        padding: 18px;
        border-radius: 18px;
    }

    .checkout-order-item strong {
        font-size: 16px;
    }

    .checkout-order-qty-form input {
        width: 72px;
        height: 32px;
    }

    .checkout-order-total span {
        font-size: 24px;
    }

    .checkout-order-total strong {
        font-size: 28px;
    }

    .checkout-place-order {
        min-height: 56px;
        font-size: 19px;
    }

    .checkout-order-note {
        font-size: 14px;
    }

    .checkout-success {
        padding: 20px;
    }

    .checkout-delivery-note {
        border-radius: 14px;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        font-size: 13px;
    }

    .checkout-delivery-inline {
        border-radius: 12px;
        width: 100%;
        font-size: 12px;
    }

    .checkout-success-meta {
        grid-template-columns: 1fr;
    }

    .header-shell {
        padding-top: 6px;
    }

    .header-shell .container {
        width: min(100%, calc(100vw - 16px));
    }

    .promo-strip {
        max-height: none;
        overflow: visible;
    }

    .promo-inner {
        min-height: auto;
        padding: 8px 12px;
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 14px 14px 0 0;
    }

    .promo-inner p {
        font-size: 12px;
        line-height: 1.4;
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .nav-inner {
        height: 64px;
        padding: 0 10px;
        gap: 8px;
        border-radius: 0 0 14px 14px;
    }

    .logo {
        gap: 8px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .nav-actions {
        gap: 8px;
    }

    .cart-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .cart-btn svg {
        width: 18px;
        height: 18px;
    }

    .menu-toggle {
        display: inline-flex !important;
        width: 40px;
        height: 40px;
    }

    .menu {
        position: absolute;
        left: 8px;
        right: 8px;
        top: calc(100% + 10px);
        max-height: min(72vh, 560px);
        padding: 12px;
        border: 1px solid rgba(191, 219, 254, 0.28);
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 22px 38px rgba(2, 6, 23, 0.38);
        display: grid;
        align-content: start;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        overflow-y: auto;
        z-index: 92;
    }

    .menu > a,
    .menu > .menu-dropdown {
        position: relative;
        z-index: 1;
    }

    .menu a,
    .menu-dropdown-trigger {
        display: block;
        width: 100%;
        color: #dbeafe;
        font-weight: 600;
        line-height: 1.35;
        padding: 10px 11px;
        border-radius: 10px;
        border: 1px solid rgba(191, 219, 254, 0.2);
        background: rgba(255, 255, 255, 0.06);
    }

    .menu a.active,
    .menu-dropdown-trigger.active {
        color: #ffffff;
        background: rgba(37, 99, 235, 0.35);
        border: 1px solid rgba(147, 197, 253, 0.38);
    }

    .menu-dropdown {
        display: grid;
        gap: 6px;
        margin: 0;
        padding: 0;
    }

    .menu-dropdown::after {
        display: none;
    }

    .menu-dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-dropdown-trigger i {
        display: inline-flex !important;
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .menu-dropdown-panel {
        position: static;
        width: 100%;
        border: 1px solid rgba(191, 219, 254, 0.26);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        padding: 8px;
        display: none;
        gap: 8px;
        max-height: 36vh;
        overflow-y: auto;
    }

    .menu-dropdown.is-open .menu-dropdown-panel {
        display: grid;
    }

    .menu-dropdown.is-open .menu-dropdown-trigger i {
        transform: rotate(180deg);
    }

    .menu-dropdown-panel .menu-dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(191, 219, 254, 0.24);
        border-radius: 8px;
        padding: 8px 10px;
        color: #dbeafe;
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-dropdown-panel .menu-dropdown-item i {
        color: #93c5fd;
    }

    .menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu.is-open > * {
        animation: menuOptionIn 0.24s ease both;
    }

    .menu.is-open > *:nth-child(1) {
        animation-delay: 0.02s;
    }

    .menu.is-open > *:nth-child(2) {
        animation-delay: 0.05s;
    }

    .menu.is-open > *:nth-child(3) {
        animation-delay: 0.08s;
    }

    .menu.is-open > *:nth-child(4) {
        animation-delay: 0.11s;
    }

    .appointment-btn {
        display: none;
    }

    .login-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding: 72px 0;
    }

    .hero-banner {
        padding: 22px 0 2px;
    }

    .banner-card {
        min-height: clamp(270px, 76vw, 330px);
    }

    .banner-content {
        min-height: clamp(270px, 76vw, 330px);
        width: min(100%, calc(100% - 24px));
        padding: 22px 12px;
    }

    .banner-copy {
        width: 100%;
    }

    .banner-content .section-eyebrow {
        margin-bottom: 8px;
        white-space: normal;
    }

    .banner-content .hero-buttons {
        margin-top: 12px;
    }

    .banner-content .lead {
        margin-top: 14px;
        max-width: 34ch;
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .banner-content .lead span {
        white-space: normal;
    }

    .banner-content h1 {
        max-width: 15ch;
        font-size: clamp(2rem, 8vw, 2.9rem);
    }

    .banner-metrics--inline {
        width: 100%;
    }

    .banner-highlights {
        margin-top: 16px;
        gap: 6px;
    }

    .banner-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .banner-metrics article {
        padding: 7px 10px;
    }

    .banner-metrics strong {
        font-size: 15px;
    }

    .banner-metrics span {
        font-size: 10px;
    }

    .hero-placeholder {
        min-height: 300px;
    }

    .search-card {
        flex-direction: column;
    }

    .floating-card {
        position: static;
        margin-top: 10px;
    }

    .split-title,
    .filter-toolbar,
    .footer-cta,
    .footer-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta {
        width: 100%;
    }

    .footer-col {
        padding: 16px;
    }

    .filter-toolbar select {
        width: 100%;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 66px 0;
    }

    .contact-hero {
        padding-top: 32px;
    }

    .about-snapshot-grid,
    .about-values-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-capability-grid,
    .about-industry-grid,
    .about-executive-metrics {
        grid-template-columns: 1fr;
    }

    .about-mission-card h3 {
        font-size: 24px;
    }

    .about-governance-card h3 {
        font-size: 22px;
    }

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

    .about-corporate-actions .btn {
        width: 100%;
    }

    .contact-hero-copy h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .contact-hero-tags {
        gap: 8px;
    }

    .contact-hero-tags span {
        min-height: 34px;
        font-size: 12px;
    }

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

    .contact-info-panel h2,
    .contact-form-head h2 {
        font-size: 24px;
    }

    .cart-summary {
        position: static;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

.contact-form-actions .btn {
    width: 100%;
}

    .contact-panel-highlights,
    .contact-info-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .product-detail-sticky,
    .product-detail-scroll {
        padding: 20px;
    }

    .product-detail-image-box {
        min-height: 260px;
    }

    .product-detail-actions-grid .btn {
        width: 100%;
        min-width: 0;
    }

    .product-detail-specs h3 {
        font-size: 20px;
    }

    .product-specs-table-modern tbody th,
    .product-specs-table-modern tbody td {
        padding: 12px;
    }

    .product-specs-table-modern tbody td {
        font-size: 16px;
    }

    .home-main {
        --home-section-gap: 50px;
    }

    .brand-strip-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brand-strip {
        padding: 20px;
        gap: 18px;
    }

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

    .brand-tile {
        min-height: 82px;
        font-size: 1.45rem;
    }

    .home-cta-section {
        padding-top: 10px;
        padding-bottom: 24px;
    }

    .home-cta-card {
        padding: 22px;
    }

    .home-cta-copy p {
        max-width: 34ch;
    }

    .home-cta-points strong {
        font-size: 16px;
    }

    .cta-inner {
        padding: 22px;
    }

    .final-cta {
        padding: 64px 0;
    }

    .cta-actions-card h3 {
        font-size: 24px;
    }

    .cta-benefits {
        gap: 6px;
    }

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

    .printer-category-section {
        padding-top: 66px;
    }

    .printer-category-head p {
        max-width: 34ch;
        font-size: 1rem;
        white-space: normal;
    }

    .why-choose-head {
        margin-bottom: 28px;
    }

    .why-choose-head > p:last-child {
        max-width: 34ch;
        font-size: 1rem;
    }

    .why-compare-card {
        padding: 20px;
    }

    .why-compare-head h3 {
        font-size: 24px;
    }

    .why-compare-grid {
        grid-template-columns: 1fr;
    }

    .how-works-card {
        padding: 0;
    }

    .how-works-grid {
        grid-template-columns: 1fr;
    }

    .how-works-visual img {
        min-height: 220px;
    }

    .how-step-item {
        min-height: auto;
    }

    .trust-list li {
        min-height: 52px;
        padding: 9px 10px;
        font-size: 14px;
    }

    .category-grid,
    .printer-category-grid,
    .why-visual-grid,
    .why-stats-grid,
    .product-grid,
    .filtered-grid,
    .swatch-grid,
    .footer-grid,
    .bestseller-feature-meta {
        grid-template-columns: 1fr;
    }

    .product-actions {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .product-view-link {
        font-size: 12px;
    }

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

    .cart-item-image {
        min-height: 120px;
    }

    .cart-main-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-top .cart-line-total {
        display: none;
    }

    .cart-item-total-mobile {
        display: block;
    }

    .cart-item-actions {
        min-width: 0;
    }

    .cart-line-total {
        text-align: left;
    }

    .bestseller-mini-card {
        grid-template-columns: 1fr;
    }

    .bestseller-feature {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid #dbe4f0;
        background: #ffffff;
        box-shadow: var(--shadow-sm);
    }

    .bestseller-feature-badge {
        position: static;
        margin-bottom: 2px;
    }

    .bestseller-feature-copy h3 {
        max-width: 100%;
        font-size: 1.08rem;
        line-height: 1.32;
    }

    .bestseller-feature .bestseller-price {
        font-size: 1.18rem;
        letter-spacing: 0;
    }

    .bestseller-layout {
        gap: 12px;
    }

    .bestseller-feature,
    .bestseller-mini-card {
        transform: none;
    }

    .bestseller-feature:hover,
    .bestseller-mini-card:hover {
        transform: none;
        border-color: #dbe4f0;
        box-shadow: var(--shadow-sm);
    }

    .bestseller-feature-image,
    .bestseller-mini-image {
        min-height: 132px;
        border-radius: 10px;
    }

    .bestseller-feature-copy,
    .bestseller-mini-copy {
        gap: 8px;
    }

    .bestseller-mini-copy h3 {
        font-size: 1.02rem;
        line-height: 1.3;
    }

    .bestseller-price {
        font-size: 1.1rem;
    }

    .bestseller-feature-note,
    .bestseller-mini-desc {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.45;
    }

    .bestseller-card-actions {
        gap: 8px;
    }

    .bestseller-card-actions .product-buy-form,
    .bestseller-card-actions .product-cart-icon-form,
    .bestseller-card-actions .bestseller-view-link {
        width: 100%;
    }

    .bestseller-card-actions .product-cart-icon-form .btn-cart-icon {
        width: 100%;
        height: 40px;
        justify-content: center;
    }

    .floating-search-bar {
        width: min(100vw - 18px, 560px);
        grid-template-columns: 20px minmax(0, 1fr);
        height: auto;
        padding: 10px;
        gap: 8px;
    }

    .floating-search-bar button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .printer-category-card {
        min-height: 170px;
        padding: 22px 16px;
    }

    .testimonial-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .policy-modal {
        padding: 12px;
    }

    .policy-modal__header {
        padding: 14px 16px;
    }

    .policy-modal__header h3 {
        font-size: 20px;
    }

    .policy-modal__body {
        max-height: calc(100vh - 96px);
    }

    .policy-modal__content {
        padding: 16px 16px 24px;
        font-size: 13px;
    }

    .appointment-form {
        padding: 18px;
    }

    .appointment-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .header-shell.is-scrolled .promo-strip {
        max-height: none;
        opacity: 1;
        transform: translateY(0);
    }

    .header-shell.is-scrolled .nav-inner {
        border-radius: 0 0 14px 14px;
    }
}

/* Responsive Section (420px) */
@media (max-width: 420px) {
    .logo-text {
        display: none;
    }

    .promo-inner p:last-child {
        font-size: 11px;
    }
}

/* Responsive Section (761px to 991px) */
@media (min-width: 761px) and (max-width: 991px) {
    .header-shell {
        padding-top: 6px;
    }

    .header-shell .container {
        width: min(100%, calc(100vw - 16px));
    }

    .promo-strip {
        max-height: none;
        overflow: visible;
    }

    .promo-inner {
        min-height: auto;
        padding: 8px 12px;
        gap: 4px;
        border-radius: 14px 14px 0 0;
    }

    .promo-inner p {
        font-size: 12px;
        line-height: 1.35;
    }

    .nav-inner {
        height: 64px;
        padding: 0 10px;
        gap: 8px;
        border-radius: 0 0 14px 14px;
    }

    .logo {
        gap: 8px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .menu-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
    }

    .menu {
        position: absolute;
        left: 8px;
        right: 8px;
        top: calc(100% + 8px);
        max-height: min(68vh, 560px);
        padding: 12px;
        border: 1px solid rgba(191, 219, 254, 0.28);
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.28);
        display: grid;
        align-content: start;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        overflow-y: auto;
        z-index: 92;
    }

    .menu > a,
    .menu > .menu-dropdown {
        position: relative;
        z-index: 1;
    }

    .menu a,
    .menu-dropdown-trigger {
        display: block;
        width: 100%;
        color: #dbeafe;
        font-weight: 600;
        line-height: 1.35;
        padding: 10px 11px;
        border-radius: 10px;
        border: 1px solid rgba(191, 219, 254, 0.2);
        background: rgba(255, 255, 255, 0.06);
    }

    .menu-dropdown {
        display: grid;
        gap: 6px;
        margin: 0;
        padding: 0;
    }

    .menu-dropdown::after {
        display: none;
    }

    .menu-dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-dropdown-trigger i {
        display: inline-flex !important;
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .menu-dropdown-panel {
        position: static;
        width: 100%;
        border: 1px solid rgba(191, 219, 254, 0.26);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        padding: 8px;
        display: none;
        gap: 8px;
        max-height: 34vh;
        overflow-y: auto;
    }

    .menu-dropdown.is-open .menu-dropdown-panel {
        display: grid;
    }

    .menu-dropdown.is-open .menu-dropdown-trigger i {
        transform: rotate(180deg);
    }

    .menu-dropdown-panel .menu-dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(191, 219, 254, 0.24);
        border-radius: 8px;
        padding: 8px 10px;
        color: #dbeafe;
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-dropdown-panel .menu-dropdown-item i {
        color: #93c5fd;
    }

    .menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu.is-open > * {
        animation: menuOptionIn 0.24s ease both;
    }

    .menu.is-open > *:nth-child(1) {
        animation-delay: 0.02s;
    }

    .menu.is-open > *:nth-child(2) {
        animation-delay: 0.05s;
    }

    .menu.is-open > *:nth-child(3) {
        animation-delay: 0.08s;
    }

    .menu.is-open > *:nth-child(4) {
        animation-delay: 0.11s;
    }

    .nav-actions {
        gap: 8px;
        margin-left: auto;
    }

    .nav-actions .cart-btn {
        order: 1;
    }

    .nav-actions .menu-toggle {
        order: 2;
        margin-left: 2px;
    }

    .cart-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .cart-btn svg {
        width: 18px;
        height: 18px;
    }

    .appointment-btn {
        display: none;
    }

.login-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: inline-flex;
    }
}

.policy-modal__text-block {
    margin: 0;
    white-space: pre-wrap;
    font: 500 0.95rem/1.7 "Inter", "Segoe UI", sans-serif;
    color: #1f2937;
}

.policy-modal__table-wrap {
    overflow-x: auto;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    margin: 1rem 0;
    background: #ffffff;
}

.policy-modal__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.policy-modal__table th,
.policy-modal__table td {
    border: 1px solid #cfd8e3;
    padding: 0.7rem 0.75rem;
    vertical-align: top;
    text-align: left;
    color: #1f2937;
    font-size: 0.9rem;
    line-height: 1.45;
}

.policy-modal__table th {
    background: #eef3fa;
    font-weight: 700;
}

.policy-modal__table td:last-child,
.policy-modal__table th:last-child {
    text-align: center;
    white-space: nowrap;
    font-weight: 700;
    width: 90px;
}
