﻿@import url("/assets/css/theme-tokens.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.55;
    background: #fafbfc;
    min-height: 100vh;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f0f2f8;
}

.header-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--brand-ink);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 24px;
}

.brand-logo-img {
    height: 40px;
    max-width: 210px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(
        145deg,
        var(--brand-sky) 0%,
        var(--brand-cyan) 100%
    );
    box-shadow: 0 10px 22px rgba(45, 127, 249, 0.35);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 1;
}

.main-nav-link {
    text-decoration: none;
    color: #23416f;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 999px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.main-nav-link:hover {
    background: #eef5ff;
    color: var(--brand-sky);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

.header-cta-ghost {
    color: var(--brand-ink);
    border: 2px solid #1b3f72;
    background: #fff;
}

.header-cta-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(24, 72, 184, 0.15);
}

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

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 14px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.search-box:focus-within {
    border-color: rgba(24, 72, 184, 0.5);
    box-shadow: 0 0 0 4px rgba(24, 72, 184, 0.15);
    transform: translateY(-1px);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-main);
}

.search-box button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: #e8f1ff;
    cursor: pointer;
}

.btn-login {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 11px;
    padding: 10px 16px;
}

.btn-login-admin {
    color: #fff;
    background: linear-gradient(
        145deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    box-shadow: 0 10px 20px rgba(24, 72, 184, 0.3);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-login-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(24, 72, 184, 0.36);
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-search {
    margin-bottom: 10px;
}

.mobile-links {
    display: grid;
    gap: 8px;
}

.mobile-links-nav {
    margin-bottom: 10px;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 48px;
}

.hero-section {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(24, 45, 80, 0.06);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-kicker {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-sky);
    margin-bottom: 8px;
}

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

.hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--brand-ink);
    max-width: 16ch;
    margin-bottom: 14px;
}

.hero-copy h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, #5b8dff 100%);
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 34rem;
    font-size: 15px;
    line-height: 1.65;
}

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

.hero-note {
    margin-top: 10px;
    color: #61789d;
    font-size: 13px;
    font-weight: 600;
}

.hero-note a {
    color: var(--brand-sky);
    text-decoration: none;
    font-weight: 800;
}

.hero-note a:hover {
    text-decoration: underline;
}

.hero-action {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    padding: 11px 16px;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.hero-action-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(24, 72, 184, 0.15);
}

.hero-action-primary:hover {
    transform: translateY(-2px);
}

.hero-action-ghost {
    color: var(--brand-ink);
    border: 1px solid #cbdcf5;
    background: rgba(255, 255, 255, 0.9);
}

.hero-action-ghost:hover {
    transform: translateY(-2px);
    border-color: #b5cff3;
}

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

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    background: #f8fafe;
    border: none;
}

.hero-brand-panel {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(145deg, #f0f5ff 0%, #eaf1ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-brand-image {
    width: 180px;
    max-width: 60%;
    border-radius: 10px;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 4px 16px rgba(24, 45, 80, 0.1);
}

.hero-orb {
    display: none;
}

.hero-orb-blue {
    display: none;
}

.hero-orb-red {
    display: none;
}

.hero-dashboard-card {
    position: absolute;
    z-index: 2;
    bottom: 60px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #e5ecf5;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(24, 45, 80, 0.08);
}

.hero-dashboard-card p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f7cab;
    font-weight: 800;
}

.hero-dashboard-card strong {
    display: block;
    margin-top: 5px;
    font-family: var(--font-heading);
    color: var(--brand-ink);
    font-size: 20px;
    line-height: 1.2;
}

.hero-dashboard-card span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #5f7599;
    font-weight: 600;
}

.hero-float-card {
    position: absolute;
    right: 16px;
    z-index: 3;
    border: 1px solid #e5ecf5;
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    width: min(200px, calc(100% - 32px));
    box-shadow: 0 4px 12px rgba(24, 45, 80, 0.08);
}

.hero-float-card strong {
    display: block;
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 700;
}

.hero-float-card span {
    display: block;
    color: #6b7f9e;
    font-size: 11.5px;
    margin-top: 3px;
    font-weight: 500;
}

.hero-float-card-top {
    top: 20px;
}

/* ── Hero Visual (HausJo style) ── */
.visual-bg-shape {
    position: absolute;
    top: -20%;
    right: -12%;
    width: 88%;
    height: 140%;
    background: var(--primary);
    border-radius: 42% 58% 38% 62% / 46% 40% 60% 54%;
    z-index: 0;
}

.visual-logo-wrap {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 14%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.visual-logo-img {
    width: 140px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
    display: block;
}

.visual-logo-sub {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    letter-spacing: 0.02em;
}

.visual-card {
    position: absolute;
    z-index: 3;
    left: 16px;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    width: min(200px, 52%);
    box-shadow: 0 6px 18px rgba(24, 45, 80, 0.13);
}

.visual-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 3px;
}

.visual-card span {
    display: block;
    font-size: 11.5px;
    color: #6b7f9e;
    font-weight: 500;
    line-height: 1.4;
}

.visual-card-top {
    top: 24px;
}

.visual-card-bottom {
    bottom: 24px;
}

.catalog-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin: 32px 0 20px;
}

.section-kicker {
    color: var(--brand-sky);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.catalog-intro h2 {
    font-family: var(--font-heading);
    color: var(--brand-ink);
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.18;
    max-width: 16ch;
}

.catalog-intro-subtitle {
    margin-top: 6px;
    color: #5b7298;
    font-size: 14px;
    line-height: 1.6;
    max-width: 52ch;
}

.catalog-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: min(100%, 420px);
    border: 1px solid #e8eef7;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(24, 45, 80, 0.04);
}

.catalog-search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 14px;
}

.catalog-search-box button {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(
        145deg,
        var(--primary-light) 0%,
        var(--primary) 100%
    );
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.value-card {
    border: 1px solid #e8eef7;
    border-radius: 12px;
    background: #ffffff;
    padding: 20px 18px;
    box-shadow: 0 1px 3px rgba(24, 45, 80, 0.04);
}

.value-card h3 {
    color: var(--brand-ink);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    color: #6b7f9e;
    font-size: 13px;
    line-height: 1.6;
}

.partner-showcase {
    margin: 12px 0 28px;
}

.showcase-track {
    position: relative;
    border-radius: 18px;
    border: 1px solid #e4ebf6;
    background: #f5f8fd;
    min-height: 280px;
    overflow: hidden;
}

.showcase-slide {
    display: none;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    min-height: 280px;
}

.showcase-slide.is-active {
    display: grid;
}

.showcase-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #dfe9ff 0%, #bdd2ff 100%);
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-media-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #3b70dc 0%, #1d48b8 100%);
}

.showcase-media-fallback img {
    width: min(230px, 60%);
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 28px rgba(12, 29, 62, 0.22);
    object-fit: contain;
}

.showcase-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    border: 1px solid #dce6f8;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 26px 30px;
    background: #f5f8fd;
}

.showcase-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.14;
    color: var(--brand-ink);
}

.showcase-content p {
    font-size: 16px;
    color: #5b7197;
    line-height: 1.6;
    max-width: 48ch;
}

.showcase-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.showcase-meta span {
    color: #5b7197;
    font-size: 13px;
    font-weight: 700;
}

.showcase-meta a {
    text-decoration: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
    box-shadow: 0 6px 16px rgba(24, 72, 184, 0.22);
}

.showcase-controls {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.showcase-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 2px solid #1b3f72;
    background: transparent;
    color: #1b3f72;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.showcase-dots {
    display: inline-flex;
    gap: 8px;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #cfd9ea;
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.showcase-dot.is-active {
    width: 28px;
    background: #3c73dd;
}

.hero-stat-card {
    border: 1px solid #e8eef7;
    border-radius: 10px;
    background: #ffffff;
    padding: 14px 12px;
    box-shadow: 0 1px 3px rgba(24, 45, 80, 0.04);
}

.hero-stat-card strong {
    display: block;
    color: var(--brand-ink);
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: -0.01em;
}

.hero-stat-card span {
    color: #5e769d;
    font-size: 12px;
    font-weight: 700;
}

.hero-search-box {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d6e4f8;
    border-radius: 12px;
    background: #ffffff;
    padding: 8px;
    max-width: 620px;
}

.hero-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
}

.hero-search-box button {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(
        145deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
}

.hero-search-box:focus-within {
    border-color: rgba(24, 72, 184, 0.5);
    box-shadow: 0 0 0 4px rgba(24, 72, 184, 0.12);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.hero-chip {
    border-radius: 8px;
    border: 1px solid #e0e8f5;
    background: #f5f8fc;
    color: #23416f;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
}

.filters-section {
    background: #ffffff;
    border: 1px solid #e8eef7;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(24, 45, 80, 0.04);
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-inline label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 800;
}

.filter-inline-sep {
    color: #8aa0c3;
    font-weight: 700;
}

.filter-inline select {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 9px 12px;
    font-size: 14px;
    color: var(--text-main);
    min-width: 210px;
}

.filter-inline select:focus {
    outline: none;
    border-color: rgba(24, 72, 184, 0.5);
    box-shadow: 0 0 0 4px rgba(24, 72, 184, 0.12);
}

.filter-note {
    color: #6a81a8;
    font-size: 12px;
    font-weight: 600;
}

.filter-group {
    min-width: 180px;
    flex: 0;
}

.filter-group-wide {
    flex: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 700;
}

.filter-group select,
.filter-group input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 11px 12px;
    font-size: 14px;
    color: var(--text-main);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: rgba(24, 72, 184, 0.5);
    box-shadow: 0 0 0 4px rgba(24, 72, 184, 0.12);
}

.spotlight-card {
    margin-bottom: 20px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(24, 72, 184, 0.1);
    padding: 18px 20px;
}

.spotlight-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #c9dcf8;
    background: #edf4ff;
    color: var(--brand-sky);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 8px;
}

.spotlight-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 6px;
    font-weight: 700;
}

.spotlight-card p {
    color: #6b7f9e;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 4px;
}

.products-info {
    margin-bottom: 14px;
}

.products-count {
    color: #6b7f9e;
    font-size: 13px;
    background: transparent;
    border: 1px solid #e8eef7;
    border-radius: 8px;
    display: inline-block;
    padding: 8px 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5ecf5;
    box-shadow: 0 2px 8px rgba(24, 45, 80, 0.04);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    animation: revealCard 0.45s ease both;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid transparent;
    background: linear-gradient(
            155deg,
            rgba(24, 72, 184, 0.35),
            rgba(183, 24, 53, 0.28)
        )
        border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #d5e5f5;
    box-shadow: 0 8px 16px rgba(24, 45, 80, 0.08);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 200px;
    background: #f5f8fc;
    display: grid;
    place-items: center;
    font-size: 56px;
    overflow: hidden;
    padding: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px 15px 14px;
}

.product-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-ink);
    letter-spacing: -0.01em;
    margin-bottom: 7px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-supplier {
    display: block;
    font-size: 12px;
    color: #6480aa;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-price {
    color: #0f5ec7;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: auto;
}

.product-stock {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #d4e3f7;
}

.stock-info {
    font-size: 12px;
    font-weight: 700;
}

.stock-info.available {
    color: #128257;
}

.stock-info.low {
    color: var(--danger);
}

.empty-state {
    background: #ffffff;
    border: 1px solid #e8eef7;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(24, 45, 80, 0.04);
    text-align: center;
    padding: 48px 20px;
}

.empty-icon {
    font-size: 62px;
    margin-bottom: 10px;
}

.empty-text {
    color: var(--text-main);
    font-weight: 700;
}

.empty-text-hint {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
}

.empty-action {
    display: inline-flex;
    margin-top: 14px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid #c8dbf6;
    color: #174495;
    background: #edf4ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.empty-action:hover {
    background: #e2edff;
}

.pagination {
    margin-top: 28px;
}

.pagination nav > div:first-child {
    display: none;
}

.pagination nav > div:last-child {
    display: flex;
    justify-content: center;
}

.pagination a,
.pagination span {
    border-radius: 10px;
}

/* ── Professional Footer ── */
footer {
    margin-top: 52px;
    background: linear-gradient(180deg, #0d1e38 0%, #152d52 100%);
    color: #d4e3f7;
    padding: 48px 24px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrap {
    margin-bottom: 14px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}

.footer-brand-tagline {
    font-size: 13.5px;
    line-height: 1.65;
    color: #bdd1f4;
    max-width: 280px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-col-title {
    font-family: var(--font-heading, "Sora", sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7fb3ff;
    margin-bottom: 12px;
}

.footer-link {
    font-size: 13.5px;
    color: #c5daff;
    text-decoration: none;
    padding: 3px 0;
    transition:
        color 0.18s,
        padding-left 0.18s;
    display: block;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-about-text {
    font-size: 13px;
    line-height: 1.65;
    color: #bdd1f4;
    margin: 0 0 14px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: #cce0ff;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 0 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(200, 220, 255, 0.65);
}

.footer-bottom-sep {
    opacity: 0.5;
}

.footer-creator-inline {
    font-family: var(--font-heading, "Sora", sans-serif);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #7fb3ff;
    opacity: 1;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 12px 16px;
    background: #fff;
    border-top: 1px solid #e8eef7;
    z-index: 150;
    gap: 10px;
}

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

@media (max-width: 900px) {
    .main-nav,
    .header-cta-group {
        display: none;
    }

    .showcase-slide {
        grid-template-columns: 1fr;
    }

    .showcase-media {
        min-height: 220px;
    }

    .showcase-content {
        padding: 20px;
    }

    .showcase-content h3 {
        font-size: clamp(22px, 4vw, 32px);
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 12px 14px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .container {
        padding: 16px 14px 100px;
    }

    .hero-section {
        padding: 14px;
        border-radius: 18px;
    }

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

    .catalog-intro {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin: 22px 0 14px;
    }

    .catalog-search-box {
        width: 100%;
        min-width: 0;
    }

    .partner-showcase {
        margin-top: 6px;
    }

    .showcase-track {
        border-radius: 14px;
    }

    .showcase-content p {
        font-size: 14px;
    }

    .showcase-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .hero-visual {
        min-height: 280px;
        padding: 20px;
    }

    .hero-brand-image {
        width: 140px;
    }

    .hero-float-card-top {
        top: 106px;
        bottom: auto;
    }

    .mobile-sticky-cta {
        display: none !important;
    }

    .mobile-sticky-btn {
        text-decoration: none;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        border-radius: 10px;
        padding: 11px 10px;
    }

    .mobile-sticky-btn-primary {
        color: #fff;
        background: var(--primary);
        box-shadow: 0 2px 6px rgba(24, 72, 184, 0.12);
    }

    .mobile-sticky-btn-ghost {
        color: var(--brand-ink);
        border: 1px solid #d5e0f2;
        background: #f8fafe;
    }

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

    .hero-search-box {
        max-width: 100%;
    }

    .hero-search-box button {
        padding: 10px 12px;
    }

    .filters-section {
        border-radius: 16px;
        padding: 14px;
    }

    .filters-header {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group,
    .filter-group-wide {
        width: 100%;
        min-width: 100%;
        flex: 1;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .product-image {
        height: 160px;
        font-size: 44px;
        padding: 8px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-supplier {
        font-size: 11.5px;
    }

    footer {
        margin-top: 40px;
        padding: 40px 16px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand-tagline {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        background:
            radial-gradient(40rem 30rem at 8% -5%, #dce9ff 0%, transparent 50%),
            linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    }

    .hero-section {
        padding: 12px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .hero-copy h1 {
        font-size: 26px;
        line-height: 1.14;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.56;
    }

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

    .hero-action {
        text-align: center;
    }

    .hero-search-box {
        margin-top: 10px;
        padding: 6px;
        border-radius: 10px;
    }

    .hero-search-box input {
        font-size: 13px;
        padding: 7px 8px;
    }

    .hero-search-box button {
        font-size: 12px;
        padding: 9px 11px;
        border-radius: 8px;
    }

    .hero-chips {
        margin-top: 10px;
        gap: 6px;
    }

    .hero-chip {
        font-size: 10.5px;
        padding: 5px 8px;
    }

    .hero-visual {
        min-height: 238px;
        padding: 10px;
    }

    .showcase-media {
        min-height: 190px;
    }

    .showcase-content {
        padding: 16px;
    }

    .showcase-content h3 {
        font-size: 22px;
    }

    .showcase-controls {
        gap: 8px;
    }

    .hero-brand-panel {
        inset: 50px 10px 12px 12px;
        border-radius: 24px;
    }

    .hero-brand-image {
        right: 12px;
        bottom: 14px;
        width: 112px;
        padding: 7px 9px;
    }

    .hero-dashboard-card {
        max-width: 92%;
        padding: 10px;
    }

    .hero-dashboard-card strong {
        font-size: 14px;
    }

    .hero-float-card {
        right: 12px;
        left: 12px;
        width: auto;
        padding: 8px 10px;
    }

    .hero-float-card-top {
        top: 88px;
        bottom: auto;
    }

    .hero-float-card-bottom {
        bottom: 10px;
    }

    .hero-float-card strong {
        font-size: 12px;
    }

    .hero-float-card span {
        font-size: 10px;
    }

    .catalog-intro h2 {
        max-width: 100%;
        font-size: 26px;
    }

    .catalog-intro-subtitle {
        font-size: 13px;
    }

    .catalog-search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }

    .catalog-search-box input {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        background: #fff;
        border: 1px solid #e5ecf5;
        border-radius: 10px;
    }

    .catalog-search-box button {
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .filters-section {
        padding: 10px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .filters-header {
        align-items: stretch;
        gap: 8px;
    }

    .filter-inline {
        width: 100%;
    }

    .filter-inline select {
        min-width: 0;
        flex: 1;
    }

    .filter-note {
        width: 100%;
        font-size: 11px;
    }

    .spotlight-card {
        padding: 12px;
        border-radius: 14px;
    }

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

    .spotlight-card p {
        font-size: 12px;
    }

    .products-info {
        margin-bottom: 10px;
    }

    .products-count {
        font-size: 12px;
        padding: 5px 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 140px;
        font-size: 38px;
    }

    .product-info {
        padding: 10px 10px 10px;
    }

    .product-name {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .product-supplier {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .product-price {
        font-size: 15px;
    }

    .product-stock {
        margin-top: 8px;
        padding-top: 8px;
    }

    .stock-info {
        font-size: 11px;
    }

    .empty-state {
        padding: 36px 14px;
        border-radius: 16px;
    }

    .empty-icon {
        font-size: 46px;
    }

    .empty-text {
        font-size: 15px;
    }

    .mobile-links {
        gap: 6px;
    }

    .mobile-link {
        font-size: 13px;
        padding: 9px 11px;
    }

    .mobile-sticky-cta {
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 6px;
        padding: 6px;
    }

    .mobile-sticky-btn {
        font-size: 11.5px;
        padding: 10px 8px;
    }

    footer {
        padding: 34px 14px 0;
    }

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