:root {
    --hk-ink: #251f1a;
    --hk-muted: #685d52;
    --hk-line: #dfd0c0;
    --hk-paper: #fffaf3;
    --hk-surface: #ffffff;
    --hk-cream: #f3e6d7;
    --hk-sage: #6d8067;
    --hk-sage-dark: #4f624a;
    --hk-walnut: #6f4e37;
    --hk-walnut-dark: #4e3425;
    --hk-clay: #b86f50;
    --hk-gold: #d9a441;
    --hk-shadow: 0 18px 45px rgba(78, 52, 37, .12);
}

body.hk-store {
    color: var(--hk-ink);
    background-color: #efe3d2;
    background-image:
        linear-gradient(45deg, rgba(111, 78, 55, .045) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(111, 78, 55, .045) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(109, 128, 103, .04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(109, 128, 103, .04) 75%),
        linear-gradient(180deg, #fffaf3 0%, #efe3d2 100%);
    background-position: 0 0, 0 14px, 14px -14px, -14px 0, 0 0;
    background-size: 28px 28px, 28px 28px, 28px 28px, 28px 28px, auto;
    font-family: Poppins, Arial, sans-serif;
}

.hk-store a {
    color: inherit;
}

.hk-topbar {
    background: var(--hk-walnut-dark);
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.hk-topbar a,
.hk-topbar span {
    color: rgba(255, 255, 255, .9);
}

.hk-inline-form {
    display: inline;
    margin: 0;
}

.hk-inline-form button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    padding: 0;
}

.hk-header-main {
    background: rgba(255, 250, 243, .96);
    border-bottom: 1px solid var(--hk-line);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
}

.hk-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hk-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0;
    white-space: nowrap;
}

.hk-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: var(--hk-walnut);
    color: #fff;
    font-weight: 800;
}

.hk-nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 0;
    flex: 0 1 auto;
}

.hk-nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--hk-muted);
    padding: 10px 0;
}

.hk-nav-links a:hover {
    color: var(--hk-walnut-dark);
}

.hk-nav-dropdown {
    position: relative;
}

.hk-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: var(--hk-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
}

.hk-nav-dropdown-toggle:hover,
.hk-nav-dropdown:focus-within .hk-nav-dropdown-toggle,
.hk-nav-dropdown:hover .hk-nav-dropdown-toggle {
    color: var(--hk-sage-dark);
}

.hk-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translate(-50%, 8px);
    width: min(980px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 26px;
    padding: 26px;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--hk-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .18s ease;
    z-index: 50;
}

.hk-nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.hk-nav-dropdown:hover .hk-nav-dropdown-menu,
.hk-nav-dropdown:focus-within .hk-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.hk-nav-category-group {
    min-width: 0;
}

.hk-nav-links .hk-nav-category-main {
    display: block;
    padding: 0 0 8px;
    color: var(--hk-ink);
    font-weight: 800;
}

.hk-nav-links .hk-nav-category-child {
    display: block;
    padding: 5px 0;
    color: var(--hk-muted);
    font-size: 13px;
    font-weight: 500;
}

.hk-nav-dropdown-empty {
    color: var(--hk-muted);
    font-size: 14px;
}

.hk-search {
    flex: 0 1 320px;
    max-width: 320px;
}

.hk-search form {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--hk-line);
    background: #fff;
    border-radius: 8px;
}

.hk-search input {
    border: 0;
    min-width: 0;
    flex: 1;
    padding: 12px 14px;
    color: var(--hk-ink);
}

.hk-search button {
    width: 46px;
    border: 0;
    background: var(--hk-walnut);
    color: #fff;
}

.hk-icon-link {
    min-width: 44px;
    height: 44px;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
}

.hk-header-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.hk-header-auth .hk-btn {
    min-height: 42px;
    padding-inline: 16px;
    white-space: nowrap;
}

.hk-header-logout {
    margin: 0;
}

.hk-app-page {
    min-height: 100vh;
    color: var(--hk-ink);
    background-color: #efe3d2;
    background-image:
        linear-gradient(45deg, rgba(111, 78, 55, .045) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(111, 78, 55, .045) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(109, 128, 103, .04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(109, 128, 103, .04) 75%),
        linear-gradient(180deg, #fffaf3 0%, #efe3d2 100%);
    background-position: 0 0, 0 14px, 14px -14px, -14px 0, 0 0;
    background-size: 28px 28px, 28px 28px, 28px 28px, 28px 28px, auto;
    font-family: Poppins, Arial, sans-serif;
}

.hk-app-nav {
    background: rgba(255, 250, 243, .96);
    border-bottom: 1px solid var(--hk-line);
    backdrop-filter: blur(12px);
}

.hk-app-nav-inner {
    width: min(100% - 32px, 1180px);
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hk-app-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hk-app-links a,
.hk-app-user {
    color: var(--hk-muted);
    font-size: 14px;
    font-weight: 700;
}

.hk-app-main {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    padding: 34px 0 64px;
}

.hk-app-header {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid var(--hk-line);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(111, 78, 55, .09), rgba(109, 128, 103, .06)),
        var(--hk-paper);
    box-shadow: var(--hk-shadow);
}

.hk-app-header h1,
.hk-app-header h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: 0;
}

.hk-panel {
    border: 1px solid var(--hk-line);
    border-radius: 12px;
    background: rgba(255, 250, 243, .96);
    box-shadow: var(--hk-shadow);
    padding: 24px;
}

.hk-flash {
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 14px 16px;
    font-weight: 800;
}

.hk-flash-success {
    background: #f3f8ee;
    border-color: rgba(109, 128, 103, .35);
    color: var(--hk-sage-dark);
}

.hk-flash-info {
    background: var(--hk-paper);
    color: var(--hk-walnut-dark);
}

.hk-error-summary {
    border: 1px solid rgba(184, 111, 80, .38);
    border-radius: 8px;
    background: #fff4ef;
    color: #7a351f;
    padding: 14px 16px;
    font-weight: 800;
}

.hk-error-summary ul {
    margin: 8px 0 0 18px;
    list-style: disc;
}

.hk-error-summary li + li {
    margin-top: 4px;
}

.hk-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--hk-line);
    border-radius: 10px;
    background: #fff;
}

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

.hk-table th,
.hk-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--hk-line);
    text-align: left;
}

.hk-table th {
    background: var(--hk-paper);
    color: var(--hk-muted);
    font-size: 13px;
    font-weight: 900;
}

.hk-table tr:last-child td {
    border-bottom: 0;
}

.hk-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--hk-clay);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.hk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .18s ease;
}

.hk-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(78, 52, 37, .12);
}

.hk-btn-primary {
    background: var(--hk-walnut);
    color: #fff !important;
}

.hk-btn-primary:hover {
    background: var(--hk-walnut-dark);
}

.hk-btn-secondary {
    background: #fff;
    color: var(--hk-walnut-dark) !important;
    border-color: var(--hk-line);
}

.hk-btn-secondary:hover {
    border-color: var(--hk-walnut);
}

.hk-hero {
    background:
        radial-gradient(circle at 84% 16%, rgba(217, 164, 65, .18), transparent 25rem),
        radial-gradient(circle at 72% 88%, rgba(109, 128, 103, .14), transparent 24rem),
        linear-gradient(135deg, rgba(111, 78, 55, .1), rgba(109, 128, 103, .06)),
        var(--hk-paper);
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 52px;
    align-items: center;
}

.hk-hero-grid-simple {
    grid-template-columns: minmax(0, 760px);
}

.hk-kicker {
    color: var(--hk-clay);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hk-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 22px;
    color: var(--hk-ink);
}

.hk-hero p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--hk-muted);
    max-width: 620px;
    margin-bottom: 28px;
}

.hk-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hk-hero-media {
    position: relative;
    min-height: 470px;
}

.hk-hero-media img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--hk-shadow);
}

.hk-hero-note {
    position: absolute;
    left: -28px;
    bottom: 32px;
    width: 230px;
    background: #fff;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--hk-shadow);
}

.hk-hero-note strong {
    display: block;
    font-size: 22px;
    color: var(--hk-walnut-dark);
}

.hk-section {
    padding: 76px 0;
}

.hk-section-alt {
    background: rgba(255, 250, 243, .72);
}

.hk-wish-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 34px;
    align-items: center;
    border: 1px solid var(--hk-line);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(111, 78, 55, .09), rgba(184, 111, 80, .07)),
        #fffaf3;
    padding: 34px;
    box-shadow: var(--hk-shadow);
}

.hk-wish-feature h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: 0;
}

.hk-wish-feature p {
    max-width: 680px;
    color: var(--hk-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.hk-wish-preview,
.hk-offer-list {
    display: grid;
    gap: 12px;
}

.hk-wish-mini,
.hk-wish-card,
.hk-offer-card {
    display: block;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hk-wish-mini:hover,
.hk-wish-card:hover,
.hk-offer-card:hover {
    transform: translateY(-2px);
    border-color: rgba(111, 78, 55, .38);
    box-shadow: var(--hk-shadow);
}

.hk-wish-mini span,
.hk-wish-card span,
.hk-offer-card span {
    color: var(--hk-clay);
    font-size: 12px;
    font-weight: 800;
}

.hk-wish-mini strong,
.hk-wish-card h2,
.hk-offer-card strong {
    display: block;
    margin-top: 5px;
    color: var(--hk-ink);
}

.hk-wish-mini small {
    display: block;
    margin-top: 8px;
    color: var(--hk-muted);
}

.hk-mini-action {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 12px;
    border-radius: 8px;
    background: var(--hk-walnut);
    color: #fff !important;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 900;
}

.hk-wish-action {
    width: 100%;
    margin-top: 16px;
}

.hk-wish-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hk-wish-card h2 {
    font-size: 22px;
    line-height: 1.25;
}

.hk-wish-card p {
    color: var(--hk-muted);
    line-height: 1.65;
}

.hk-wish-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hk-wish-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    background: var(--hk-cream);
    color: var(--hk-walnut-dark);
    padding: 0 10px;
    font-size: 12px;
    font-weight: 800;
}

.hk-wish-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
    align-items: start;
}

.hk-form-panel {
    border: 1px solid var(--hk-line);
    border-radius: 12px;
    background: #fff;
    padding: 28px;
    box-shadow: var(--hk-shadow);
}

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

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

.hk-section-title {
    margin: 0 0 14px;
    padding-top: 18px;
    border-top: 1px solid var(--hk-line);
    color: var(--hk-ink);
    font-size: 20px;
    font-weight: 900;
}

.hk-label {
    display: block;
    margin-bottom: 7px;
    color: var(--hk-ink);
    font-weight: 800;
}

.hk-input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: #fff;
    color: var(--hk-ink);
    padding: 10px 12px;
}

textarea.hk-input {
    min-height: 120px;
}

.hk-readonly-field {
    min-height: 46px;
    display: flex;
    align-items: center;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: var(--hk-paper);
    color: var(--hk-muted);
    padding: 10px 12px;
    font-weight: 700;
}

.hk-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.hk-offer-card {
    display: grid;
    gap: 12px;
}

.hk-offer-card p {
    margin: 0;
    color: var(--hk-muted);
    line-height: 1.6;
}

.hk-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.hk-section-head h2,
.hk-page-head h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: 0;
}

.hk-section-head p,
.hk-page-head p {
    margin: 10px 0 0;
    color: var(--hk-muted);
}

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

.hk-category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    padding: 18px;
    min-height: 98px;
    transition: .18s ease;
}

.hk-category-card:hover,
.hk-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hk-shadow);
}

.hk-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--hk-cream);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.hk-category-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hk-category-card strong {
    display: block;
    font-size: 16px;
}

.hk-category-card span {
    display: block;
    color: var(--hk-muted);
    font-size: 13px;
    margin-top: 2px;
}

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

.hk-product-card {
    background: #fff;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: .18s ease;
}

.hk-product-image-wrap {
    aspect-ratio: 1 / 1;
    background: var(--hk-cream);
    overflow: hidden;
}

.hk-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.hk-product-card:hover .hk-product-image {
    transform: scale(1.04);
}

.hk-product-body {
    padding: 18px;
}

.hk-product-title {
    display: block;
    min-height: 45px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.hk-maker {
    color: var(--hk-muted);
    font-size: 13px;
    min-height: 20px;
}

.hk-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.hk-price {
    color: var(--hk-clay);
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.hk-cart-button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 0;
    background: var(--hk-walnut);
    color: #fff;
}

.hk-page-head {
    background:
        linear-gradient(135deg, rgba(111, 78, 55, .09), rgba(109, 128, 103, .06)),
        var(--hk-paper);
    border-bottom: 1px solid var(--hk-line);
    padding: 56px 0;
}

.hk-empty {
    border: 1px dashed var(--hk-line);
    border-radius: 8px;
    background: #fff;
    padding: 34px;
    color: var(--hk-muted);
    text-align: center;
}

.hk-product-detail {
    padding: 70px 0;
}

.hk-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 48px;
    align-items: start;
}

.hk-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: var(--hk-cream);
    box-shadow: var(--hk-shadow);
}

.hk-detail-panel {
    border: 1px solid var(--hk-line);
    background: #fff;
    border-radius: 8px;
    padding: 30px;
}

.hk-detail-panel h1 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.hk-detail-price {
    font-size: 28px;
    color: var(--hk-clay);
    font-weight: 800;
    margin: 22px 0;
}

.hk-description {
    color: var(--hk-muted);
    line-height: 1.8;
}

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

.hk-cart-list,
.hk-cart-summary {
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: #fff;
}

.hk-cart-list {
    overflow: hidden;
}

.hk-cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 150px 44px;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--hk-line);
}

.hk-cart-row:last-child {
    border-bottom: 0;
}

.hk-cart-product strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 4px;
}

.hk-cart-product span,
.hk-cart-label {
    color: var(--hk-muted);
    font-size: 13px;
}

.hk-qty-control {
    display: inline-flex;
    align-items: center;
    height: 42px;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.hk-qty-control form {
    margin: 0;
}

.hk-qty-control button {
    width: 40px;
    height: 40px;
    border: 0;
    background: var(--hk-cream);
    color: var(--hk-walnut-dark);
    font-weight: 800;
}

.hk-qty-control span {
    min-width: 42px;
    text-align: center;
    font-weight: 700;
}

.hk-remove-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: #fff;
    color: var(--hk-clay);
}

.hk-cart-summary {
    padding: 24px;
    position: sticky;
    top: 110px;
}

.hk-cart-summary h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.hk-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--hk-line);
    color: var(--hk-muted);
}

.hk-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 20px 0 22px;
    font-weight: 800;
    font-size: 20px;
}

.hk-admin-page {
    min-height: 100vh;
    background: #f8f4ee;
    color: var(--hk-ink);
    font-family: Poppins, Arial, sans-serif;
}

.hk-admin-shell {
    padding: 32px 0 56px;
}

.hk-admin-top {
    background: var(--hk-sage-dark);
    color: #fff;
    padding: 16px 0;
}

.hk-admin-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hk-admin-brand {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
}

.hk-admin-top a {
    color: rgba(255, 255, 255, .86);
    font-weight: 600;
}

.hk-admin-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.hk-admin-head h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
}

.hk-admin-head p {
    margin: 8px 0 0;
    color: var(--hk-muted);
}

.hk-admin-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.hk-admin-stat {
    background: #fff;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    padding: 18px;
}

.hk-admin-stat span {
    display: block;
    color: var(--hk-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.hk-admin-stat strong {
    display: block;
    font-size: 28px;
}

.hk-alert {
    border: 1px solid #bfd6bf;
    background: #edf7ed;
    color: #315c35;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.hk-admin-orders {
    display: grid;
    gap: 18px;
}

.hk-admin-order {
    background: #fff;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    overflow: hidden;
}

.hk-admin-order-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--hk-line);
}

.hk-admin-order-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hk-admin-order-title h2 {
    margin: 0;
    font-size: 22px;
}

.hk-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hk-status-warning {
    background: #fff4d9;
    color: #8a5d00;
}

.hk-status-info {
    background: #e6f0f4;
    color: #315f72;
}

.hk-status-primary {
    background: #e8eef9;
    color: #304f8f;
}

.hk-status-success {
    background: #e8f4e6;
    color: #35643a;
}

.hk-status-danger {
    background: #fae7e0;
    color: #8d3f25;
}

.hk-status-muted {
    background: #f1eee9;
    color: var(--hk-muted);
}

.hk-admin-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--hk-line);
}

.hk-admin-meta span {
    display: block;
    color: var(--hk-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.hk-admin-meta strong {
    display: block;
}

.hk-status-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hk-status-select {
    min-width: 190px;
    height: 44px;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
    color: var(--hk-ink);
    font-weight: 600;
}

.hk-admin-items {
    padding: 4px 20px 20px;
}

.hk-admin-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 130px;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--hk-line);
}

.hk-admin-item:last-child {
    border-bottom: 0;
}

.hk-admin-item span {
    color: var(--hk-muted);
    font-size: 13px;
}

.hk-footer {
    background: var(--hk-walnut-dark);
    color: #fff;
    padding: 42px 0;
}

.hk-footer p {
    color: rgba(255, 255, 255, .76);
    margin: 8px 0 0;
}

.hk-mobile-bar {
    display: none;
}

.hk-mobile-categories {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    max-height: min(78vh, 42rem);
    display: none;
    grid-template-rows: auto 1fr;
    border-top: 1px solid var(--hk-line);
    border-radius: 18px 18px 0 0;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .98), rgba(239, 225, 205, .96)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    box-shadow: 0 -22px 60px rgba(80, 48, 28, .18);
}

.hk-mobile-categories-open .hk-mobile-categories {
    display: grid;
}

.hk-mobile-categories-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--hk-line);
}

.hk-mobile-categories-head strong {
    font-size: 1.1rem;
    color: var(--hk-ink);
}

.hk-mobile-categories-head button,
.hk-mobile-bar button {
    border: 0;
    background: transparent;
    color: inherit;
}

.hk-mobile-categories-head button {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--hk-line);
    border-radius: 8px;
    background: #fffaf3;
    color: var(--hk-walnut-dark);
    font-size: 1.35rem;
}

.hk-mobile-categories-list {
    overflow-y: auto;
    padding: 1rem;
}

.hk-mobile-categories-list > div {
    border: 1px solid rgba(111, 78, 55, .12);
    border-radius: 10px;
    background: rgba(255, 250, 243, .78);
    padding: .75rem;
    margin-bottom: .75rem;
}

.hk-mobile-category-main,
.hk-mobile-category-child {
    display: block;
    color: var(--hk-ink);
    text-decoration: none;
}

.hk-mobile-category-main {
    font-weight: 900;
    margin-bottom: .35rem;
}

.hk-mobile-category-child {
    color: var(--hk-muted);
    padding: .25rem 0;
    font-size: .92rem;
}

@media (max-width: 991px) {
    .hk-topbar,
    .hk-search,
    .hk-nav-links {
        display: none;
    }

    .hk-nav {
        min-height: 68px;
        justify-content: space-between;
    }

    .hk-header-auth {
        margin-left: 0;
    }

    .hk-hero {
        min-height: auto;
        padding: 54px 0 34px;
    }

    .hk-hero-grid,
    .hk-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hk-hero-media {
        min-height: 310px;
    }

    .hk-hero-media img {
        height: 320px;
    }

    .hk-hero-note {
        left: 18px;
        bottom: 18px;
    }

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

    .hk-wish-feature,
    .hk-wish-detail {
        grid-template-columns: 1fr;
    }

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

    .hk-cart-summary {
        position: static;
    }

    .hk-cart-row {
        grid-template-columns: minmax(0, 1fr) 130px 44px;
    }

    .hk-cart-total-cell {
        grid-column: 1 / -1;
    }

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

    .hk-admin-head,
    .hk-admin-order-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .hk-admin-meta {
        grid-template-columns: 1fr;
    }

    .hk-section-head {
        align-items: start;
        flex-direction: column;
    }

    .hk-mobile-bar {
        display: block;
        position: sticky;
        bottom: 0;
        z-index: 40;
        background: #fff;
        border-top: 1px solid var(--hk-line);
    }

    .hk-mobile-bar .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(3.25rem, 1fr));
        gap: 4px;
    }

    .hk-mobile-bar a,
    .hk-mobile-bar button {
        min-height: 58px;
        display: grid;
        place-items: center;
        color: var(--hk-muted);
        font-size: 20px;
        position: relative;
    }

    .hk-header-cart-link {
        display: none;
    }
}

@media (max-width: 575px) {
    .hk-brand {
        font-size: 18px;
    }

    .hk-brand-mark {
        width: 38px;
        height: 38px;
    }

    .hk-header-auth {
        display: none;
    }

    .hk-category-grid,
    .hk-product-grid,
    .hk-wish-grid,
    .hk-form-grid {
        grid-template-columns: 1fr;
    }

    .hk-cart-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hk-cart-total-cell {
        grid-column: auto;
    }

    .hk-admin-top .container,
    .hk-status-form {
        align-items: stretch;
        flex-direction: column;
    }

    .hk-admin-stats,
    .hk-admin-item {
        grid-template-columns: 1fr;
    }

    .hk-status-select,
    .hk-status-form .hk-btn {
        width: 100%;
    }

    .hk-hero-actions .hk-btn {
        width: 100%;
    }

    .hk-section {
        padding: 54px 0;
    }

    .hk-detail-panel {
        padding: 22px;
    }
}

/* Product filters and extended marketplace data */
.hk-filter-panel {
    margin-bottom: 34px;
    padding: 24px;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background:
        linear-gradient(118deg, rgba(255, 252, 247, .96) 0 62%, rgba(122, 79, 53, .1) 62% 100%),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    box-shadow: var(--hk-shadow-soft);
}

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

.hk-filter-head h2 {
    margin: 4px 0 0;
    color: var(--hk-ink);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
}

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

.hk-filter-grid label,
.hk-filter-check {
    display: grid;
    gap: 7px;
}

.hk-filter-grid span,
.hk-filter-check span {
    color: var(--hk-muted);
    font-size: 13px;
    font-weight: 900;
}

.hk-filter-check {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.hk-filter-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--hk-walnut);
}

.hk-filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    color: var(--hk-muted);
    font-weight: 900;
}

.hk-product-meta,
.hk-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.hk-product-meta span,
.hk-tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 248, 239, .86);
    color: var(--hk-muted);
    font-size: 12px;
    font-weight: 800;
}

.hk-tag-row span {
    background: rgba(111, 125, 97, .12);
    color: #4f5b45;
}

.hk-tag-row-detail {
    margin-top: 18px;
}

.hk-product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.hk-product-specs div {
    padding: 12px;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .78);
}

.hk-product-specs span,
.hk-product-specs strong {
    display: block;
}

.hk-product-specs span {
    color: var(--hk-muted);
    font-size: 12px;
    font-weight: 900;
}

.hk-product-specs strong {
    margin-top: 4px;
    color: var(--hk-ink);
    font-size: 14px;
}

.hk-pagination {
    margin-top: 30px;
}

@media (max-width: 1100px) {
    .hk-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hk-filter-head,
    .hk-filter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hk-filter-grid,
    .hk-product-specs {
        grid-template-columns: 1fr;
    }
}

/* Marketplace discovery, footer, account and creator profile */
.hk-stats-band {
    margin-top: -1px;
    padding: 28px 0;
    border-top: 1px solid rgba(111, 78, 55, .12);
    border-bottom: 1px solid rgba(111, 78, 55, .12);
    background:
        linear-gradient(90deg, rgba(78, 47, 30, .96), rgba(122, 79, 53, .94)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 20px);
}

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

.hk-stats-grid div {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 252, 247, .08);
    color: #fff8ee;
}

.hk-stats-grid strong,
.hk-stats-grid span {
    display: block;
}

.hk-stats-grid strong {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.hk-stats-grid span {
    margin-top: 8px;
    color: rgba(255, 248, 238, .78);
    font-weight: 900;
}

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

.hk-creator-card {
    overflow: hidden;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .92);
    box-shadow: var(--hk-shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hk-creator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hk-shadow-strong);
}

.hk-creator-banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 150px;
    padding: 16px;
    background:
        linear-gradient(135deg, rgba(122, 79, 53, .28), rgba(215, 163, 92, .18)),
        repeating-linear-gradient(45deg, rgba(111, 78, 55, .08) 0 2px, transparent 2px 22px);
    background-size: cover;
    background-position: center;
}

.hk-creator-banner img,
.hk-creator-banner span,
.hk-creator-profile-logo img,
.hk-creator-profile-logo span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 3px solid rgba(255, 252, 247, .92);
    border-radius: 8px;
    background: var(--hk-walnut);
    color: #fff;
    font-weight: 900;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(55, 34, 22, .24);
}

.hk-creator-body {
    padding: 18px;
}

.hk-creator-body strong,
.hk-creator-body span {
    display: block;
}

.hk-creator-body strong {
    color: var(--hk-ink);
    font-size: 18px;
}

.hk-creator-body p {
    margin: 7px 0 10px;
    color: var(--hk-muted);
}

.hk-creator-body span {
    color: var(--hk-accent-clay);
    font-size: 13px;
    font-weight: 900;
}

.hk-creator-profile-hero {
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    padding: 90px 0 48px;
    background:
        linear-gradient(116deg, rgba(78, 47, 30, .92), rgba(122, 79, 53, .55)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 20px);
    background-size: cover;
    background-position: center;
}

.hk-creator-profile-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    max-width: 820px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 252, 247, .9);
    box-shadow: var(--hk-shadow-strong);
}

.hk-creator-profile-card h1 {
    margin: 4px 0 8px;
    color: var(--hk-ink);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
}

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

.hk-content-panel {
    padding: 24px;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .92);
    box-shadow: var(--hk-shadow-soft);
}

.hk-content-panel h2 {
    margin: 6px 0 12px;
    color: var(--hk-ink);
    font-size: 26px;
}

.hk-content-panel p {
    color: var(--hk-muted);
}

.hk-footer {
    padding: 58px 0 26px;
    border-top: 1px solid rgba(111, 78, 55, .16);
    background:
        linear-gradient(135deg, #4b2f1f, #6f4e37),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 18px);
    color: rgba(255, 248, 238, .82);
}

.hk-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.hk-footer h3 {
    margin: 0 0 14px;
    color: #fff8ee;
    font-size: 15px;
    font-weight: 900;
}

.hk-footer a,
.hk-footer span,
.hk-footer p {
    color: rgba(255, 248, 238, .78);
}

.hk-footer a {
    display: block;
    margin-bottom: 8px;
    transition: color .16s ease, transform .16s ease;
}

.hk-footer a:hover {
    color: #fff;
    transform: translateX(2px);
}

.hk-footer-brand .hk-brand {
    color: #fff;
}

.hk-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.hk-footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.hk-company-data {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
}

.hk-company-data strong {
    color: #fff8ee;
}

.hk-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 13px;
}

.hk-account-dashboard {
    display: grid;
    gap: 22px;
}

.hk-account-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background:
        linear-gradient(118deg, rgba(255, 252, 247, .96) 0 62%, rgba(122, 79, 53, .12) 62% 100%),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .05) 0 1px, transparent 1px 20px);
    box-shadow: var(--hk-shadow-soft);
}

.hk-account-hero span {
    color: var(--hk-accent-clay);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hk-account-hero h2 {
    margin: 6px 0 8px;
    color: var(--hk-ink);
    font-size: clamp(28px, 4vw, 44px);
}

.hk-account-stat-grid,
.hk-account-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hk-account-stat,
.hk-account-action {
    padding: 20px;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .92);
    box-shadow: var(--hk-shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.hk-account-stat:hover,
.hk-account-action:hover {
    transform: translateY(-4px);
    box-shadow: var(--hk-shadow-strong);
}

.hk-account-stat span,
.hk-account-action span {
    color: var(--hk-muted);
    font-weight: 800;
}

.hk-account-stat strong {
    display: block;
    margin-top: 8px;
    color: var(--hk-ink);
    font-size: 30px;
}

.hk-account-action {
    display: grid;
    gap: 8px;
}

.hk-account-action i {
    color: var(--hk-accent-clay);
    font-size: 24px;
}

.hk-account-action strong {
    color: var(--hk-ink);
}

@media (max-width: 1100px) {
    .hk-creator-grid,
    .hk-account-stat-grid,
    .hk-account-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hk-footer-grid,
    .hk-creator-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .hk-stats-grid,
    .hk-creator-grid,
    .hk-footer-grid,
    .hk-creator-story-grid,
    .hk-account-stat-grid,
    .hk-account-action-grid {
        grid-template-columns: 1fr;
    }

    .hk-creator-profile-card,
    .hk-account-hero {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hk-footer-bottom {
        flex-direction: column;
    }
}

.hk-profile-form {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.hk-content-panel header h2 {
    margin: 0 0 6px;
    color: var(--hk-ink);
    font-size: 24px;
    font-weight: 900;
}

.hk-content-panel header p,
.hk-small-note {
    color: var(--hk-muted);
}

.hk-success-note {
    color: #315c35;
    font-weight: 800;
}

.hk-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    margin-left: 8px;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background: rgba(255, 248, 239, .92);
    color: var(--hk-walnut);
    font-size: 12px;
    font-weight: 900;
}

.hk-badge-large {
    margin: 8px 0;
    font-size: 14px;
}

.hk-rating {
    display: inline-flex;
    margin-top: 8px;
    color: #9a6a2f;
    font-weight: 900;
}

.hk-product-actions,
.hk-coupon-form,
.hk-chat-form {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.hk-review-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 18px;
}

.hk-review {
    padding: 14px 0;
    border-bottom: 1px solid rgba(111, 78, 55, .12);
}

.hk-review:last-child {
    border-bottom: 0;
}

.hk-message-row {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(111, 78, 55, .12);
}

.hk-message-row:last-child {
    border-bottom: 0;
}

.hk-chat-panel {
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .92);
    box-shadow: var(--hk-shadow-soft);
    padding: 20px;
}

.hk-chat-messages {
    display: grid;
    gap: 12px;
    max-height: 520px;
    overflow: auto;
}

.hk-chat-message {
    max-width: 74%;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(111, 78, 55, .08);
}

.hk-chat-message.is-own {
    justify-self: end;
    background: rgba(111, 125, 97, .15);
}

.hk-chat-message p {
    margin: 4px 0;
}

.hk-chat-message span,
.hk-status-chip {
    color: var(--hk-muted);
    font-size: 12px;
    font-weight: 800;
}

.hk-order-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.hk-order-timeline div,
.hk-status-chip {
    padding: 8px 10px;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 248, 239, .88);
}

.hk-order-timeline strong,
.hk-order-timeline span {
    display: block;
}

@media (max-width: 760px) {
    .hk-review-grid {
        grid-template-columns: 1fr;
    }

    .hk-product-actions,
    .hk-coupon-form,
    .hk-chat-form {
        flex-direction: column;
    }

    .hk-chat-message {
        max-width: 100%;
    }
}

/* Modern marketplace refresh */
:root {
    --hk-surface-strong: rgba(255, 252, 247, .94);
    --hk-shadow-soft: 0 16px 45px rgba(80, 48, 28, .12);
    --hk-shadow-strong: 0 24px 70px rgba(67, 38, 22, .2);
    --hk-accent-clay: #b86f50;
    --hk-accent-gold: #d7a35c;
}

body {
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .98) 0%, rgba(255, 247, 235, .96) 42%, rgba(233, 216, 194, .92) 100%),
        repeating-linear-gradient(45deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    color: var(--hk-ink);
}

.hk-topbar {
    background: linear-gradient(90deg, #4b2f1f 0%, #65412c 50%, #4b2f1f 100%);
    box-shadow: inset 0 -1px rgba(255, 255, 255, .08);
}

.hk-header-main {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(111, 78, 55, .16);
    background: rgba(255, 250, 243, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(88, 55, 34, .09);
}

.hk-header-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 111, 80, .45), transparent);
}

.hk-brand-mark,
.hk-footer-brand-mark {
    box-shadow: 0 12px 24px rgba(78, 47, 30, .24);
}

.hk-nav a,
.hk-category-toggle,
.hk-header-auth .hk-btn,
.hk-account-menu > a {
    border-radius: 8px;
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.hk-nav a:hover,
.hk-category-toggle:hover,
.hk-account-menu > a:hover {
    background: rgba(111, 78, 55, .09);
    color: var(--hk-walnut);
    transform: translateY(-1px);
}

.hk-search {
    border: 1px solid rgba(111, 78, 55, .18);
    border-radius: 8px;
    background: var(--hk-surface-strong);
    box-shadow: 0 12px 28px rgba(80, 48, 28, .08);
}

.hk-search input {
    min-height: 48px;
}

.hk-search button,
.hk-btn-primary,
.hk-button,
.hk-mobile-bar a[aria-current="page"] {
    background: linear-gradient(135deg, #7a4f35 0%, #4f301f 100%);
    box-shadow: 0 14px 28px rgba(91, 55, 33, .22);
}

.hk-btn,
.hk-button {
    min-height: 46px;
    border-radius: 8px;
    letter-spacing: 0;
}

.hk-btn:hover,
.hk-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(91, 55, 33, .24);
}

.hk-btn-light {
    background: rgba(255, 252, 247, .9);
    box-shadow: 0 12px 26px rgba(80, 48, 28, .09);
}

.hk-order-seller-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin: 1rem 0;
}

.hk-seller-progress-card {
    border: 1px solid #dfd0c0;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 250, 244, .94), rgba(245, 234, 221, .9)),
        repeating-linear-gradient(45deg, rgba(111, 78, 55, .05) 0 8px, transparent 8px 16px);
    padding: 1rem;
}

.hk-seller-progress-card strong,
.hk-seller-progress-card span,
.hk-seller-progress-card small {
    display: block;
}

.hk-seller-progress-card strong {
    color: #2b211b;
    font-weight: 900;
}

.hk-seller-progress-card span,
.hk-seller-progress-card p,
.hk-seller-progress-card small {
    color: #685d52;
}

.hk-seller-progress-card p {
    margin: .65rem 0 0;
}

.hk-seller-progress-card small {
    margin-top: .65rem;
    border-top: 1px solid #dfd0c0;
    padding-top: .65rem;
}

.hk-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-bottom: 1px solid rgba(111, 78, 55, .12);
    background:
        linear-gradient(116deg, rgba(255, 252, 247, .98) 0 54%, rgba(226, 203, 176, .56) 54% 100%),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .06) 0 2px, transparent 2px 28px);
}

.hk-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .42), transparent 38%),
        repeating-linear-gradient(90deg, transparent 0 96px, rgba(111, 78, 55, .035) 96px 97px);
}

.hk-hero::after {
    content: "";
    position: absolute;
    right: max(24px, 8vw);
    top: 78px;
    width: min(420px, 34vw);
    height: 360px;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .18)),
        repeating-linear-gradient(45deg, rgba(122, 79, 53, .13) 0 8px, transparent 8px 18px);
    transform: rotate(-3deg);
    box-shadow: var(--hk-shadow-soft);
}

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

.hk-hero-eyebrow,
.hk-section-eyebrow,
.hk-card-eyebrow {
    color: var(--hk-accent-clay);
    letter-spacing: .08em;
}

.hk-hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: .96;
}

.hk-hero p {
    max-width: 620px;
    font-size: 18px;
}

.hk-section {
    position: relative;
}

.hk-section-alt {
    background:
        linear-gradient(180deg, rgba(255, 252, 247, .88), rgba(244, 231, 214, .78)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .04) 0 1px, transparent 1px 18px);
}

.hk-category-card,
.hk-product-card,
.hk-wish-card,
.hk-wish-feature,
.hk-detail-panel,
.hk-cart-panel,
.hk-checkout-panel,
.hk-account-panel,
.hk-order-card,
.hk-login-card,
.hk-admin-card,
.hk-admin-item {
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .9);
    box-shadow: var(--hk-shadow-soft);
    backdrop-filter: blur(10px);
}

.hk-category-card,
.hk-product-card,
.hk-wish-card,
.hk-order-card {
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hk-category-card::before,
.hk-product-card::before,
.hk-wish-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--hk-accent-clay), var(--hk-accent-gold), var(--hk-sage));
    opacity: .9;
}

.hk-category-card:hover,
.hk-product-card:hover,
.hk-wish-card:hover,
.hk-order-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 78, 55, .28);
    box-shadow: var(--hk-shadow-strong);
}

.hk-product-image {
    background:
        linear-gradient(135deg, rgba(248, 238, 224, .8), rgba(230, 207, 179, .72)),
        repeating-linear-gradient(45deg, rgba(111, 78, 55, .06) 0 1px, transparent 1px 15px);
}

.hk-product-card img,
.hk-product-image img {
    transition: transform .28s ease;
}

.hk-product-card:hover img,
.hk-product-card:hover .hk-product-image img {
    transform: scale(1.045);
}

.hk-wish-feature {
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(118deg, rgba(255, 252, 247, .96) 0 58%, rgba(122, 79, 53, .13) 58% 100%),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .05) 0 2px, transparent 2px 24px);
}

.hk-wish-feature::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 111, 80, .16), rgba(215, 163, 92, .08));
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

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

.hk-wish-mini,
.hk-form-card,
.hk-alert,
.hk-table-wrap {
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 28px rgba(80, 48, 28, .08);
}

input,
select,
textarea,
.hk-input,
.hk-select,
.hk-textarea {
    border-radius: 8px;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

input:focus,
select:focus,
textarea:focus,
.hk-input:focus,
.hk-select:focus,
.hk-textarea:focus {
    border-color: rgba(122, 79, 53, .55);
    box-shadow: 0 0 0 4px rgba(184, 111, 80, .14);
    outline: none;
}

.hk-dropdown {
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 252, 247, .96);
    box-shadow: 0 24px 56px rgba(67, 38, 22, .16);
}

.hk-mobile-bar {
    box-shadow: 0 -14px 36px rgba(80, 48, 28, .12);
}

@media (max-width: 900px) {
    .hk-hero {
        min-height: auto;
        padding: 76px 0;
    }

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

@media (max-width: 575px) {
    .hk-hero h1 {
        font-size: 42px;
    }

    .hk-hero p {
        font-size: 16px;
    }

    .hk-category-card:hover,
    .hk-product-card:hover,
    .hk-wish-card:hover,
    .hk-order-card:hover {
        transform: none;
    }
}
.hk-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: contain;
    flex: 0 0 42px;
}

.hk-nav-dropdown-menu {
    min-width: 420px;
    max-width: min(92vw, 640px);
}

.hk-menu-count {
    display: inline-grid;
    min-width: 20px;
    height: 20px;
    place-items: center;
    margin-left: 4px;
    border-radius: 999px;
    background: #8a5735;
    color: #fff8ee;
    font-size: 11px;
    font-weight: 800;
}

.hk-facebook-icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.hk-app-main,
.hk-account-dashboard,
.hk-content-panel,
.hk-cart-layout {
    min-width: 0;
}

.hk-account-dashboard,
.hk-app-main {
    overflow-x: hidden;
}

.hk-content-panel {
    overflow-wrap: anywhere;
}

.hk-map-placeholder {
    border: 1px dashed #b88a63;
    border-radius: 14px;
    background: #fff7eb;
    color: #5a3826;
    padding: 14px;
    display: grid;
    gap: 4px;
}

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

.hk-blog-cover,
.hk-blog-hero {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.hk-blog-cover {
    aspect-ratio: 16 / 10;
    margin-bottom: 14px;
}

.hk-blog-hero {
    max-height: 420px;
    margin-bottom: 22px;
}

.hk-link-danger {
    color: #9f2f18;
    font-weight: 800;
}

.hk-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.hk-account-stat-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hk-compact-form {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.hk-compact-form input:not([type="checkbox"]):not([type="radio"]),
.hk-compact-form select,
.hk-compact-form textarea {
    width: 100%;
    border: 1px solid #dfd0c0;
    border-radius: 10px;
    background: #fffaf3;
    color: #2c211a;
    padding: 11px 13px;
}

.hk-compact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #685d52;
    font-size: 13px;
    line-height: 1.35;
}

.hk-calendar-form {
    align-items: stretch;
}

.hk-checkbox-row {
    display: grid;
    gap: 8px;
}

.hk-checkbox-row label {
    justify-content: flex-start;
    white-space: normal;
}

.hk-checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin: 0;
    accent-color: var(--hk-walnut);
}

.hk-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.hk-mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #eadccc;
    border-radius: 12px;
    background: rgba(255, 250, 243, .72);
    padding: 12px;
    color: #2c211a;
}

.hk-mini-row button {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.hk-mini-row form,
.hk-mini-row button {
    margin: 0;
}

.hk-calendar-event-list .hk-mini-row {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr) auto;
    align-items: center;
}

.hk-calendar-event-list .hk-mini-row span,
.hk-calendar-event-list .hk-mini-row strong,
.hk-calendar-event-list .hk-mini-row button {
    min-width: 0;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.hk-calendar-event-list .hk-mini-row > span {
    white-space: nowrap;
    color: var(--hk-muted);
    font-size: .85rem;
}

.hk-calendar-event-list .hk-mini-row form {
    justify-self: end;
}

.hk-calendar-event-list .hk-mini-row button {
    width: auto;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background: #fffaf3;
    padding: .4rem .65rem;
    color: #8a3f25;
    font-weight: 800;
    text-align: center;
}

.hk-pickup-picker {
    display: grid;
    gap: .7rem;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background: rgba(255, 250, 243, .72);
    padding: .9rem;
}

.hk-pickup-picker .hk-inline-title {
    margin-bottom: 0;
}

.hk-pickup-picker .hk-inline-title span {
    display: block;
    margin-top: .2rem;
    color: var(--hk-muted);
    font-size: .9rem;
}

.hk-provider-pickup-widget {
    display: grid;
    gap: .65rem;
    border: 1px solid rgba(123, 75, 49, .2);
    border-radius: 8px;
    background: #fffaf3;
    padding: .85rem;
    box-shadow: 0 12px 28px rgba(56, 36, 24, .08);
}

.hk-provider-pickup-widget > strong {
    color: var(--hk-brown);
    font-size: .95rem;
}

@media (max-width: 560px) {
    .hk-calendar-event-list .hk-mini-row {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hk-calendar-event-list .hk-mini-row form {
        justify-self: start;
    }
}

.hk-badge-list,
.hk-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hk-social-list a {
    border: 1px solid #dfd0c0;
    border-radius: 999px;
    background: #fffaf3;
    color: #5a3826;
    padding: 8px 12px;
    font-weight: 700;
}

.hk-pickup-note {
    display: grid;
    gap: 4px;
    margin-top: 18px;
    border-left: 4px solid #8a5735;
    background: #fff7eb;
    padding: 12px 14px;
    border-radius: 10px;
}

.hk-spotlight-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 24px;
    align-items: center;
    border: 1px solid #dfd0c0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 85% 20%, rgba(216, 162, 95, .25), transparent 28%),
        linear-gradient(135deg, #fffaf3, #f1dfca);
    box-shadow: 0 22px 60px rgba(75, 45, 31, .12);
    padding: 28px;
}

.hk-spotlight-score {
    display: grid;
    place-items: center;
    min-height: 150px;
    border-radius: 18px;
    background: #4b2d1f;
    color: #fff8ee;
}

.hk-spotlight-score strong {
    font-size: 54px;
    line-height: 1;
}

.hk-refund-box {
    margin-top: 18px;
    border: 1px solid #dfd0c0;
    border-radius: 12px;
    background: #fffaf3;
    padding: 14px;
}

.hk-refund-box summary {
    cursor: pointer;
    font-weight: 800;
    color: #4b2d1f;
}

.hk-vendor-stat-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hk-vendor-list-row {
    text-decoration: none;
}

.hk-filament-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

@media (max-width: 900px) {
    .hk-dashboard-grid,
    .hk-spotlight-card,
    .hk-blog-grid {
        grid-template-columns: 1fr;
    }

    .hk-account-stat-grid-compact,
    .hk-vendor-stat-grid-wide {
        grid-template-columns: 1fr;
    }
}

.hk-gift-head {
    background:
        radial-gradient(circle at 16% 18%, rgba(215, 163, 92, .22), transparent 32%),
        linear-gradient(135deg, rgba(255, 252, 247, .98), rgba(239, 225, 205, .82));
}

.hk-gift-finder-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .96), rgba(246, 234, 219, .9)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    box-shadow: 0 22px 55px rgba(80, 48, 28, .12);
    padding: clamp(1rem, 2vw, 1.6rem);
    margin-bottom: 2rem;
}

.hk-gift-finder-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #7a4f35, #b86f50, #d7a35c, #6f7d61);
}

.hk-gift-switches {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1rem;
}

.hk-gift-result-head {
    margin-top: 2rem;
}

.hk-gift-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hk-gift-category-grid a {
    display: grid;
    gap: .35rem;
    min-height: 7rem;
    align-content: end;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(255, 252, 247, .94), rgba(239, 225, 205, .72)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    padding: 1rem;
    color: var(--hk-ink);
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(80, 48, 28, .08);
    transition: transform .16s ease, box-shadow .16s ease;
}

.hk-gift-category-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(80, 48, 28, .14);
}

.hk-gift-category-grid span {
    font-size: 1.05rem;
    font-weight: 900;
}

.hk-gift-category-grid strong {
    color: var(--hk-muted);
    font-size: .85rem;
}

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

@media (max-width: 560px) {
    .hk-gift-category-grid {
        grid-template-columns: 1fr;
    }
}

.hk-inline-save-search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
    margin: -1rem 0 2rem;
}

.hk-pill {
    display: inline-flex;
    margin: .2rem;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 999px;
    background: #fffaf3;
    padding: .25rem .65rem;
    color: #5b3724;
    font-size: .82rem;
    font-weight: 700;
}

.hk-review-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
    margin: .75rem 0;
}

.hk-review-photo-grid img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
}

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

.hk-campaign-strip {
    padding-bottom: 0;
}

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

.hk-campaign-card {
    min-height: 15rem;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background:
        radial-gradient(circle at 84% 20%, rgba(215, 163, 92, .28), transparent 30%),
        linear-gradient(135deg, #fffaf3, #ead7bf);
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 55px rgba(80, 48, 28, .12);
    overflow: hidden;
    padding: 1.25rem;
}

.hk-campaign-card h2 {
    margin: .3rem 0;
    color: #2f2118;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 900;
}

.hk-campaign-card[style] h2,
.hk-campaign-card[style] p,
.hk-campaign-card[style] .hk-kicker {
    color: #fffaf3;
}

.hk-campaign-card p {
    max-width: 34rem;
    color: #5b4535;
}

.hk-direct-payment-panel {
    display: grid;
    gap: .85rem;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .96), rgba(246, 234, 219, .9)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 16px 36px rgba(80, 48, 28, .08);
}

.hk-seller-payment-card {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 1rem;
    border: 1px solid rgba(111, 78, 55, .13);
    border-radius: 8px;
    background: rgba(255, 250, 243, .92);
    padding: .85rem;
}

.hk-seller-payment-card strong,
.hk-seller-payment-card span {
    display: block;
}

.hk-seller-payment-card strong {
    color: #2f2118;
    font-weight: 900;
}

.hk-seller-payment-card span {
    color: #6e5a4c;
    font-size: .9rem;
}

.hk-seller-payment-details {
    display: grid;
    gap: .25rem;
}

.hk-direct-payment-note {
    margin-top: .8rem;
    color: #6e5a4c;
    font-size: .9rem;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .hk-campaign-grid {
        grid-template-columns: 1fr;
    }

    .hk-seller-payment-card {
        grid-template-columns: 1fr;
    }
}
.hk-inline-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.hk-pickup-map-links {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .75rem;
}

.hk-pickup-map-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: .45rem .75rem;
    border: 1px solid rgba(92, 58, 38, .2);
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    color: var(--hk-walnut-dark);
    font-weight: 800;
    text-decoration: none;
}

.hk-scroll-list {
    max-height: 26rem;
    overflow-y: auto;
    padding-right: .35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(111, 78, 55, .42) rgba(255, 250, 243, .72);
}

.hk-scroll-list::-webkit-scrollbar {
    width: .45rem;
}

.hk-scroll-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(111, 78, 55, .42);
}

.hk-notification-row {
    align-items: stretch;
}

.hk-notification-main {
    flex: 1 1 auto;
    min-width: 0;
}

.hk-notification-delete {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.hk-notification-delete button {
    width: auto;
    border: 1px solid rgba(159, 47, 24, .16);
    border-radius: 8px;
    background: #fff7f2;
    padding: .45rem .7rem;
    color: #9f2f18;
    font-weight: 900;
    text-align: center;
}

.hk-site-settings-toggle {
    position: fixed;
    right: 1.25rem;
    bottom: 5.4rem;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 2.8rem;
    border: 1px solid rgba(111, 78, 55, .22);
    border-radius: 999px;
    background: linear-gradient(135deg, #6f4e37, #4e3425);
    color: #fffaf3;
    padding: 0 1rem;
    box-shadow: 0 18px 45px rgba(78, 52, 37, .22);
    font-weight: 900;
}

.hk-site-settings-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(24rem, calc(100vw - 2rem));
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    border-left: 1px solid rgba(111, 78, 55, .18);
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .98), rgba(239, 225, 205, .94)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    box-shadow: -24px 0 60px rgba(78, 52, 37, .18);
    transform: translateX(105%);
    transition: transform .2s ease;
}

.hk-site-settings-open .hk-site-settings-drawer {
    transform: translateX(0);
}

.hk-site-settings-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(37, 31, 26, .28);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.hk-site-settings-open .hk-site-settings-backdrop {
    opacity: 1;
    visibility: visible;
}

.hk-site-settings-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(111, 78, 55, .14);
    padding: 1.2rem;
}

.hk-site-settings-head span {
    display: block;
    color: var(--hk-clay);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hk-site-settings-head strong {
    display: block;
    margin-top: .25rem;
    color: var(--hk-ink);
    font-size: 1.25rem;
}

.hk-site-settings-head button {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(111, 78, 55, .16);
    border-radius: 8px;
    background: #fffaf3;
    color: var(--hk-walnut-dark);
    font-size: 1.35rem;
    line-height: 1;
}

.hk-site-settings-links {
    display: grid;
    align-content: start;
    gap: .65rem;
    overflow-y: auto;
    padding: 1rem;
}

.hk-site-settings-links a {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 1px solid rgba(111, 78, 55, .13);
    border-radius: 8px;
    background: rgba(255, 250, 243, .8);
    color: var(--hk-ink);
    padding: .85rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.hk-site-settings-links a:hover {
    transform: translateX(-2px);
    box-shadow: 0 14px 30px rgba(80, 48, 28, .1);
}

.hk-dashboard-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
    gap: 1.25rem;
    align-items: start;
    margin-top: 1.5rem;
}

.hk-dashboard-main,
.hk-dashboard-sidebar {
    min-width: 0;
}

.hk-dashboard-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 6rem;
}

.hk-dashboard-with-sidebar .hk-dashboard-grid {
    margin-top: 0;
}

.hk-dashboard-sidebar .hk-content-panel {
    padding: 1.15rem;
}

.hk-dashboard-sidebar h2 {
    font-size: 1.15rem;
    line-height: 1.25;
}

@media (max-width: 1040px) {
    .hk-dashboard-with-sidebar {
        grid-template-columns: 1fr;
    }

    .hk-dashboard-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hk-dashboard-sidebar {
        grid-template-columns: 1fr;
    }
}

.hk-marketplace-layout,
.hk-product-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
    gap: 1.4rem;
    align-items: start;
}

.hk-marketplace-main,
.hk-product-page-main,
.hk-market-sidebar {
    min-width: 0;
}

.hk-market-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 7rem;
}

.hk-sidebar-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(111, 78, 55, .15);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .96), rgba(246, 234, 219, .86)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    box-shadow: 0 18px 45px rgba(80, 48, 28, .1);
    padding: 1rem;
}

.hk-sidebar-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #7a4f35, #b86f50, #d7a35c, #6f7d61);
}

.hk-sidebar-panel h3 {
    margin: 0 0 .45rem;
    color: var(--hk-ink);
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 900;
}

.hk-sidebar-panel p {
    margin: .35rem 0 .85rem;
    color: var(--hk-muted);
    line-height: 1.55;
}

.hk-sidebar-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border-radius: 999px;
    background: #fff7e5;
    color: #6f4e37;
    padding: 0 .7rem;
    font-size: .82rem;
    font-weight: 900;
}

.hk-sidebar-actions {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
}

.hk-sidebar-actions form,
.hk-sidebar-actions .hk-btn {
    width: 100%;
}

.hk-sidebar-info-list,
.hk-sidebar-link-list,
.hk-sidebar-product-list {
    display: grid;
    gap: .65rem;
}

.hk-sidebar-info-list div,
.hk-sidebar-link-list a,
.hk-sidebar-product {
    border: 1px solid rgba(111, 78, 55, .12);
    border-radius: 8px;
    background: rgba(255, 250, 243, .72);
    color: var(--hk-ink);
    text-decoration: none;
    padding: .7rem;
}

.hk-sidebar-info-list span,
.hk-sidebar-link-list span,
.hk-sidebar-product em {
    display: block;
    color: var(--hk-muted);
    font-size: .82rem;
    font-style: normal;
}

.hk-sidebar-info-list strong,
.hk-sidebar-link-list strong,
.hk-sidebar-product strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--hk-ink);
    font-weight: 900;
}

.hk-sidebar-product {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: .7rem;
    align-items: center;
    transition: transform .16s ease, box-shadow .16s ease;
}

.hk-sidebar-product:hover,
.hk-sidebar-link-list a:hover,
.hk-sidebar-tags a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(80, 48, 28, .1);
}

.hk-sidebar-product img {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 8px;
    background: var(--hk-cream);
    object-fit: cover;
}

.hk-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.hk-sidebar-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border: 1px solid rgba(111, 78, 55, .14);
    border-radius: 999px;
    background: #fffaf3;
    color: #5b3724;
    padding: 0 .7rem;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.hk-sidebar-highlight {
    background:
        radial-gradient(circle at 90% 12%, rgba(215, 163, 92, .24), transparent 32%),
        linear-gradient(135deg, #fffaf3, #ead7bf);
}

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

.hk-home-feature-grid article {
    position: relative;
    overflow: hidden;
    min-height: 13rem;
    border: 1px solid rgba(111, 78, 55, .15);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, .96), rgba(246, 234, 219, .86)),
        repeating-linear-gradient(135deg, rgba(111, 78, 55, .045) 0 1px, transparent 1px 18px);
    box-shadow: 0 18px 45px rgba(80, 48, 28, .1);
    padding: 1.25rem;
}

.hk-home-feature-grid article:first-child {
    background:
        radial-gradient(circle at 86% 16%, rgba(215, 163, 92, .24), transparent 34%),
        linear-gradient(135deg, #fffaf3, #ead7bf);
}

.hk-home-feature-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #7a4f35, #b86f50, #d7a35c, #6f7d61);
}

.hk-home-feature-grid span {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 8px;
    background: #6f4e37;
    color: #fffaf3;
    font-weight: 900;
}

.hk-home-feature-grid h2 {
    margin: .35rem 0 .65rem;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.08;
}

.hk-home-feature-grid strong {
    display: block;
    margin: .8rem 0 .45rem;
    color: var(--hk-ink);
    font-size: 1.05rem;
    line-height: 1.3;
}

.hk-home-feature-grid p {
    margin: 0;
    color: var(--hk-muted);
    line-height: 1.65;
}

.hk-marketplace-main .hk-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.hk-product-page-main .hk-detail-grid {
    grid-template-columns: minmax(18rem, .9fr) minmax(20rem, 1.1fr);
    gap: 1.4rem;
}

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

    .hk-product-page-layout {
        grid-template-columns: 1fr;
    }

    .hk-product-page-main .hk-detail-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 980px) {
    .hk-marketplace-layout {
        grid-template-columns: 1fr;
    }

    .hk-market-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .hk-market-sidebar,
    .hk-marketplace-main .hk-product-grid,
    .hk-blog-grid-main,
    .hk-home-feature-grid,
    .hk-order-seller-progress,
    .hk-product-page-main .hk-detail-grid {
        grid-template-columns: 1fr;
    }
}
