:root {
    --hl-bg: #f7faf5;
    --hl-surface: #ffffff;
    --hl-surface-soft: #eef5ec;
    --hl-surface-strong: #dce8d8;
    --hl-primary: #00522d;
    --hl-primary-strong: #003d22;
    --hl-primary-soft: #d8f1de;
    --hl-secondary: #826c00;
    --hl-text: #122016;
    --hl-muted: #647067;
    --hl-border: #dfe7dc;
    --hl-danger: #b42318;
    --hl-success: #087443;
    --hl-warning: #a15c07;
    --hl-shadow: 0 18px 50px rgba(0, 82, 45, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, Arial, sans-serif;
    color: var(--hl-text);
    background: var(--hl-bg);
    letter-spacing: 0;
}

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

button,
input {
    font: inherit;
}

.material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
    vertical-align: middle;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.hl-shell {
    min-height: 100vh;
    padding-bottom: 90px;
}

.hl-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    padding: 12px clamp(16px, 4vw, 24px);
    background: rgba(247, 250, 245, 0.9);
    border-bottom: 1px solid rgba(224, 227, 222, 0.65);
    backdrop-filter: blur(16px);
}

.hl-brand,
.hl-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--hl-primary);
}

.hl-brand-icon,
.hl-login-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    color: var(--hl-primary);
    background: transparent;
    border-radius: 0;
    font-size: 26px;
}

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

.hl-icon-button,
.hl-account-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 0;
    background: transparent;
    color: var(--hl-primary);
    box-shadow: none;
}

.hl-icon-button {
    width: 40px;
    border-radius: 50%;
}

.hl-icon-button:hover {
    background: rgba(216, 241, 222, 0.8);
}

.hl-account-chip {
    gap: 8px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.hl-main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0 40px;
}

.hl-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--hl-border);
    backdrop-filter: blur(14px);
}

.hl-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    border-radius: 12px;
    color: var(--hl-muted);
    font-size: 10px;
    font-weight: 800;
}

.hl-bottom-nav a:hover,
.hl-bottom-nav a.is-active {
    color: var(--hl-primary);
}

.hl-bottom-nav a.is-active .material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.hl-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--hl-border);
    background: var(--hl-surface);
    font-size: 14px;
    font-weight: 700;
}

.hl-alert-success {
    color: var(--hl-success);
    background: #ecfdf3;
    border-color: #abefc6;
}

.hl-alert-error {
    color: var(--hl-danger);
    background: #fef3f2;
    border-color: #fecdca;
}

.hl-alert-warning {
    color: var(--hl-warning);
    background: #fffaeb;
    border-color: #fedf89;
}

.hl-body-guest {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(206, 242, 199, 0.72), transparent 34vw),
        radial-gradient(circle at bottom right, rgba(250, 224, 151, 0.5), transparent 32vw),
        var(--hl-bg);
}

.hl-login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 51px 14px 28px;
}

.hl-login-top {
    display: grid;
    justify-items: center;
    width: min(100%, 380px);
    margin-bottom: 40px;
}

.hl-login-panel {
    width: min(100%, 366px);
    padding: 29px 30px 31px;
    background: #fff;
    border: 0;
    border-radius: 9px;
    box-shadow: 0 18px 45px rgba(0, 82, 45, 0.06);
}

.hl-login-brand {
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 23px;
}

.hl-login-logo {
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 8px;
    box-shadow: 0 10px 18px rgba(0, 82, 45, 0.22);
    font-size: 28px;
}

.hl-login-heading {
    margin-bottom: 0;
    text-align: center;
}

.hl-login-heading h1 {
    margin: 0 0 8px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 29px;
    line-height: 1.18;
    font-weight: 800;
}

.hl-login-heading p {
    margin: 0;
    color: #3e4a42;
    font-size: 16px;
    line-height: 1.4;
}

.hl-login-form {
    display: grid;
    gap: 20px;
}

.hl-field {
    display: grid;
    gap: 10px;
}

.hl-field label {
    padding-left: 3px;
    font-size: 14px;
    font-weight: 500;
}

.hl-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 51px;
    padding: 0 16px;
    background: #e6ece5;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--hl-muted);
}

.hl-input-wrap:focus-within {
    background: #fff;
    border-color: var(--hl-primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 45, 0.1);
}

.hl-input-wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--hl-text);
}

.hl-input-wrap input::placeholder {
    color: #9aa39d;
}

.hl-password-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--hl-muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hl-password-toggle:hover,
.hl-password-toggle[aria-pressed="true"] {
    color: var(--hl-primary);
    background: rgba(0, 82, 45, 0.06);
}

.hl-password-toggle .material-symbols-outlined {
    font-size: 20px;
}

.hl-field-error {
    margin: 0;
    color: var(--hl-danger);
    font-size: 13px;
    font-weight: 700;
}

.hl-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
    font-size: 14px;
}

.hl-login-row a,
.hl-login-footer a {
    color: var(--hl-primary);
    font-weight: 800;
}

.hl-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hl-muted);
    font-weight: 500;
    white-space: nowrap;
}

.hl-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--hl-primary);
}

.hl-primary-button,
.hl-hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--hl-primary);
    box-shadow: 0 13px 22px rgba(0, 82, 45, 0.2);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hl-login-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 31px;
    padding-top: 28px;
    border-top: 1px solid var(--hl-border);
    color: var(--hl-muted);
    font-size: 14px;
}

.hl-login-page-footer {
    width: min(100%, 366px);
    margin-top: 38px;
    color: #7a857e;
    text-align: center;
}

.hl-login-page-footer nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
    white-space: nowrap;
}

.hl-login-page-footer p {
    margin: 30px 0 0;
    color: #b6beb8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

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

.hl-social-login a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--hl-border);
    border-radius: 12px;
    background: #fff;
    font-weight: 800;
}

.hl-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(22px, 5vw, 34px);
    color: #fff;
    background: var(--hl-primary);
    border-radius: 20px;
    box-shadow: var(--hl-shadow);
}

.hl-eyebrow {
    margin: 0 0 8px;
    color: #c9f4d2;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-dashboard-hero h1 {
    margin: 0 0 8px;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.1;
}

.hl-dashboard-hero p {
    margin: 0;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.hl-hero-action {
    flex: 0 0 auto;
    min-width: 140px;
    background: #dff6cf;
    color: var(--hl-primary);
    box-shadow: none;
}

.hl-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.hl-quick-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 20px;
    background: var(--hl-surface);
    border: 1px solid var(--hl-border);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 82, 45, 0.05);
}

.hl-quick-card .material-symbols-outlined {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    border-radius: 12px;
}

.hl-quick-card strong {
    font-size: 17px;
}

.hl-quick-card small {
    color: var(--hl-muted);
    line-height: 1.4;
}

.hl-account-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.hl-account-welcome p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    font-weight: 700;
}

.hl-account-welcome strong {
    color: var(--hl-text);
}

.hl-account-welcome a {
    color: var(--hl-primary);
    font-size: 13px;
    font-weight: 900;
}

.hl-account-hero {
    position: relative;
    padding: 24px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 82, 45, 0.18);
    overflow: hidden;
}

.hl-account-hero::after {
    content: "";
    position: absolute;
    top: -52px;
    right: -52px;
    width: 128px;
    height: 128px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(18px);
}

.hl-account-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hl-account-stats > div {
    display: grid;
    align-content: center;
    gap: 6px;
    min-height: 88px;
}

.hl-account-stats span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-account-stats strong {
    color: #dff6cf;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.1;
}

.hl-account-stats small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
}

.hl-account-stats small.is-positive {
    color: #b8f7c6;
}

.hl-account-stats small.is-negative {
    color: #ffd1d1;
}

.hl-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.hl-action-tile {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hl-action-tile .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 74px;
    aspect-ratio: 1 / 1;
    color: var(--hl-primary);
    background: var(--hl-surface);
    border: 1px solid rgba(224, 227, 222, 0.72);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 82, 45, 0.06);
    font-size: 28px;
}

.hl-action-tile strong {
    min-height: 24px;
    font-size: 10px;
    line-height: 1.25;
    max-width: 76px;
}

.hl-action-tile.is-primary .material-symbols-outlined {
    color: #fff;
    background: #006d3e;
    border-color: #006d3e;
    box-shadow: 0 12px 24px rgba(0, 82, 45, 0.16);
}

.hl-action-tile.is-primary strong {
    color: var(--hl-primary);
}

.hl-section {
    margin-top: 30px;
}

.hl-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.hl-section-heading h2 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.hl-section-heading a {
    color: var(--hl-primary);
    font-size: 13px;
    font-weight: 900;
}

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

.hl-category-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 86px;
    padding: 14px 10px;
    text-align: center;
    background: var(--hl-surface);
    border: 1px solid rgba(223, 231, 220, 0.75);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 82, 45, 0.04);
}

.hl-category-card .material-symbols-outlined {
    color: var(--hl-secondary);
    font-size: 27px;
}

.hl-category-card strong {
    font-size: 13px;
    line-height: 1.3;
}

.hl-promo-list,
.hl-order-list {
    display: grid;
    gap: 12px;
}

.hl-promo-card,
.hl-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px;
    background: var(--hl-surface);
    border: 1px solid var(--hl-border);
    border-radius: 12px;
}

.hl-promo-card.is-green {
    background: #edf8ef;
}

.hl-promo-card.is-gold {
    background: #fff7df;
}

.hl-promo-card.is-rose {
    background: #fff0f0;
}

.hl-promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--hl-primary);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 82, 45, 0.06);
}

.hl-promo-card > span:nth-child(2),
.hl-order-row > span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.hl-promo-card strong,
.hl-order-row strong {
    font-size: 15px;
}

.hl-promo-card small,
.hl-order-row small {
    color: var(--hl-muted);
    line-height: 1.4;
}

.hl-order-row b {
    flex: 0 0 auto;
    color: var(--hl-primary);
}

.hl-product-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 190px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.hl-product-card {
    display: grid;
    gap: 8px;
    overflow: hidden;
    background: var(--hl-surface);
    border: 1px solid var(--hl-border);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 82, 45, 0.04);
}

.hl-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--hl-surface-soft);
}

.hl-product-card span,
.hl-product-card strong,
.hl-product-card small {
    padding: 0 12px;
}

.hl-product-card span {
    min-height: 36px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.hl-product-card strong {
    padding-bottom: 12px;
    color: var(--hl-primary);
}

.hl-product-card small {
    margin-top: -8px;
    padding-bottom: 12px;
    color: var(--hl-muted);
    font-size: 12px;
    text-decoration: line-through;
}

.hl-empty-state {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 28px;
    text-align: center;
    color: var(--hl-muted);
    background: var(--hl-surface);
    border: 1px dashed var(--hl-border);
    border-radius: 16px;
}

.hl-empty-state .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 32px;
}

.hl-orderdesk-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.hl-orderdesk-head h1 {
    margin: 0 0 4px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.hl-orderdesk-head p:last-child {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    font-weight: 600;
}

.hl-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-top: 2px;
    color: var(--hl-primary);
    border-radius: 999px;
}

.hl-back-button:hover {
    background: var(--hl-primary-soft);
}

.hl-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    margin: -4px 0 18px;
    color: var(--hl-muted);
    font-size: 12px;
    white-space: nowrap;
}

.hl-breadcrumbs a:last-child {
    color: var(--hl-primary);
    font-weight: 800;
}

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

.hl-filter-button,
.hl-category-toolbar select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    color: var(--hl-primary);
    background: var(--hl-surface);
    border: 1px solid var(--hl-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.hl-category-toolbar select {
    min-width: 126px;
    color: var(--hl-text);
    border-radius: 12px;
}

.hl-orderdesk-products {
    display: grid;
    gap: 22px;
    padding-bottom: 112px;
}

.hl-order-product-card {
    overflow: hidden;
    background: var(--hl-surface);
    border: 1px solid rgba(190, 201, 190, 0.5);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 82, 45, 0.06);
}

.hl-order-product-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--hl-surface-soft);
}

.hl-order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl-order-product-image > .material-symbols-outlined {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--hl-primary);
    font-size: 46px;
}

.hl-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    color: #fff;
    background: #7c2b33;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(124, 43, 51, 0.18);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hl-product-badge .material-symbols-outlined {
    font-size: 13px;
    font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
}

.hl-order-product-body {
    padding: 18px;
}

.hl-order-product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.hl-order-product-top h2 {
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.22;
}

.hl-order-product-price {
    display: grid;
    justify-items: end;
    gap: 2px;
    flex: 0 0 auto;
}

.hl-order-product-price strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    line-height: 1.1;
}

.hl-order-product-price small {
    color: var(--hl-muted);
    font-size: 12px;
    font-weight: 700;
    text-decoration: line-through;
}

.hl-product-note {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: var(--hl-primary);
    background: rgba(0, 82, 45, 0.06);
    border-left: 4px solid var(--hl-primary);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.45;
}

.hl-order-product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hl-qty-control {
    display: flex;
    align-items: center;
    flex: 1 1 160px;
    max-width: 160px;
    padding: 4px;
    background: var(--hl-surface-soft);
    border-radius: 12px;
}

.hl-qty-control button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--hl-primary);
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 82, 45, 0.08);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.hl-qty-control button:active {
    transform: scale(0.92);
}

.hl-qty-control button:last-child {
    color: #fff;
    background: var(--hl-primary);
}

.hl-qty-control input {
    width: 100%;
    min-width: 42px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.hl-qty-control input::-webkit-outer-spin-button,
.hl-qty-control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.hl-add-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 120px;
    max-width: 120px;
    min-height: 48px;
    padding: 0 18px;
    color: #00210f;
    background: #9cf6ba;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.15s ease, background 0.15s ease;
}

.hl-add-cart-button:disabled {
    cursor: progress;
    opacity: 0.7;
}

.hl-add-cart-button.is-added {
    background: #cbead8;
    transform: scale(0.98);
}

.hl-pagination {
    margin: 18px 0 126px;
}

.hl-pagination nav {
    display: flex;
    justify-content: center;
}

.hl-pagination ul,
.hl-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(223, 231, 220, 0.72);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 82, 45, 0.06);
}

.hl-pagination li,
.hl-pagination .page-item {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hl-pagination a,
.hl-pagination span,
.hl-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    color: var(--hl-primary);
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 82, 45, 0.05);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.hl-pagination a:hover,
.hl-pagination .page-link:hover {
    color: #fff;
    background: var(--hl-primary);
}

.hl-pagination .active span,
.hl-pagination .page-item.active .page-link,
.hl-pagination [aria-current="page"] {
    color: #fff;
    background: var(--hl-primary);
    border-color: var(--hl-primary);
}

.hl-pagination .disabled span,
.hl-pagination .page-item.disabled .page-link,
.hl-pagination [aria-disabled="true"] {
    color: #9aa39d;
    background: var(--hl-surface-soft);
    box-shadow: none;
    pointer-events: none;
}

.hl-cart-summary-bar {
    position: fixed;
    right: 16px;
    bottom: 78px;
    left: 16px;
    z-index: 58;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1090px;
    margin: 0 auto;
    padding: 14px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 82, 45, 0.24);
}

.hl-cart-summary-bar > div,
.hl-cart-summary-bar a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hl-cart-summary-bar > div > .material-symbols-outlined {
    font-size: 28px;
}

.hl-cart-summary-bar small,
.hl-cart-summary-bar strong {
    display: block;
}

.hl-cart-summary-bar small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-cart-summary-bar strong {
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-cart-summary-bar a {
    min-height: 46px;
    padding: 0 18px;
    color: #00210f;
    background: #9cf6ba;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
}

.hl-cart-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 4px 0 22px;
}

.hl-cart-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
    line-height: 1.1;
}

.hl-cart-address,
.hl-cart-summary,
.hl-cart-voucher,
.hl-payment-method {
    margin-bottom: 18px;
}

.hl-cart-address {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 82, 45, 0.05);
}

.hl-cart-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(73, 100, 86, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-cart-section-title .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 17px;
}

.hl-cart-address strong {
    display: block;
    margin-bottom: 6px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

.hl-cart-address p {
    margin: 4px 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hl-cart-address-actions {
    display: flex;
    gap: 16px;
    margin-top: 14px;
}

.hl-cart-address-actions a,
.hl-cart-address-actions button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    color: var(--hl-primary);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 800;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hl-cart-address-actions .material-symbols-outlined {
    font-size: 17px;
}

.hl-modal-open {
    overflow: hidden;
}

.hl-cart-address-modal[hidden] {
    display: none;
}

.hl-cart-address-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    align-items: end;
    padding: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hl-cart-address-panel {
    display: flex;
    flex-direction: column;
    width: min(100%, 672px);
    max-height: min(795px, 88vh);
    margin: 0 auto;
    overflow: hidden;
    background: var(--hl-surface);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
}

.hl-cart-address-modal-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);
}

.hl-cart-address-modal-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--hl-primary);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hl-cart-address-modal-head button:hover {
    background: var(--hl-surface-soft);
}

.hl-cart-address-modal-head button[hidden] {
    visibility: hidden;
    pointer-events: none;
}

.hl-cart-address-modal-head h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.hl-cart-address-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.hl-cart-address-list {
    display: grid;
    gap: 16px;
}

.hl-cart-address-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hl-cart-address-option:hover {
    border-color: rgba(111, 122, 112, 0.35);
}

.hl-cart-address-option.is-selected {
    border-color: var(--hl-primary);
    box-shadow: 0 8px 24px rgba(0, 82, 45, 0.04);
}

.hl-cart-address-option-main {
    display: grid;
    flex: 1;
    gap: 10px;
    min-width: 0;
    padding: 0;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hl-cart-address-option-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hl-cart-address-option-title strong {
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

.hl-cart-address-badge {
    padding: 3px 8px;
    color: var(--hl-primary-strong);
    background: var(--hl-primary-soft);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-cart-address-option-line {
    display: flex;
    gap: 8px;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hl-cart-address-option-line .material-symbols-outlined {
    flex: 0 0 auto;
    color: var(--hl-muted);
    font-size: 18px;
}

.hl-cart-address-option.is-selected .hl-cart-address-option-line .is-location {
    color: var(--hl-primary);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hl-cart-address-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--hl-primary);
    border-radius: 12px;
    text-decoration: none;
}

.hl-cart-address-edit:hover {
    background: rgba(0, 82, 45, 0.06);
}

.hl-cart-address-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    width: 100%;
    margin-top: 16px;
    color: var(--hl-primary);
    background: transparent;
    border: 2px dashed rgba(111, 122, 112, 0.38);
    border-radius: 16px;
    font-family: Manrope, Inter, sans-serif;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.hl-cart-address-add:hover {
    background: rgba(0, 82, 45, 0.04);
}

.hl-cart-address-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 26px 18px;
    color: var(--hl-muted);
    text-align: center;
    background: #fff;
    border: 1px dashed rgba(111, 122, 112, 0.38);
    border-radius: 16px;
}

.hl-cart-address-empty .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 36px;
}

.hl-cart-address-empty strong {
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
}

.hl-cart-address-empty p {
    margin: 0;
    font-size: 13px;
}

.hl-cart-address-modal-footer {
    padding: 20px 24px 24px;
    background: #fff;
    border-top: 1px solid rgba(224, 227, 222, 0.8);
}

.hl-cart-address-modal-footer button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.15);
    font-family: Manrope, Inter, sans-serif;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.hl-cart-address-modal-footer button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.hl-cart-address-form[hidden] {
    display: none;
}

.hl-cart-address-form {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
}

.hl-cart-address-form-body {
    display: grid;
    flex: 1;
    gap: 26px;
    overflow-y: auto;
    padding: 28px 24px;
    background: #fff;
}

.hl-cart-address-form section {
    display: grid;
    gap: 18px;
}

.hl-cart-address-form h3 {
    margin: 0 0 2px;
    padding-left: 4px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.hl-cart-address-field {
    position: relative;
    display: grid;
    gap: 6px;
}

.hl-cart-address-field > span {
    position: absolute;
    top: -9px;
    left: 14px;
    z-index: 1;
    padding: 0 6px;
    color: rgba(111, 122, 112, 0.88);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.hl-cart-address-field input,
.hl-cart-address-field select,
.hl-cart-address-field textarea {
    width: 100%;
    min-height: 60px;
    padding: 17px 14px 8px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 12px;
    outline: 0;
}

.hl-cart-address-field textarea {
    min-height: 92px;
    resize: vertical;
}

.hl-cart-address-field input:focus,
.hl-cart-address-field select:focus,
.hl-cart-address-field textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--hl-primary);
}

.hl-cart-address-field small {
    min-height: 16px;
    color: var(--hl-danger);
    font-size: 12px;
    font-weight: 700;
}

.hl-cart-address-default {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--hl-surface-soft);
    border-radius: 16px;
    cursor: pointer;
}

.hl-cart-address-default input {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    accent-color: var(--hl-primary);
}

.hl-cart-address-default span {
    display: grid;
    gap: 3px;
}

.hl-cart-address-default strong {
    color: var(--hl-text);
    font-size: 14px;
}

.hl-cart-address-default small {
    color: var(--hl-muted);
    font-size: 12px;
    font-style: italic;
}

.hl-cart-address-map-preview {
    display: grid;
    place-items: center;
    min-height: 128px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 82, 45, 0.08), rgba(0, 82, 45, 0.02)),
        repeating-linear-gradient(30deg, rgba(0, 82, 45, 0.08) 0 2px, transparent 2px 28px),
        var(--hl-surface-strong);
    border-radius: 16px;
}

.hl-cart-address-map-preview .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--hl-primary);
    background: rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    font-size: 34px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 560px) {
    .hl-cart-address-form-grid {
        grid-template-columns: 1fr;
    }

    .hl-cart-address-modal-head {
        padding: 16px 18px;
    }

    .hl-cart-address-modal-body,
    .hl-cart-address-form-body {
        padding: 20px 18px;
    }
}

.hl-cart-items {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.hl-cart-items h2 {
    margin: 0 0 2px;
    padding: 0 2px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
}

.hl-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 82, 45, 0.04);
    transition: opacity 0.15s ease;
}

.hl-cart-item.is-loading {
    opacity: 0.62;
    pointer-events: none;
}

.hl-cart-item-image {
    display: grid;
    place-items: center;
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    color: var(--hl-primary);
    background: var(--hl-surface-soft);
    border-radius: 8px;
}

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

.hl-cart-item-body {
    flex: 1;
    min-width: 0;
}

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

.hl-cart-item-bottom {
    align-items: center;
}

.hl-cart-item h3 {
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 16px;
    line-height: 1.25;
}

.hl-cart-item-top button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: rgba(63, 73, 65, 0.52);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hl-cart-item-top button:hover {
    color: var(--hl-danger);
}

.hl-cart-item p {
    margin: 6px 0 12px;
    color: var(--hl-muted);
    font-size: 13px;
}

.hl-cart-item p span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
}

.hl-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: var(--hl-surface-soft);
    border-radius: 8px;
}

.hl-cart-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: var(--hl-primary);
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.hl-cart-qty button:hover {
    background: #fff;
}

.hl-cart-qty span:not(.material-symbols-outlined) {
    min-width: 32px;
    padding: 0 6px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.hl-cart-item-bottom strong {
    color: var(--hl-primary);
    font-size: 14px;
}

.hl-cart-discounts {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
    padding: 14px;
    background: rgba(0, 82, 45, 0.06);
    border-left: 4px solid var(--hl-primary);
    border-radius: 12px;
}

.hl-cart-discounts p,
.hl-cart-summary p,
.hl-cart-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
}

.hl-cart-discounts span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--hl-primary);
    font-size: 13px;
    font-weight: 800;
}

.hl-cart-discounts strong,
.hl-cart-summary .is-discount {
    color: var(--hl-primary);
}

.hl-voucher-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.66);
    border-radius: 12px;
}

.hl-voucher-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--hl-text);
    font-size: 14px;
}

.hl-voucher-form button {
    padding: 8px 12px;
    color: var(--hl-primary);
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.hl-voucher-form .hl-voucher-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    border-radius: 999px;
}

.hl-voucher-form button:disabled,
.hl-applied-coupons button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.hl-voucher-message {
    display: block;
    margin-top: 8px;
    padding: 0 2px;
    font-size: 13px;
    font-weight: 800;
}

.hl-voucher-message.is-error {
    color: var(--hl-danger);
}

.hl-voucher-message.is-success {
    color: var(--hl-success);
}

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

.hl-coupon-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    align-items: end;
    background: rgba(24, 29, 25, 0.4);
    backdrop-filter: blur(5px);
}

.hl-coupon-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 672px);
    max-height: min(813px, 92vh);
    margin: 0 auto;
    overflow: hidden;
    background: var(--hl-bg);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 82, 45, 0.08);
}

.hl-coupon-handle {
    flex: 0 0 auto;
    width: 48px;
    height: 6px;
    margin: 16px auto 8px;
    background: var(--hl-surface-strong);
    border-radius: 999px;
}

.hl-coupon-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
}

.hl-coupon-head h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.hl-coupon-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    color: var(--hl-muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hl-coupon-head button:hover {
    background: var(--hl-surface-soft);
}

.hl-coupon-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 12px 24px 150px;
}

.hl-coupon-manual {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.hl-coupon-manual label {
    color: var(--hl-muted);
    font-size: 14px;
    font-weight: 800;
}

.hl-coupon-manual > div {
    display: flex;
    gap: 12px;
}

.hl-coupon-manual input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    color: var(--hl-text);
    background: var(--hl-surface-strong);
    border: 0;
    border-radius: 12px;
    outline: 0;
}

.hl-coupon-manual input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--hl-primary);
}

.hl-coupon-manual button {
    flex: 0 0 auto;
    padding: 0 20px;
    color: var(--hl-primary-strong);
    background: #cbead8;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
}

.hl-coupon-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hl-coupon-section-head h3 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-coupon-section-head span {
    flex: 0 0 auto;
    padding: 4px 10px;
    color: #00210f;
    background: #9cf6ba;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.hl-coupon-card {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 122px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 82, 45, 0.04);
    cursor: pointer;
}

.hl-coupon-card::before,
.hl-coupon-card::after {
    content: "";
    position: absolute;
    left: 28%;
    z-index: 1;
    width: 16px;
    height: 16px;
    background: var(--hl-bg);
    border-radius: 999px;
    transform: translateX(-50%);
}

.hl-coupon-card::before {
    top: -8px;
}

.hl-coupon-card::after {
    bottom: -8px;
}

.hl-coupon-card:hover {
    box-shadow: 0 10px 24px rgba(0, 82, 45, 0.08);
}

.hl-coupon-card.is-selected {
    background: rgba(156, 246, 186, 0.2);
    border-color: var(--hl-primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 45, 0.05);
}

.hl-coupon-card.is-disabled {
    opacity: 0.74;
    cursor: not-allowed;
}

.hl-coupon-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28%;
    flex-direction: column;
    gap: 4px;
    min-width: 96px;
    padding: 14px 10px;
    color: #fff;
    background: var(--hl-primary);
    border-right: 1px dashed rgba(255, 255, 255, 0.35);
}

.hl-coupon-card-media.is-private {
    color: var(--hl-primary-strong);
    background: #cbead8;
    border-right-color: rgba(111, 122, 112, 0.35);
}

.hl-coupon-card-media .material-symbols-outlined {
    font-size: 32px;
}

.hl-coupon-card-media small {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hl-coupon-card-media strong {
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    line-height: 1;
}

.hl-coupon-card-content {
    display: grid;
    align-content: center;
    flex: 1;
    gap: 5px;
    min-width: 0;
    padding: 16px;
}

.hl-coupon-card-content > strong {
    color: var(--hl-primary);
    font-size: 15px;
    line-height: 1.3;
}

.hl-coupon-card-content > small {
    overflow: hidden;
    color: var(--hl-muted);
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-coupon-card-content em {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--hl-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.hl-coupon-card-content em.is-warning {
    color: #7c2b33;
}

.hl-coupon-card-content em .material-symbols-outlined {
    font-size: 18px;
}

.hl-coupon-card-content code {
    justify-self: start;
    padding: 4px 7px;
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    border-radius: 6px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
}

.hl-coupon-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    padding-right: 16px;
}

.hl-coupon-check::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--hl-border);
    border-radius: 999px;
}

.hl-coupon-card.is-selected .hl-coupon-check::before {
    display: none;
}

.hl-coupon-check .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 999px;
    font-size: 16px;
}

.hl-coupon-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 28px 18px;
    color: var(--hl-muted);
    text-align: center;
    background: #fff;
    border: 1px dashed var(--hl-border);
    border-radius: 16px;
}

.hl-coupon-empty .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 34px;
}

.hl-coupon-empty strong {
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
}

.hl-coupon-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 16px 24px 24px;
    background: rgba(247, 250, 245, 0.88);
    border-top: 1px solid var(--hl-surface-strong);
    backdrop-filter: blur(18px);
}

.hl-coupon-footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--hl-muted);
    font-size: 14px;
    font-weight: 700;
}

.hl-coupon-footer strong {
    color: var(--hl-primary);
    font-weight: 900;
}

.hl-coupon-footer button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 82, 45, 0.2);
    cursor: pointer;
    font-family: Manrope, Inter, sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.hl-applied-coupons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.hl-applied-coupons[hidden] {
    display: none;
}

.hl-applied-coupons > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 5px 6px 5px 10px;
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    border: 1px solid rgba(0, 82, 45, 0.12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.hl-applied-coupons .material-symbols-outlined {
    font-size: 16px;
}

.hl-applied-coupons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    color: var(--hl-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hl-cart-summary {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: var(--hl-surface-soft);
    border-radius: 16px;
}

.hl-cart-summary h2 {
    margin: 0 0 2px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-cart-summary p {
    color: var(--hl-muted);
    font-size: 14px;
}

.hl-cart-summary p strong {
    color: var(--hl-text);
}

.hl-cart-summary div {
    align-items: flex-end;
    padding-top: 18px;
    border-top: 1px solid rgba(111, 122, 112, 0.2);
}

.hl-cart-summary div span {
    color: rgba(73, 100, 86, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-cart-summary div strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1;
}

.hl-payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    color: var(--hl-muted);
    background: rgba(224, 227, 222, 0.38);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.hl-payment-method span:nth-child(2) {
    flex: 1;
}

.hl-payment-method .material-symbols-outlined:last-child {
    color: var(--hl-primary);
    font-size: 18px;
}

.hl-cart-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 34px 20px;
    color: var(--hl-muted);
    background: #fff;
    border-radius: 12px;
}

.hl-cart-empty .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 42px;
}

.hl-cart-empty strong {
    color: var(--hl-text);
}

.hl-cart-empty a {
    color: var(--hl-primary);
    font-weight: 900;
    text-decoration: none;
}

.hl-cart-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    padding: 14px 16px calc(22px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -12px 40px rgba(0, 82, 45, 0.08);
    backdrop-filter: blur(16px);
}

.hl-cart-action-bar a,
.hl-cart-action-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 768px;
    min-height: 56px;
    margin: 0 auto;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-family: Manrope, Inter, sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

.hl-cart-action-bar button:disabled {
    opacity: 0.68;
    cursor: wait;
}

.hl-checkout-form {
    display: block;
}

.hl-checkout-methods {
    margin-bottom: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 82, 45, 0.05);
}

.hl-checkout-method-list {
    display: grid;
    gap: 10px;
}

.hl-checkout-method-list .checkout-payment-method-section,
.hl-checkout-method-list .checkout-payment-methods {
    margin: 0;
}

.hl-checkout-method-list label,
.hl-checkout-method-list .shipping__title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
}

.hl-checkout-method-list .shipping__title > .material-symbols-outlined {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--hl-primary);
    background: #fff;
    border-radius: 10px;
}

.hl-checkout-method-list .shipping__title > span:last-child {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.hl-checkout-method-list input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--hl-primary);
}

.hl-checkout-method-list input[type="radio"]:checked + label,
.hl-checkout-method-list label:has(input[type="radio"]:checked) {
    background: #fff;
    border-color: var(--hl-primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 45, 0.08);
}

.hl-checkout-method-list b,
.hl-checkout-method-list .title {
    color: var(--hl-primary);
    font-size: 14px;
    font-weight: 900;
}

.hl-checkout-method-list small {
    color: var(--hl-muted);
    font-size: 12px;
    line-height: 1.45;
}

.hl-checkout-method-empty {
    padding: 14px;
    color: var(--hl-muted);
    background: var(--hl-surface-soft);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.hl-checkout-error,
.hl-checkout-guest-fields small {
    display: block;
    min-height: 16px;
    margin-top: 8px;
    color: var(--hl-danger);
    font-size: 12px;
    font-weight: 800;
}

.hl-checkout-guest-fields {
    display: grid;
    gap: 14px;
}

.hl-checkout-guest-fields label {
    display: grid;
    gap: 6px;
}

.hl-checkout-guest-fields label > span {
    color: var(--hl-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hl-checkout-guest-fields input,
.hl-checkout-guest-fields select,
.hl-checkout-guest-fields textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 1px solid transparent;
    border-radius: 10px;
    outline: 0;
}

.hl-checkout-guest-fields textarea {
    resize: vertical;
}

.hl-checkout-guest-fields input:focus,
.hl-checkout-guest-fields select:focus,
.hl-checkout-guest-fields textarea:focus {
    background: #fff;
    border-color: var(--hl-primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 45, 0.08);
}

.hl-checkout-error-modal[hidden] {
    display: none;
}

.hl-checkout-error-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(18, 32, 22, 0.28);
    backdrop-filter: blur(10px);
}

.hl-checkout-error-dialog {
    position: relative;
    width: min(100%, 480px);
    overflow: hidden;
    background: var(--hl-bg);
    border: 1px solid rgba(255, 218, 214, 0.9);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(122, 16, 12, 0.18);
}

.hl-checkout-error-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--hl-muted);
    background: rgba(255, 255, 255, 0.74);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hl-checkout-error-close:hover {
    color: var(--hl-danger);
    background: #fff;
}

.hl-checkout-error-hero {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 42px 26px 24px;
    text-align: center;
}

.hl-checkout-error-hero > div {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    color: var(--hl-danger);
    background: #ffdad6;
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(186, 26, 26, 0.12);
}

.hl-checkout-error-hero .material-symbols-outlined {
    font-size: 48px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.hl-checkout-error-hero h2 {
    margin: 0;
    color: var(--hl-danger);
    font-family: Manrope, Inter, sans-serif;
    font-size: 26px;
    font-weight: 900;
}

.hl-checkout-error-hero p {
    max-width: 340px;
    margin: 0;
    color: var(--hl-muted);
    line-height: 1.55;
    white-space: pre-line;
}

.hl-checkout-error-actions {
    display: grid;
    gap: 10px;
    padding: 18px 24px 24px;
    background: #fff;
    border-top: 1px solid rgba(224, 227, 222, 0.72);
}

.hl-checkout-error-actions button,
.hl-checkout-error-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 15px;
    font-weight: 900;
}

.hl-checkout-error-actions button {
    color: #fff;
    background: var(--hl-danger);
    border: 0;
    cursor: pointer;
}

.hl-checkout-error-actions a {
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
}

.hl-success-page {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 22px;
    background:
        linear-gradient(rgba(0, 82, 45, 0.12), rgba(0, 82, 45, 0.06)),
        var(--hl-bg);
    overflow: hidden;
}

.hl-success-modal {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(100%, 672px);
    max-height: calc(100vh - 44px);
    overflow: hidden;
    background: var(--hl-bg);
    border: 1px solid rgba(224, 227, 222, 0.72);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0, 82, 45, 0.16);
}

.hl-success-head {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.06);
    backdrop-filter: blur(18px);
}

.hl-success-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.hl-success-head a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--hl-muted);
    border-radius: 999px;
}

.hl-success-head a:hover {
    color: var(--hl-primary);
    background: var(--hl-surface-soft);
}

.hl-success-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px 24px 22px;
}

.hl-success-hero {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-bottom: 28px;
    text-align: center;
}

.hl-success-hero > div {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 8px;
    color: var(--hl-primary);
    background: #9cf6ba;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.12);
}

.hl-success-hero > div .material-symbols-outlined {
    font-size: 52px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.hl-success-hero h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
}

.hl-success-hero p {
    max-width: 360px;
    margin: 0;
    color: var(--hl-muted);
    line-height: 1.55;
}

.hl-success-hero p strong {
    color: var(--hl-text);
}

.hl-success-hero.is-empty > div {
    color: var(--hl-muted);
    background: var(--hl-surface-strong);
}

.hl-success-card {
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(190, 201, 190, 0.28);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 82, 45, 0.04);
}

.hl-success-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

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

.hl-success-grid small {
    display: block;
    margin-bottom: 8px;
    color: var(--hl-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-success-grid p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--hl-primary);
}

.hl-success-grid strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 15px;
}

.hl-success-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(190, 201, 190, 0.28);
}

.hl-success-total span {
    display: grid;
    gap: 4px;
}

.hl-success-total b {
    color: var(--hl-muted);
    font-size: 14px;
}

.hl-success-total small {
    color: var(--hl-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hl-success-total > strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 30px;
    font-weight: 900;
    white-space: nowrap;
}

.hl-success-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 16px;
    overflow: hidden;
}

.hl-success-track span:first-child {
    display: grid;
    gap: 4px;
}

.hl-success-track strong {
    font-family: Manrope, Inter, sans-serif;
    font-size: 17px;
}

.hl-success-track small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.hl-success-track > .material-symbols-outlined {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.hl-success-actions {
    display: grid;
    gap: 10px;
    padding: 18px 24px 24px;
    background: #fff;
    border-top: 1px solid rgba(224, 227, 222, 0.72);
}

.hl-success-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 15px;
    font-weight: 900;
}

.hl-success-actions a:first-child {
    color: #fff;
    background: var(--hl-primary);
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.12);
}

.hl-success-actions a:last-child {
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
}

.hl-success-confetti {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hl-success-confetti i {
    position: absolute;
    top: -12px;
    border-radius: 3px;
    opacity: 0;
    animation-name: hl-success-confetti-fall;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

@keyframes hl-success-confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        transform: translateY(105vh) rotate(260deg);
        opacity: 0;
    }
}

@media (max-width: 560px) {
    .hl-success-page {
        align-items: end;
        padding: 0;
    }

    .hl-success-modal {
        max-height: 100vh;
        border-radius: 24px 24px 0 0;
    }

    .hl-success-grid {
        grid-template-columns: 1fr;
    }

    .hl-success-total {
        align-items: flex-start;
        flex-direction: column;
    }
}

.hl-profile-hero {
    display: grid;
    justify-items: center;
    gap: 22px;
    margin: 22px 0 34px;
    text-align: center;
}

.hl-profile-avatar {
    position: relative;
    width: 128px;
    height: 128px;
    border: 4px solid #fff;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 82, 45, 0.12);
}

.hl-profile-avatar img,
.hl-profile-avatar > span:first-child {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    background: var(--hl-primary);
    border-radius: inherit;
    font-family: Manrope, Inter, sans-serif;
    font-size: 52px;
    font-weight: 900;
    object-fit: cover;
}

.hl-profile-avatar a {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--hl-primary);
    border: 2px solid var(--hl-surface);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 82, 45, 0.18);
}

.hl-profile-avatar a .material-symbols-outlined {
    font-size: 18px;
}

.hl-profile-title h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 26px;
    line-height: 1.15;
}

.hl-profile-title p {
    margin: 7px 0 14px;
    color: var(--hl-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hl-profile-title > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    color: #4f6a5c;
    background: var(--hl-secondary-soft);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
}

.hl-profile-title i {
    width: 8px;
    height: 8px;
    background: var(--hl-primary);
    border-radius: 999px;
}

.hl-profile-menu {
    display: grid;
    gap: 14px;
}

.hl-profile-menu-group {
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 82, 45, 0.04);
}

.hl-profile-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    color: var(--hl-text);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.hl-profile-menu-item + .hl-profile-menu-item {
    border-top: 1px solid var(--hl-surface-soft);
}

.hl-profile-menu-item:hover {
    background: var(--hl-surface-soft);
}

.hl-profile-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: var(--hl-primary);
    background: var(--hl-surface-soft);
    border-radius: 8px;
}

.hl-profile-menu-item > span:nth-child(2) {
    display: grid;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.hl-profile-menu-item strong {
    font-size: 15px;
}

.hl-profile-menu-item small {
    color: var(--hl-muted);
    font-size: 12px;
}

.hl-profile-menu-item > .material-symbols-outlined:last-child {
    color: var(--hl-border-strong);
    font-size: 24px;
}

.hl-profile-logout {
    margin: 36px 0 8px;
}

.hl-profile-logout form {
    margin: 0;
}

.hl-profile-logout button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    color: #7c2b33;
    background: transparent;
    border: 1px solid #ffb3b5;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.hl-profile-logout p {
    margin: 18px 0 0;
    color: rgba(63, 73, 65, 0.42);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.hl-profile-form-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 4px 0 28px;
}

.hl-profile-form-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.hl-profile-form {
    display: block;
}

.hl-profile-form-avatar {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 34px;
    text-align: center;
}

.hl-profile-form-avatar > div {
    position: relative;
    width: 128px;
    height: 128px;
    margin-bottom: 8px;
    border: 4px solid #fff;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.08);
}

.hl-profile-form-avatar img,
.hl-profile-form-avatar > div > span:first-child {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    background: var(--hl-primary);
    border-radius: inherit;
    font-family: Manrope, Inter, sans-serif;
    font-size: 52px;
    font-weight: 900;
    object-fit: cover;
}

.hl-profile-form-avatar button {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 82, 45, 0.18);
}

.hl-profile-form-avatar button .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.hl-profile-form-avatar h2 {
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
}

.hl-profile-form-avatar p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    font-weight: 700;
}

.hl-profile-fields {
    display: grid;
    gap: 18px;
}

.hl-profile-fields label {
    display: grid;
    gap: 8px;
}

.hl-profile-fields label > span {
    padding-left: 4px;
    color: var(--hl-muted);
    font-family: Manrope, Inter, sans-serif;
    font-size: 14px;
    font-weight: 900;
}

.hl-profile-fields input,
.hl-profile-fields select {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 12px;
    outline: 0;
    font: inherit;
    font-weight: 700;
    transition: box-shadow 0.15s ease, background 0.15s ease;
}

.hl-profile-fields input:focus,
.hl-profile-fields select:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--hl-primary);
}

.hl-profile-fields input[readonly],
.hl-profile-fields input:disabled {
    color: rgba(24, 29, 25, 0.64);
}

.hl-profile-fields i {
    position: relative;
    display: block;
    font-style: normal;
}

.hl-profile-fields i input {
    padding-right: 48px;
}

.hl-profile-fields i .material-symbols-outlined {
    position: absolute;
    top: 50%;
    right: 16px;
    color: var(--hl-border-strong);
    transform: translateY(-50%);
}

.hl-profile-fields small {
    color: var(--hl-danger);
    font-size: 12px;
    line-height: 1.4;
}

.hl-profile-security {
    margin-top: 32px;
    padding: 20px;
    background: var(--hl-surface-soft);
    border-left: 4px solid rgba(0, 82, 45, 0.24);
    border-radius: 12px;
}

.hl-profile-security h3 {
    margin: 0 0 8px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-profile-security p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hl-profile-save-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
    background: rgba(247, 250, 245, 0.86);
    backdrop-filter: blur(16px);
}

.hl-profile-save-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 448px;
    min-height: 56px;
    margin: 0 auto;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.08);
    cursor: pointer;
    font-family: Manrope, Inter, sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.hl-address-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 4px 0 28px;
}

.hl-address-head > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hl-address-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
}

.hl-address-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--hl-primary);
    background: transparent;
    border: 0;
    border-radius: 999px;
}

.hl-address-intro {
    margin-bottom: 28px;
}

.hl-address-intro h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 30px;
    line-height: 1.1;
}

.hl-address-intro p {
    margin: 10px 0 0;
    color: var(--hl-muted);
    font-size: 15px;
    line-height: 1.55;
}

.hl-address-list {
    display: grid;
    gap: 16px;
}

.hl-address-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.06);
}

.hl-address-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.hl-address-card-top > div:first-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hl-address-card-top h3 {
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-address-card-top span:not(.material-symbols-outlined) {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 11px;
    color: #4f6a5c;
    background: var(--hl-secondary-soft);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-address-card-top span.is-default {
    color: #fff;
    background: var(--hl-primary);
}

.hl-address-card-actions {
    display: flex;
    gap: 4px;
}

.hl-address-card-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--hl-muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hl-address-card-actions button:hover {
    background: var(--hl-surface-soft);
}

.hl-address-card-actions [data-address-delete]:hover {
    color: var(--hl-danger);
    background: #ffdad6;
}

.hl-address-lines {
    display: grid;
    gap: 10px;
}

.hl-address-lines p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hl-address-lines .material-symbols-outlined {
    margin-top: 2px;
    color: var(--hl-primary);
    font-size: 18px;
}

.hl-address-add-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    margin: 28px 0;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.15);
    cursor: pointer;
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.hl-address-map {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    min-height: 190px;
    margin-bottom: 18px;
    padding: 20px;
    overflow: hidden;
    background:
        linear-gradient(to top, rgba(247, 250, 245, 0.98), rgba(247, 250, 245, 0.22)),
        radial-gradient(circle at 18% 24%, rgba(128, 217, 159, 0.34), transparent 34%),
        linear-gradient(135deg, #e0e3de, #f1f4ef);
    border-radius: 12px;
}

.hl-address-map p {
    margin: 0 0 4px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-weight: 900;
}

.hl-address-map span {
    color: var(--hl-muted);
    font-size: 12px;
}

.hl-address-map > div:last-child {
    display: flex;
    margin-bottom: 2px;
}

.hl-address-map i {
    width: 32px;
    height: 32px;
    margin-left: -8px;
    border: 2px solid var(--hl-surface);
    border-radius: 999px;
}

.hl-address-map i:nth-child(1) {
    background: #80d99f;
}

.hl-address-map i:nth-child(2) {
    background: #cbead8;
}

.hl-address-map i:nth-child(3) {
    background: #006d3e;
}

.hl-address-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 34px 20px;
    color: var(--hl-muted);
    background: #fff;
    border-radius: 12px;
}

.hl-address-empty .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 42px;
}

.hl-address-empty strong {
    color: var(--hl-text);
}

.hl-address-drawer[hidden] {
    display: none;
}

.hl-address-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    align-items: end;
    background: rgba(24, 29, 25, 0.42);
}

.hl-address-drawer-panel {
    width: min(100%, 640px);
    max-height: 88vh;
    margin: 0 auto;
    overflow-y: auto;
    padding: 18px;
    background: var(--hl-surface);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 82, 45, 0.16);
}

.hl-address-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.hl-address-drawer-head h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
}

.hl-address-drawer-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--hl-muted);
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 999px;
}

.hl-address-drawer form {
    display: grid;
    gap: 14px;
}

.hl-address-drawer label {
    display: grid;
    gap: 7px;
}

.hl-address-drawer label > span {
    color: var(--hl-muted);
    font-size: 13px;
    font-weight: 900;
}

.hl-address-drawer input,
.hl-address-drawer select,
.hl-address-drawer textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 10px;
    outline: 0;
    font: inherit;
    font-weight: 700;
}

.hl-address-drawer textarea {
    padding-top: 12px;
    resize: vertical;
}

.hl-address-drawer input:focus,
.hl-address-drawer select:focus,
.hl-address-drawer textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--hl-primary);
}

.hl-address-drawer small {
    min-height: 14px;
    color: var(--hl-danger);
    font-size: 12px;
}

.hl-address-check {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px !important;
}

.hl-address-check input {
    width: 18px;
    min-height: 18px;
}

.hl-address-drawer form > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-family: Manrope, Inter, sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.hl-orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 4px 0 16px;
}

.hl-orders-head > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hl-orders-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
}

.hl-orders-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--hl-muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
}

.hl-orders-tabs {
    position: sticky;
    top: 66px;
    z-index: 24;
    display: flex;
    gap: 8px;
    margin: 0 -16px 18px;
    padding: 12px 16px;
    overflow-x: auto;
    background: rgba(247, 250, 245, 0.86);
    border-bottom: 1px solid rgba(190, 201, 190, 0.2);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
}

.hl-orders-tabs::-webkit-scrollbar {
    display: none;
}

.hl-orders-tabs a {
    flex: 0 0 auto;
    padding: 8px 18px;
    color: var(--hl-muted);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hl-orders-tabs a.is-active {
    color: #4f6a5c;
    background: var(--hl-secondary-soft);
}

.hl-orders-list {
    display: grid;
    gap: 16px;
    padding-bottom: 12px;
}

.hl-order-history-card {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.56);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 82, 45, 0.03);
    transition: transform 0.15s ease, background 0.15s ease;
}

.hl-order-history-card:active {
    transform: scale(0.985);
}

.hl-order-history-card.is-muted {
    opacity: 0.82;
}

.hl-order-history-main {
    display: block;
    color: inherit;
    text-decoration: none;
}

.hl-order-history-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hl-order-history-top > div {
    display: grid;
    gap: 4px;
}

.hl-order-history-top strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-order-history-top small {
    color: var(--hl-border-strong);
    font-size: 12px;
    font-weight: 700;
}

.hl-order-history-top > span {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-order-history-top .is-complete {
    color: #4f6a5c;
    background: var(--hl-secondary-soft);
}

.hl-order-history-top .is-shipping {
    color: #00522d;
    background: #9cf6ba;
}

.hl-order-history-top .is-processing,
.hl-order-history-top .is-pending {
    color: #00210f;
    background: #e0e3de;
}

.hl-order-history-top .is-canceled {
    color: #7c2b33;
    background: #ffdada;
}

.hl-order-history-product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.hl-order-history-product > div {
    display: grid;
    place-items: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    overflow: hidden;
    color: var(--hl-primary);
    background: var(--hl-surface-soft);
    border-radius: 8px;
}

.hl-order-history-product > div.is-grayscale {
    filter: grayscale(1);
}

.hl-order-history-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl-order-history-product > span {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.hl-order-history-product b {
    overflow: hidden;
    color: var(--hl-text);
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-order-history-product small {
    color: var(--hl-muted);
    font-size: 12px;
}

.hl-order-history-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(190, 201, 190, 0.24);
}

.hl-order-history-bottom > div {
    display: grid;
    gap: 4px;
}

.hl-order-history-bottom small {
    color: var(--hl-border-strong);
    font-size: 12px;
    font-weight: 700;
}

.hl-order-history-bottom strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-order-history-bottom a {
    flex: 0 0 auto;
    padding: 10px 22px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 82, 45, 0.1);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.hl-order-history-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hl-order-history-actions a:first-child {
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    box-shadow: none;
}

.hl-orders-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 34px 20px;
    color: var(--hl-muted);
    background: #fff;
    border-radius: 12px;
}

.hl-orders-empty .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 44px;
}

.hl-orders-empty strong {
    color: var(--hl-text);
}

.hl-orders-empty a {
    color: var(--hl-primary);
    font-weight: 900;
    text-decoration: none;
}

.hl-order-detail-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hl-order-detail-head > div {
    min-width: 0;
    flex: 1;
}

.hl-order-detail-head h1 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.18;
}

.hl-order-detail-head p {
    margin: 5px 0 0;
    color: var(--hl-muted);
    font-size: 13px;
    font-weight: 700;
}

.hl-order-detail-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--hl-primary);
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 82, 45, 0.08);
}

.hl-order-status-card,
.hl-order-info-card,
.hl-order-detail-items,
.hl-order-detail-summary {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(0, 82, 45, 0.05);
}

.hl-order-status-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.hl-order-status-card::after {
    content: "";
    position: absolute;
    top: -58px;
    right: -58px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(156, 246, 186, 0.32);
    filter: blur(22px);
}

.hl-order-status-card > div {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hl-order-status-card > div > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hl-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-order-status-card i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hl-primary);
}

.hl-order-status-card h2 {
    margin: 8px 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(22px, 5vw, 28px);
    line-height: 1.16;
}

.hl-order-status-card p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.5;
}

.hl-order-status-card > .material-symbols-outlined {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #2f5f45;
    background: var(--hl-primary-soft);
    font-size: 28px;
}

.hl-order-status-card.is-canceled > div > span,
.hl-order-status-card.is-canceled h2 {
    color: var(--hl-danger);
}

.hl-order-status-card.is-canceled i,
.hl-order-status-card.is-canceled > .material-symbols-outlined {
    color: var(--hl-danger);
    background: #fef3f2;
}

.hl-order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.hl-order-info-card {
    padding: 20px;
}

.hl-order-info-card > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--hl-primary);
}

.hl-order-info-card h3 {
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 16px;
}

.hl-order-info-card > strong {
    display: block;
    margin-bottom: 8px;
}

.hl-order-info-card p {
    margin: 0 0 6px;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.5;
}

.hl-order-payment-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(176, 205, 188, 0.6);
    border-radius: 12px;
    background: rgba(203, 234, 216, 0.36);
}

.hl-order-payment-chip > .material-symbols-outlined {
    color: var(--hl-primary);
}

.hl-order-payment-chip small {
    display: block;
    margin-top: 3px;
    color: var(--hl-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.hl-order-detail-items {
    overflow: hidden;
    margin-bottom: 20px;
}

.hl-order-detail-items header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--hl-border);
}

.hl-order-detail-items h3,
.hl-order-detail-summary h3 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 17px;
}

.hl-order-detail-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(223, 231, 220, 0.72);
}

.hl-order-detail-item:last-child {
    border-bottom: 0;
}

.hl-order-detail-item > div {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 12px;
    color: var(--hl-primary);
    background: var(--hl-surface-soft);
}

.hl-order-detail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl-order-detail-item > span {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.hl-order-detail-item > span > strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-order-detail-item small {
    color: var(--hl-muted);
    font-size: 12px;
}

.hl-order-detail-item em {
    color: var(--hl-muted);
    font-size: 13px;
    font-style: normal;
}

.hl-order-detail-item em b {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 8px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
}

.hl-order-detail-item > strong {
    font-family: Manrope, Inter, sans-serif;
}

.hl-order-detail-summary {
    display: grid;
    gap: 12px;
    padding: 20px;
    margin-bottom: 18px;
}

.hl-order-detail-summary p,
.hl-order-detail-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
}

.hl-order-detail-summary p {
    color: var(--hl-muted);
    font-size: 14px;
}

.hl-order-detail-summary .is-discount {
    color: var(--hl-danger);
}

.hl-order-detail-summary div {
    padding-top: 14px;
    border-top: 1px solid var(--hl-border);
}

.hl-order-detail-summary div span {
    display: grid;
    gap: 3px;
}

.hl-order-detail-summary div small {
    color: var(--hl-muted);
    font-size: 12px;
    font-weight: 500;
}

.hl-order-detail-summary div > strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 25px;
}

.hl-order-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.hl-order-detail-actions a,
.hl-order-detail-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: var(--hl-primary-soft);
    color: var(--hl-primary);
    font-weight: 900;
}

.hl-order-detail-actions a:last-child,
.hl-order-detail-actions button:last-child,
.hl-order-detail-actions .hl-order-reorder-button {
    color: #fff;
    background: var(--hl-primary);
    box-shadow: 0 12px 28px rgba(0, 82, 45, 0.14);
}

.hl-order-detail-actions .hl-order-reorder-button {
    width: 100%;
    min-height: 56px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 16px;
}

.hl-order-detail-actions .hl-order-reorder-button .material-symbols-outlined {
    font-size: 24px;
    font-weight: 700;
}

.hl-order-detail-actions button:disabled {
    cursor: default;
    opacity: 0.75;
}

.hl-voucher-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.hl-voucher-head h1 {
    flex: 1;
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.hl-voucher-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--hl-primary);
    background: transparent;
}

.hl-voucher-tools {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.hl-voucher-tools label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--hl-muted);
    background: var(--hl-surface-strong);
}

.hl-voucher-tools input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--hl-text);
}

.hl-voucher-tools nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.hl-voucher-tools nav::-webkit-scrollbar {
    display: none;
}

.hl-voucher-tools button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #4f6a5c;
    background: var(--hl-primary-soft);
    font-size: 14px;
    font-weight: 800;
}

.hl-voucher-tools button.is-active {
    color: #fff;
    background: var(--hl-primary);
}

.hl-voucher-section {
    margin-bottom: 34px;
}

.hl-voucher-section > header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.hl-voucher-section h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.15;
}

.hl-voucher-section p {
    margin: 4px 0 0;
    color: var(--hl-muted);
    font-size: 14px;
}

.hl-voucher-section > header strong {
    flex: 0 0 auto;
    color: #7a857e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.hl-voucher-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-left: 4px solid var(--hl-primary);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 82, 45, 0.05);
}

.hl-voucher-thumb {
    position: relative;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 10px;
    color: var(--hl-primary);
    background:
        linear-gradient(rgba(0, 82, 45, 0.08), rgba(0, 82, 45, 0.08)),
        var(--hl-surface-soft);
}

.hl-voucher-thumb .material-symbols-outlined {
    font-size: 34px;
    font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.hl-voucher-content {
    min-width: 0;
}

.hl-voucher-content h3 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.15;
}

.hl-voucher-content p {
    margin: 7px 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hl-voucher-content small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--hl-danger);
    font-size: 12px;
    font-weight: 800;
}

.hl-voucher-content small .material-symbols-outlined {
    font-size: 16px;
}

.hl-voucher-content code {
    display: inline-flex;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 7px;
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
}

.hl-voucher-primary,
.hl-voucher-system-card button,
.hl-voucher-system-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--hl-primary);
    box-shadow: 0 8px 18px rgba(0, 82, 45, 0.12);
    font-weight: 900;
    text-decoration: none;
}

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

.hl-voucher-system-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: var(--hl-surface-soft);
}

.hl-voucher-system-card > div {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    color: var(--hl-primary);
    background: #fff;
}

.hl-voucher-system-card > div .material-symbols-outlined {
    font-size: 31px;
}

.hl-voucher-system-card h3 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

.hl-voucher-system-card p {
    margin: 5px 0 10px;
    color: var(--hl-muted);
    font-size: 12px;
    line-height: 1.45;
}

.hl-voucher-system-card small {
    color: #7a857e;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-voucher-system-card button,
.hl-voucher-system-card a {
    min-height: 32px;
    padding: 0 13px;
    color: var(--hl-primary);
    background: #fff;
    box-shadow: none;
    font-size: 12px;
}

.hl-voucher-system-card button:disabled {
    color: var(--hl-muted);
    cursor: default;
    opacity: 0.8;
}

.hl-voucher-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 26px 18px;
    border-radius: 12px;
    color: var(--hl-muted);
    background: #fff;
    text-align: center;
}

.hl-voucher-empty .material-symbols-outlined {
    color: var(--hl-primary);
    font-size: 42px;
}

.hl-voucher-empty strong {
    color: var(--hl-text);
}

.hl-checking-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 4px 0 22px;
}

.hl-checking-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.hl-checking-order-card,
.hl-checking-status-main,
.hl-checking-info-card,
.hl-checking-timeline,
.hl-checking-driver {
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 82, 45, 0.04);
}

.hl-checking-order-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 18px;
    padding: 22px;
}

.hl-checking-order-card p,
.hl-checking-info-card p {
    margin: 0 0 6px;
    color: var(--hl-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-checking-order-card h2 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.hl-checking-order-card > span {
    align-self: start;
    padding: 6px 12px;
    color: #4f6a5c;
    background: var(--hl-primary-soft);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.hl-checking-order-card small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    grid-column: 1 / -1;
    color: var(--hl-muted);
    font-size: 13px;
}

.hl-checking-order-card .material-symbols-outlined {
    font-size: 16px;
}

.hl-checking-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.hl-checking-status-main {
    display: grid;
    grid-column: 1 / -1;
    justify-items: center;
    gap: 12px;
    padding: 34px 24px;
    text-align: center;
}

.hl-checking-status-main > div {
    position: relative;
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    color: var(--hl-primary);
    background: #9cf6ba;
    border-radius: 999px;
}

.hl-checking-status-main > div::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 4px solid rgba(0, 82, 45, 0.1);
    border-radius: inherit;
    animation: hl-checking-pulse 1.8s ease-out infinite;
}

.hl-checking-status-main .material-symbols-outlined {
    font-size: 64px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.hl-checking-status-main h3 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 30px;
    font-weight: 900;
}

.hl-checking-status-main p {
    max-width: 280px;
    margin: 0;
    color: var(--hl-muted);
    line-height: 1.55;
}

.hl-checking-status-main.is-canceled > div {
    color: #7c2b33;
    background: #ffdada;
}

.hl-checking-status-main.is-canceled h3 {
    color: #7c2b33;
}

.hl-checking-info-card {
    padding: 18px;
}

.hl-checking-info-card strong {
    display: block;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

.hl-checking-timeline {
    margin-bottom: 18px;
    padding: 26px 22px;
}

.hl-checking-timeline h4 {
    margin: 0 0 24px;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.hl-checking-step {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding-bottom: 30px;
}

.hl-checking-step:last-of-type {
    padding-bottom: 0;
}

.hl-checking-step i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 2px;
    background: rgba(190, 201, 190, 0.55);
}

.hl-checking-step:last-of-type i {
    display: none;
}

.hl-checking-step > .material-symbols-outlined {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--hl-muted);
    background: var(--hl-surface-strong);
    border-radius: 999px;
    font-size: 17px;
}

.hl-checking-step.is-done i {
    background: var(--hl-primary);
}

.hl-checking-step.is-done > .material-symbols-outlined {
    color: #fff;
    background: var(--hl-primary);
}

.hl-checking-step.is-active > .material-symbols-outlined {
    box-shadow: 0 0 0 6px rgba(0, 82, 45, 0.1);
}

.hl-checking-step h5 {
    margin: 0;
    color: var(--hl-muted);
    font-family: Manrope, Inter, sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.hl-checking-step.is-done h5 {
    color: var(--hl-text);
}

.hl-checking-step.is-active h5 {
    color: var(--hl-primary);
    font-size: 22px;
}

.hl-checking-step p {
    margin: 5px 0 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.5;
}

.hl-checking-step small {
    display: inline-block;
    margin-top: 8px;
    color: var(--hl-primary);
    font-size: 12px;
    font-weight: 900;
}

.hl-checking-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding: 14px;
    background: var(--hl-surface-soft);
    border-radius: 10px;
}

.hl-checking-code span {
    color: var(--hl-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hl-checking-code strong {
    color: var(--hl-primary);
}

.hl-checking-driver {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px;
}

.hl-checking-driver > div {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: var(--hl-primary);
    background: var(--hl-primary-soft);
    border-radius: 999px;
}

.hl-checking-driver > span {
    display: grid;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.hl-checking-driver strong {
    color: var(--hl-text);
    font-size: 14px;
}

.hl-checking-driver small {
    overflow: hidden;
    color: var(--hl-muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-checking-driver a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #00210f;
    background: #9cf6ba;
    border-radius: 999px;
}

.hl-checking-support {
    display: grid;
    justify-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 24px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.15);
    text-align: center;
}

.hl-checking-support .material-symbols-outlined {
    font-size: 38px;
}

.hl-checking-support strong {
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.hl-checking-support small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

@keyframes hl-checking-pulse {
    from {
        transform: scale(1);
        opacity: 0.85;
    }

    to {
        transform: scale(1.18);
        opacity: 0;
    }
}

.hl-support-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 4px 0 28px;
}

.hl-support-head > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hl-support-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
}

.hl-support-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--hl-muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
}

.hl-support-hero {
    margin-bottom: 26px;
}

.hl-support-hero h2 {
    margin: 0 0 10px;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 32px;
    line-height: 1.1;
}

.hl-support-hero p {
    margin: 0;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.6;
}

.hl-support-search {
    position: relative;
    margin-bottom: 30px;
}

.hl-support-search .material-symbols-outlined {
    position: absolute;
    top: 50%;
    left: 16px;
    color: var(--hl-border-strong);
    transform: translateY(-50%);
}

.hl-support-search input {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 48px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 12px;
    outline: 0;
    font: inherit;
    box-shadow: 0 6px 16px rgba(0, 82, 45, 0.04);
}

.hl-support-search input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--hl-primary);
}

.hl-support-quick,
.hl-support-faq {
    margin-bottom: 34px;
}

.hl-support-quick h3,
.hl-support-section-title h3 {
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
}

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

.hl-support-chat {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    color: #fff;
    background: #006d3e;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 82, 45, 0.08);
    text-decoration: none;
}

.hl-support-chat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.hl-support-chat > span:nth-child(2) {
    display: grid;
    gap: 4px;
    flex: 1;
}

.hl-support-chat strong,
.hl-support-contact-card strong {
    font-family: Manrope, Inter, sans-serif;
    font-weight: 900;
}

.hl-support-chat small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
}

.hl-support-contact-card {
    display: grid;
    gap: 10px;
    padding: 20px;
    color: var(--hl-text);
    background: #fff;
    border: 1px solid rgba(224, 227, 222, 0.58);
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 82, 45, 0.04);
}

.hl-support-contact-card > .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #4f6a5c;
    background: var(--hl-secondary-soft);
    border-radius: 12px;
}

.hl-support-contact-card.is-mail > .material-symbols-outlined {
    color: #7c2b33;
    background: #ffdada;
}

.hl-support-contact-card small {
    overflow: hidden;
    color: var(--hl-muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-support-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.hl-support-section-title button {
    color: var(--hl-primary);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
}

.hl-support-faq-list {
    display: grid;
    gap: 12px;
}

.hl-support-faq-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px;
    text-align: left;
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
}

.hl-support-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: var(--hl-primary);
    background: #fff;
    border-radius: 999px;
}

.hl-support-faq-item > span:nth-child(2) {
    display: grid;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.hl-support-faq-item strong {
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 14px;
}

.hl-support-faq-item small {
    color: var(--hl-muted);
    font-size: 12px;
}

.hl-support-faq-item > .material-symbols-outlined:last-child {
    color: var(--hl-border-strong);
    font-size: 17px;
}

.hl-support-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 190px;
    margin-bottom: 18px;
    overflow: hidden;
    padding: 24px;
    background:
        linear-gradient(to top, rgba(0, 33, 15, 0.62), rgba(0, 33, 15, 0.08)),
        radial-gradient(circle at 70% 18%, rgba(156, 246, 186, 0.5), transparent 30%),
        linear-gradient(135deg, #e6e9e4, #80d99f);
    border-radius: 24px;
}

.hl-support-visual > div {
    position: absolute;
    top: 22px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: var(--hl-primary);
    background: rgba(255, 255, 255, 0.74);
    border-radius: 18px;
}

.hl-support-visual .material-symbols-outlined {
    font-size: 38px;
}

.hl-support-visual p {
    position: relative;
    margin: 0;
    color: #fff;
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.hl-quick-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 -2px 14px;
}

.hl-quick-order-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hl-quick-order-head h1 {
    margin: 0;
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 19px;
}

.hl-quick-order-head button,
.hl-quick-order-head a[aria-label="Lịch sử"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(0, 82, 45, 0.72);
    background: transparent;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
}

.hl-quick-order-tools {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hl-quick-search {
    position: relative;
    flex: 1;
}

.hl-quick-search .material-symbols-outlined {
    position: absolute;
    top: 50%;
    left: 12px;
    color: var(--hl-border-strong);
    font-size: 20px;
    transform: translateY(-50%);
}

.hl-quick-search input {
    width: 100%;
    height: 40px;
    padding: 0 14px 0 40px;
    color: var(--hl-text);
    background: var(--hl-surface-soft);
    border: 0;
    border-radius: 8px;
    outline: 0;
    font-size: 14px;
}

.hl-quick-search input:focus {
    background: #fff;
    box-shadow: 0 0 0 1px var(--hl-primary);
}

.hl-quick-order-tools > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 8px;
}

.hl-quick-discount {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 10px 12px;
    background: rgba(203, 234, 216, 0.55);
    border: 1px solid rgba(176, 205, 188, 0.24);
    border-radius: 8px;
}

.hl-quick-discount > div {
    flex: 1;
}

.hl-quick-discount p {
    display: flex;
    justify-content: space-between;
    margin: 0 0 5px;
    color: #324c3f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-quick-discount-progress {
    height: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.44);
    border-radius: 999px;
}

.hl-quick-discount-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--hl-primary);
    border-radius: inherit;
}

.hl-quick-discount-targets {
    display: grid;
    gap: 3px;
}

.hl-quick-discount small {
    display: block;
    margin-top: 5px;
    color: #324c3f;
    font-size: 11px;
}

.hl-quick-discount small span {
    font-weight: 700;
}

.hl-quick-discount > .material-symbols-outlined {
    color: var(--hl-primary);
}

.hl-quick-chips {
    display: flex;
    gap: 6px;
    margin: 0 -16px 14px;
    padding: 4px 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hl-quick-chips::-webkit-scrollbar {
    display: none;
}

.hl-quick-chips button {
    flex: 0 0 auto;
    padding: 7px 16px;
    color: var(--hl-muted);
    background: var(--hl-surface-soft);
    border: 1px solid rgba(190, 201, 190, 0.34);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hl-quick-chips button.is-active {
    color: #fff;
    background: var(--hl-primary);
    border-color: var(--hl-primary);
}

.hl-quick-section {
    margin-top: 14px;
}

.hl-quick-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 9px;
}

.hl-quick-section-head h2 {
    margin: 0;
    color: var(--hl-border-strong);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hl-quick-section-head a {
    color: var(--hl-primary);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.hl-quick-frequent {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 128px;
    gap: 8px;
    margin: 0 -16px;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hl-quick-frequent::-webkit-scrollbar {
    display: none;
}

.hl-quick-frequent button {
    display: grid;
    gap: 5px;
    padding: 8px;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(190, 201, 190, 0.34);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 82, 45, 0.04);
}

.hl-quick-frequent img,
.hl-quick-frequent button > .material-symbols-outlined {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--hl-surface-soft);
    border-radius: 8px;
}

.hl-quick-frequent button > .material-symbols-outlined {
    display: grid;
    place-items: center;
    color: var(--hl-primary);
    font-size: 34px;
}

.hl-quick-frequent strong {
    overflow: hidden;
    color: var(--hl-text);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-quick-frequent small {
    color: var(--hl-primary);
    font-size: 11px;
    font-weight: 900;
}

.hl-quick-frequent s {
    margin-top: -4px;
    color: var(--hl-border-strong);
    font-size: 10px;
}

.hl-quick-frequent em {
    padding: 6px 8px;
    color: var(--hl-primary);
    background: rgba(0, 109, 62, 0.1);
    border-radius: 6px;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    text-align: center;
}

.hl-quick-product-list {
    margin-top: 22px;
}

.hl-quick-rows {
    margin: 0 -16px;
    background: #fff;
    border-top: 1px solid rgba(190, 201, 190, 0.34);
    border-bottom: 1px solid rgba(190, 201, 190, 0.34);
}

.hl-quick-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(190, 201, 190, 0.28);
}

.hl-quick-row[hidden] {
    display: none;
}

.hl-quick-row.is-selected {
    background: rgba(0, 82, 45, 0.05);
}

.hl-quick-row-image {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    overflow: hidden;
    color: var(--hl-primary);
    background: var(--hl-surface-soft);
    border-radius: 8px;
}

.hl-quick-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl-quick-row-image [data-quick-selected-check] {
    position: absolute;
    top: 3px;
    right: 3px;
    display: none;
    place-items: center;
    width: 16px;
    height: 16px;
    color: #fff;
    background: var(--hl-primary);
    border-radius: 999px;
    font-size: 12px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.hl-quick-row.is-selected [data-quick-selected-check] {
    display: grid;
}

.hl-quick-row-image b {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px 0;
    color: #fff;
    background: rgba(186, 26, 26, 0.9);
    font-size: 8px;
    text-align: center;
    text-transform: uppercase;
}

.hl-quick-row-info {
    flex: 1;
    min-width: 0;
}

.hl-quick-row-info h3 {
    overflow: hidden;
    margin: 0;
    color: var(--hl-text);
    font-family: Manrope, Inter, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hl-quick-row-info p {
    margin: 4px 0;
    overflow: hidden;
    color: var(--hl-border-strong);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.hl-quick-row-info strong {
    color: var(--hl-primary);
    font-size: 14px;
}

.hl-quick-row-info s {
    margin-left: 6px;
    color: var(--hl-border-strong);
    font-size: 11px;
}

.hl-quick-row-info small {
    color: var(--hl-border-strong);
    font-size: 10px;
}

.hl-quick-row-qty {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hl-surface-soft);
    border: 1px solid rgba(190, 201, 190, 0.4);
    border-radius: 8px;
}

.hl-quick-row-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--hl-primary);
    background: transparent;
    border: 0;
}

.hl-quick-row-qty input {
    width: 36px;
    height: 38px;
    padding: 0;
    color: var(--hl-text);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.hl-quick-row-qty input::-webkit-outer-spin-button,
.hl-quick-row-qty input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.hl-quick-insight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 10px;
    padding: 12px;
    background: rgba(0, 82, 45, 0.05);
    border: 1px solid rgba(0, 82, 45, 0.1);
    border-radius: 12px;
}

.hl-quick-insight > .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--hl-primary);
    background: rgba(0, 82, 45, 0.08);
    border-radius: 999px;
}

.hl-quick-insight div {
    flex: 1;
}

.hl-quick-insight h3 {
    margin: 0;
    color: var(--hl-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-quick-insight p {
    margin: 2px 0 0;
    color: #4f6a5c;
    font-size: 10px;
}

.hl-quick-insight strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
}

.hl-quick-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 88;
}

.hl-quick-footer > div:first-child {
    width: 48px;
    height: 4px;
    margin: 0 auto 4px;
    background: rgba(190, 201, 190, 0.62);
    border-radius: 999px;
}

.hl-quick-footer > section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px 10px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(190, 201, 190, 0.34);
    backdrop-filter: blur(14px);
}

.hl-quick-footer > section > div:first-child {
    display: flex;
    gap: 20px;
}

.hl-quick-footer span,
.hl-quick-footer > section > div:last-child {
    display: grid;
    gap: 2px;
}

.hl-quick-footer small {
    color: var(--hl-border-strong);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hl-quick-footer strong {
    color: var(--hl-text);
    font-size: 14px;
}

.hl-quick-footer > section > div:last-child {
    text-align: right;
}

.hl-quick-footer > section > div:last-child strong {
    color: var(--hl-primary);
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
}

.hl-quick-footer > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 32px);
    min-height: 56px;
    margin: 0 16px calc(14px + env(safe-area-inset-bottom));
    padding: 0 22px;
    color: #fff;
    background: var(--hl-primary);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 82, 45, 0.2);
    font-size: 15px;
    font-weight: 900;
}

.hl-quick-footer > button > span:first-child {
    display: flex;
    align-items: center;
    grid-auto-flow: column;
    gap: 8px;
}

@media (max-width: 860px) {
    .hl-dashboard-hero,
    .hl-account-hero,
    .hl-quick-grid {
        grid-template-columns: 1fr;
    }

    .hl-dashboard-hero,
    .hl-account-hero {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 560px) {
    .hl-main {
        width: calc(100% - 32px);
    }

    .hl-login-page {
        padding-top: 51px;
    }

    .hl-login-panel {
        border-radius: 9px;
    }

    .hl-login-row {
        align-items: center;
        flex-direction: row;
    }

    .hl-login-footer {
        align-items: center;
        flex-direction: row;
    }

    .hl-order-detail-grid,
    .hl-order-detail-actions,
    .hl-voucher-system-grid {
        grid-template-columns: 1fr;
    }

    .hl-voucher-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .hl-voucher-primary {
        width: 100%;
    }

    .hl-voucher-section > header {
        align-items: flex-start;
    }

    .hl-order-status-card {
        align-items: flex-start;
        padding: 20px;
    }

    .hl-order-status-card > .material-symbols-outlined {
        width: 46px;
        height: 46px;
    }

    .hl-order-detail-item {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: flex-start;
        padding: 16px;
    }

    .hl-order-detail-item > div {
        width: 64px;
        height: 64px;
    }

    .hl-order-detail-item > strong {
        grid-column: 2;
        justify-self: start;
    }

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

    .hl-action-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .hl-action-tile .material-symbols-outlined {
        max-width: 62px;
        font-size: 25px;
    }

    .hl-action-tile strong {
        font-size: 10px;
        max-width: 68px;
    }

    .hl-quick-card {
        min-height: 132px;
        padding: 16px;
    }

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

    .hl-promo-card,
    .hl-order-row {
        align-items: flex-start;
    }

    .hl-order-product-body {
        padding: 16px;
    }

    .hl-order-product-top h2 {
        font-size: 17px;
    }

    .hl-order-product-price strong {
        font-size: 18px;
    }

    .hl-cart-summary-bar {
        right: 12px;
        bottom: 80px;
        left: 12px;
    }

    .hl-coupon-head,
    .hl-coupon-body,
    .hl-coupon-footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hl-coupon-panel {
        max-height: 92dvh;
        border-radius: 24px 24px 0 0;
    }

    .hl-coupon-manual > div {
        gap: 8px;
    }

    .hl-coupon-manual button {
        padding: 0 14px;
    }

    .hl-coupon-card {
        min-height: 116px;
    }

    .hl-coupon-card-media {
        min-width: 88px;
        padding: 12px 8px;
    }

    .hl-coupon-card-content {
        padding: 14px 10px 14px 14px;
    }

    .hl-coupon-check {
        flex-basis: 42px;
        padding-right: 10px;
    }

    .hl-coupon-footer > div {
        font-size: 12px;
    }
}
