:root {
    --blku-blue: #0b4ea2;
    --blku-blue-dark: #071a3b;
    --blku-cyan: #16b8f3;
    --blku-gold: #d4af37;
    --blku-gold-soft: #fff0ad;
    --blku-surface: #f5f8fe;
    --blku-card: #ffffff;
    --blku-text: #10213c;
    --blku-muted: #62718a;
    --blku-border: #dce5f1;
    --blku-success: #087a4c;
    --blku-danger: #b32727;
    --blku-shadow: 0 18px 45px rgba(9, 42, 91, .10);
    --blku-radius: 22px;
}

.blku-shell,
.blku-shell * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.blku-shell {
    margin: 0;
    color: var(--blku-text);
    background: var(--blku-surface);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.blku-shell a {
    color: inherit;
}

body.blku-shell img {
    max-width: 100%;
    height: auto;
}

body.blku-shell button,
body.blku-shell input,
body.blku-shell select,
body.blku-shell textarea {
    font: inherit;
}

body.blku-shell :focus-visible {
    outline: 3px solid var(--blku-cyan);
    outline-offset: 3px;
}

.blku-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.blku-main {
    min-height: 55vh;
}

.blku-skip-link {
    position: fixed;
    inset-inline-start: 12px;
    top: 10px;
    z-index: 99999;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: var(--blku-blue-dark);
    box-shadow: var(--blku-shadow);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.blku-skip-link:focus {
    transform: translateY(0);
}

.blku-preview-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 10px max(18px, calc((100vw - 1180px) / 2));
    background: var(--blku-blue-dark);
    color: #fff;
    font-size: 14px;
}

.blku-preview-bar a {
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.blku-offer-bar {
    background: var(--blku-gold);
    color: var(--blku-blue-dark);
    font-size: 13px;
    font-weight: 650;
}

.blku-offer-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    min-height: 34px;
    text-align: center;
}

.blku-header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--blku-border);
}

.blku-header__main {
    display: grid;
    grid-template-columns: 160px 130px minmax(240px, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 82px;
}

.blku-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--blku-cyan);
}

.blku-logo-image {
    display: block;
    width: 150px;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.blku-logo-word {
    color: var(--blku-cyan);
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: .9;
    letter-spacing: -2px;
}

.blku-logo small {
    margin-top: 4px;
    color: var(--blku-blue);
    font-size: 11px;
    font-weight: 650;
}

.blku-delivery-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 12px;
    border: 1px solid var(--blku-border);
    border-radius: 14px;
    background: #fff;
}

.blku-delivery-label small,
.blku-delivery-label strong {
    display: block;
}

.blku-delivery-label small {
    color: var(--blku-muted);
    font-size: 11px;
}

.blku-delivery-label strong {
    font-size: 14px;
}

.blku-icon svg,
.blku-icon-button svg,
.blku-mobile-nav svg,
.blku-trust-row svg,
.blku-how svg,
.blku-state svg,
.blku-phone-tabs svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blku-search-form {
    display: grid;
    grid-template-columns: 1fr 48px;
    min-width: 0;
    border: 1px solid var(--blku-border);
    border-radius: 999px;
    overflow: hidden;
    background: #f7f9fd;
}

.blku-search-form input {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--blku-text);
}

.blku-search-form button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--blku-blue);
    color: #fff;
    cursor: pointer;
}

.blku-search-form button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

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

.blku-icon-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--blku-border);
    border-radius: 50%;
    background: #fff;
    color: var(--blku-blue-dark);
    text-decoration: none;
}

.blku-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 94px;
    text-decoration: none;
}

.blku-cart-link.is-updated .blku-icon-button {
    animation: blkuPulse .7s ease;
}

@keyframes blkuPulse {
    50% { transform: scale(1.12); background: var(--blku-gold-soft); }
}

.blku-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ef4d4d;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.blku-cart-copy small,
.blku-cart-copy span {
    display: block;
}

.blku-cart-copy small {
    color: var(--blku-muted);
    font-size: 11px;
}

.blku-cart-copy span {
    font-size: 13px;
    font-weight: 800;
}

.blku-header__nav {
    border-top: 1px solid #eef2f7;
}

.blku-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

.blku-primary-nav {
    display: flex;
    gap: 6px;
}

.blku-primary-nav a,
.blku-help-link {
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.blku-primary-nav a.is-active {
    background: #e8f2ff;
    color: var(--blku-blue);
}

.blku-help-link {
    color: var(--blku-blue);
}

.blku-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--blku-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.blku-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 500px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #073b82 0%, #0b4ea2 44%, #1d93dd 100%);
    box-shadow: var(--blku-shadow);
    color: #fff;
}

.blku-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 58px;
}

.blku-hero__copy .blku-eyebrow {
    color: #b9e8ff;
}

.blku-hero h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 5vw, 74px);
    line-height: .95;
    letter-spacing: -.055em;
}

.blku-hero h1 em {
    color: #dcecff;
    font-style: normal;
}

.blku-hero__copy > p {
    max-width: 580px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
}

.blku-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.blku-button,
body.blku-shell .button,
body.blku-shell button.button,
body.blku-shell input.button,
body.blku-shell .woocommerce a.button,
body.blku-shell .woocommerce button.button,
body.blku-shell .woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--blku-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.blku-button--gold {
    background: var(--blku-gold);
    color: var(--blku-blue-dark);
}

.blku-button--ghost {
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
}

.blku-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.blku-trust-row span {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 8px;
    align-items: center;
}

.blku-trust-row svg {
    grid-row: 1 / 3;
    color: #b9e8ff;
}

.blku-trust-row b {
    font-size: 13px;
}

.blku-trust-row small {
    color: rgba(255,255,255,.65);
    font-size: 11px;
}

.blku-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    overflow: hidden;
}

.blku-phone-frame {
    position: relative;
    z-index: 2;
    width: min(330px, 74%);
    padding: 16px;
    border: 10px solid #fff;
    border-radius: 36px;
    background: #f8fbff;
    box-shadow: 0 25px 55px rgba(0,0,0,.25);
    color: var(--blku-text);
    transform: rotate(4deg);
}

.blku-phone-frame__top,
.blku-phone-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blku-phone-frame__top {
    margin-bottom: 12px;
    color: var(--blku-blue);
    font-size: 11px;
}

.blku-phone-frame__top svg,
.blku-phone-tabs svg {
    width: 16px;
    height: 16px;
}

.blku-phone-feature a,
.blku-phone-mini-grid a {
    text-decoration: none;
}

.blku-phone-feature {
    padding: 12px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7,26,59,.09);
}

.blku-phone-feature img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / .78;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
}

.blku-phone-feature span,
.blku-phone-feature strong,
.blku-phone-feature b {
    display: block;
}

.blku-phone-feature span {
    margin-top: 8px;
    color: var(--blku-success);
    font-size: 9px;
    font-weight: 900;
}

.blku-phone-feature strong {
    margin-top: 4px;
    font-size: 13px;
}

.blku-phone-feature b {
    margin-top: 5px;
    color: var(--blku-blue);
    font-size: 13px;
}

.blku-phone-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 9px;
}

.blku-phone-mini-grid a {
    padding: 8px;
    border-radius: 14px;
    background: #fff;
}

.blku-phone-mini-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.blku-phone-mini-grid small {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: var(--blku-text);
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blku-phone-tabs {
    margin-top: 12px;
    padding: 9px 8px 2px;
    color: #7b8aa2;
}

.blku-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}

.blku-hero-orbit--one {
    width: 520px;
    height: 520px;
}

.blku-hero-orbit--two {
    width: 360px;
    height: 360px;
}

.blku-section-head {
    margin-bottom: 20px;
}

.blku-section-head--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.blku-section-head h2,
.blku-how h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

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

.blku-section-head > a {
    flex: 0 0 auto;
    color: var(--blku-blue);
    font-weight: 800;
    text-decoration: none;
}

.blku-category-strip,
.blku-offers,
.blku-product-section,
.blku-how {
    margin-top: 56px;
}

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

.blku-category-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--blku-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7,26,59,.05);
    text-decoration: none;
}

.blku-category-card__image {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 14px;
    background: #edf6ff;
}

.blku-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blku-category-placeholder svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--blku-blue);
}

.blku-category-card strong,
.blku-category-card small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blku-category-card strong {
    font-size: 14px;
    white-space: nowrap;
}

.blku-category-card small {
    margin-top: 3px;
    color: var(--blku-muted);
    font-size: 12px;
}

.blku-category-card b {
    color: var(--blku-blue);
}

.blku-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.blku-offer-card {
    position: relative;
    min-height: 220px;
    padding: 32px;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
}

.blku-offer-card span,
.blku-offer-card strong,
.blku-offer-card h2,
.blku-offer-card p {
    position: relative;
    z-index: 2;
}

.blku-offer-card span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.blku-offer-card h2 {
    max-width: 520px;
    margin: 10px 0 6px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -.04em;
}

.blku-offer-card p {
    max-width: 520px;
    margin: 0 0 24px;
}

.blku-offer-card i {
    position: absolute;
    right: 24px;
    bottom: -40px;
    color: rgba(255,255,255,.08);
    font-size: 180px;
    font-style: normal;
    font-weight: 900;
}

.blku-offer-card--blue {
    background: linear-gradient(135deg, #0b4ea2, #126ecb);
    color: #fff;
}

.blku-offer-card--gold {
    background: linear-gradient(135deg, #fff4bd, #ffe587);
    color: var(--blku-blue-dark);
}

.blku-offer-card--gold i {
    color: rgba(7,26,59,.07);
}

.blku-product-grid.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.blku-product-grid.products::before,
.blku-product-grid.products::after {
    display: none !important;
}

.blku-product-grid.products > li.product,
.blku-product-card.product {
    position: relative;
    display: flex !important;
    flex-direction: column;
    float: none !important;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 12px 12px 14px !important;
    border: 1px solid var(--blku-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(7,26,59,.07);
    list-style: none;
}

.blku-product-grid .woocommerce-LoopProduct-link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    color: var(--blku-text);
    text-decoration: none;
}

.blku-product-grid li.product img,
.blku-product-grid .woocommerce-LoopProduct-link img {
    display: block;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    margin: 0 0 12px !important;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
}

.blku-product-grid li.product .woocommerce-loop-product__title {
    min-height: 2.8em;
    margin: 7px 0 8px !important;
    padding: 0 !important;
    color: var(--blku-text);
    font-size: 15px !important;
    font-weight: 750;
    line-height: 1.4;
}

.blku-product-grid li.product .price {
    display: block;
    margin-top: auto !important;
    color: var(--blku-blue) !important;
    font-size: 16px !important;
    font-weight: 850 !important;
}

.blku-product-grid li.product .price del {
    margin-right: 4px;
    color: var(--blku-muted);
    opacity: .7;
}

.blku-product-grid li.product .star-rating {
    margin: 2px 0 5px;
}

.blku-product-grid li.product .button {
    width: 100%;
    margin-top: 12px !important;
}

.blku-product-grid li.product .added_to_cart {
    display: block;
    margin-top: 8px;
    color: var(--blku-blue);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.blku-product-grid li.product .onsale {
    top: 18px !important;
    left: 18px !important;
    right: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 6px 9px !important;
    border-radius: 999px !important;
    background: var(--blku-gold) !important;
    color: var(--blku-blue-dark) !important;
    font-size: 11px !important;
    line-height: 1 !important;
}

.blku-stock {
    color: var(--blku-success);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.blku-preview-diagnostic {
    margin: 18px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #e9f7ff;
    color: var(--blku-blue-dark);
    font-size: 12px;
    font-weight: 700;
}

.blku-how {
    margin-bottom: 64px;
}

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

.blku-how article {
    position: relative;
    min-height: 190px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--blku-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(7,26,59,.06);
}

.blku-how article > span {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #e5edf7;
    font-size: 46px;
    font-weight: 900;
}

.blku-how article svg {
    color: var(--blku-blue);
}

.blku-how h3 {
    margin: 22px 0 8px;
    font-size: 18px;
}

.blku-how p {
    margin: 0;
    color: var(--blku-muted);
}

.blku-archive-hero,
.blku-page-hero {
    padding: 64px 0 54px;
    background: linear-gradient(110deg, #e9f4ff 0%, #f7faff 55%, #fff8d6 100%);
}

.blku-archive-hero h1,
.blku-page-hero h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .95;
    letter-spacing: -.06em;
}

.blku-archive-hero p,
.blku-page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--blku-muted);
    font-size: 17px;
}

.blku-archive-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.blku-archive-chips a {
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid #cbd9ea;
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.blku-archive-chips a.is-active {
    border-color: var(--blku-blue);
    background: var(--blku-blue);
    color: #fff;
}

.blku-archive-content {
    padding: 42px 0 64px;
}

.blku-archive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 52px;
    margin-bottom: 20px;
}

.blku-archive-toolbar .woocommerce-result-count {
    margin: 0 !important;
    color: var(--blku-muted);
    font-weight: 750;
}

.blku-archive-toolbar .woocommerce-ordering {
    margin: 0 !important;
}

.blku-archive-toolbar select {
    min-width: 220px;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--blku-border);
    border-radius: 12px;
    background: #fff;
}

.blku-pagination {
    margin-top: 28px;
}

.blku-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 !important;
    border: 0 !important;
    list-style: none;
}

.blku-pagination .page-numbers li {
    border: 0 !important;
}

.blku-pagination a.page-numbers,
.blku-pagination span.page-numbers {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--blku-border);
    border-radius: 12px;
    background: #fff;
    color: var(--blku-text);
    text-decoration: none;
}

.blku-pagination span.current {
    border-color: var(--blku-blue);
    background: var(--blku-blue);
    color: #fff;
}

.blku-native-product {
    padding: 44px 0 70px;
}

.blku-native-product .product {
    color: var(--blku-text);
}

.blku-native-product .woocommerce-product-gallery,
.blku-native-product .summary {
    margin-bottom: 30px;
}

.blku-native-product .woocommerce-product-gallery__wrapper,
.blku-native-product .summary,
.blku-native-product .woocommerce-tabs,
.blku-native-product .related,
.blku-native-product .upsells {
    border-radius: 22px;
    background: #fff;
}

.blku-native-product .woocommerce-product-gallery__wrapper,
.blku-native-product .summary,
.blku-native-product .woocommerce-tabs {
    padding: 22px;
}

.blku-native-product div.product .product_title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.blku-native-product div.product p.price,
.blku-native-product div.product span.price {
    color: var(--blku-blue);
    font-size: 24px;
    font-weight: 850;
}

.blku-native-product .quantity .qty {
    min-height: 44px;
    border: 1px solid var(--blku-border);
    border-radius: 10px;
}

.blku-shortcode,
.blku-generic-content {
    padding: 38px 0 70px;
}

.blku-shortcode > .woocommerce,
.blku-generic-content {
    color: var(--blku-text);
}

.blku-shortcode .woocommerce-notices-wrapper,
.blku-native-product .woocommerce-notices-wrapper {
    margin-bottom: 18px;
}

.blku-shortcode .woocommerce-message,
.blku-shortcode .woocommerce-info,
.blku-shortcode .woocommerce-error,
.blku-native-product .woocommerce-message,
.blku-native-product .woocommerce-info,
.blku-native-product .woocommerce-error {
    border: 1px solid var(--blku-border);
    border-top: 4px solid var(--blku-blue);
    border-radius: 14px;
    background: #fff;
}

.blku-shortcode table.shop_table,
.blku-shortcode .woocommerce-cart-form,
.blku-shortcode .cart_totals,
.blku-shortcode .woocommerce-checkout-review-order,
.blku-shortcode .woocommerce-billing-fields,
.blku-shortcode .woocommerce-shipping-fields,
.blku-shortcode .woocommerce-additional-fields,
.blku-shortcode .woocommerce-form-login,
.blku-shortcode .woocommerce-MyAccount-navigation,
.blku-shortcode .woocommerce-MyAccount-content {
    border-color: var(--blku-border) !important;
    border-radius: 18px;
    background: #fff;
}

.blku-shortcode .woocommerce-cart-form {
    overflow-x: auto;
}

.blku-shortcode table.shop_table {
    overflow: visible;
}

.blku-shortcode table.shop_table th,
.blku-shortcode table.shop_table td {
    padding: 14px !important;
}

.blku-shortcode input.input-text,
.blku-shortcode input[type="text"],
.blku-shortcode input[type="email"],
.blku-shortcode input[type="tel"],
.blku-shortcode input[type="password"],
.blku-shortcode select,
.blku-shortcode textarea {
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--blku-border);
    border-radius: 10px;
    background: #fff;
}

.blku-shortcode textarea {
    min-height: 110px;
}

.blku-shortcode .coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.blku-shortcode .coupon .input-text {
    min-width: min(280px, 100%);
}

.blku-shortcode .cart-collaterals {
    margin-top: 24px;
}

.blku-shortcode .cart_totals {
    float: none !important;
    width: 100% !important;
    padding: 22px;
}

.blku-shortcode #order_review {
    padding: 20px;
    border: 1px solid var(--blku-border);
    border-radius: 18px;
    background: #fff;
}

.blku-shortcode .woocommerce-MyAccount-navigation {
    padding: 14px;
}

.blku-shortcode .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blku-shortcode .woocommerce-MyAccount-navigation a {
    display: block;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
}

.blku-shortcode .woocommerce-MyAccount-navigation .is-active a {
    background: #e8f2ff;
    color: var(--blku-blue);
}

.blku-state {
    display: grid;
    place-items: center;
    max-width: 760px;
    margin: 36px auto;
    padding: 44px 30px;
    border: 1px solid var(--blku-border);
    border-radius: 22px;
    background: #fff;
    text-align: center;
}

.blku-state > span {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e9f5ff;
    color: var(--blku-blue);
}

.blku-state h2 {
    margin: 18px 0 8px;
}

.blku-state p {
    max-width: 580px;
    margin: 0 0 20px;
    color: var(--blku-muted);
}

.blku-state--error {
    border-color: #f0bcbc;
}

.blku-footer {
    padding: 54px 0 24px;
    background: var(--blku-blue-dark);
    color: #fff;
}

.blku-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

.blku-logo--footer .blku-logo-word {
    color: var(--blku-cyan);
}

.blku-logo--footer small {
    color: #b9d4f4;
}

.blku-footer p,
.blku-footer a {
    color: #c0cce0;
    font-size: 14px;
}

.blku-footer p {
    max-width: 360px;
}

.blku-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blku-footer__grid > div:not(:first-child) a {
    display: block;
    min-height: 34px;
    text-decoration: none;
}

.blku-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #96a7c1;
    font-size: 12px;
}

.blku-mobile-nav {
    display: none;
}

body.rtl .blku-logo-image {
    object-position: right center;
}

@media (max-width: 1050px) {
    .blku-header__main {
        grid-template-columns: 145px 115px minmax(220px, 1fr) auto;
        gap: 12px;
    }
    .blku-category-strip__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .blku-product-grid.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.blku-shell {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }
    .blku-container {
        width: min(100% - 28px, 720px);
    }
    .blku-preview-bar {
        grid-template-columns: 1fr auto;
        gap: 8px 12px;
        padding: 9px 14px;
    }
    .blku-preview-bar span {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 12px;
    }
    .blku-offer-bar__inner {
        display: grid;
        gap: 0;
        padding: 6px 0;
        font-size: 12px;
        line-height: 1.35;
    }
    .blku-header__main {
        grid-template-columns: minmax(116px, .7fr) minmax(0, 1.6fr) auto;
        min-height: auto;
        padding: 12px 0 10px;
    }
    .blku-logo {
        grid-column: 1;
    }
    .blku-logo-image {
        width: 125px;
    }
    .blku-logo-word {
        font-size: 27px;
    }
    .blku-delivery-label {
        display: none;
    }
    .blku-search-form {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    .blku-header-actions {
        grid-column: 3;
        grid-row: 1;
    }
    .blku-cart-copy {
        display: none;
    }
    .blku-cart-link {
        min-width: 46px;
    }
    .blku-header__nav {
        display: none;
    }
    .blku-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 18px;
    }
    .blku-hero__copy {
        padding: 36px 28px 26px;
    }
    .blku-hero h1 {
        font-size: clamp(42px, 11vw, 62px);
    }
    .blku-hero__copy > p {
        font-size: 16px;
    }
    .blku-trust-row {
        margin-top: 24px;
        padding-top: 18px;
    }
    .blku-hero__visual {
        min-height: 350px;
        padding: 0 0 30px;
    }
    .blku-phone-frame {
        width: min(290px, 78%);
        transform: rotate(2deg);
    }
    .blku-section-head--split {
        align-items: flex-start;
    }
    .blku-offers {
        grid-template-columns: 1fr;
    }
    .blku-product-grid.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .blku-how__grid {
        grid-template-columns: 1fr;
    }
    .blku-archive-hero,
    .blku-page-hero {
        padding: 42px 0 36px;
    }
    .blku-archive-hero h1,
    .blku-page-hero h1 {
        font-size: clamp(44px, 12vw, 68px);
    }
    .blku-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .blku-mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: calc(64px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid var(--blku-border);
        background: rgba(255,255,255,.98);
        box-shadow: 0 -10px 30px rgba(7,26,59,.10);
    }
    .blku-mobile-nav a,
    .blku-mobile-nav button {
        position: relative;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        min-width: 0;
        min-height: 64px;
        color: #5d6b81;
        border: 0;
        background: transparent;
        text-decoration: none;
    }
    .blku-mobile-nav a.is-active,
    .blku-mobile-nav button.is-active {
        color: var(--blku-blue);
    }
    .blku-mobile-nav svg {
        width: 23px;
        height: 23px;
    }
    .blku-mobile-nav small {
        display: block;
        font-size: 12px;
        font-weight: 700;
    }
    .blku-mobile-cart-icon {
        position: relative;
    }
    .blku-mobile-cart-icon .blku-cart-count {
        top: -9px;
        right: -12px;
    }
}

@media (max-width: 560px) {
    .blku-container {
        width: calc(100% - 22px);
    }
    .blku-header__main {
        grid-template-columns: minmax(108px, 1fr) auto;
    }
    .blku-header-actions {
        grid-column: 2;
    }
    .blku-logo-image {
        width: 112px;
    }
    .blku-icon-button {
        width: 42px;
        height: 42px;
    }
    .blku-hero__copy {
        padding: 30px 22px 24px;
    }
    .blku-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .blku-trust-row {
        grid-template-columns: 1fr;
        gap: 11px;
    }
    .blku-hero__visual {
        min-height: 315px;
    }
    .blku-phone-frame {
        width: min(270px, 84%);
    }
    .blku-section-head--split {
        display: block;
    }
    .blku-section-head > a {
        display: inline-block;
        margin-top: 12px;
    }
    .blku-category-strip__grid {
        grid-template-columns: 1fr 1fr;
    }
    .blku-category-card {
        grid-template-columns: 48px minmax(0, 1fr);
    }
    .blku-category-card__image {
        width: 48px;
        height: 48px;
    }
    .blku-category-card b {
        display: none;
    }
    .blku-offer-card {
        min-height: 200px;
        padding: 26px 22px;
    }
    .blku-product-grid.products {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .blku-product-grid.products > li.product,
    .blku-product-card.product {
        padding: 9px 9px 11px !important;
        border-radius: 16px;
    }
    .blku-product-grid li.product .woocommerce-loop-product__title {
        min-height: 0;
        font-size: 14px !important;
    }
    .blku-product-grid li.product .price {
        font-size: 15px !important;
    }
    .blku-product-grid li.product .button {
        min-height: 42px;
        padding-inline: 10px;
        font-size: 13px;
    }
    .blku-archive-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
    .blku-archive-toolbar select {
        width: 100%;
        min-width: 0;
    }
    .blku-archive-chips {
        flex-wrap: nowrap;
        margin-inline: -11px;
        padding: 0 11px 5px;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    .blku-archive-chips a {
        flex: 0 0 auto;
    }
    .blku-shortcode {
        padding-top: 24px;
    }
    .blku-shortcode .coupon {
        display: grid;
        grid-template-columns: 1fr;
    }
    .blku-shortcode .coupon .input-text,
    .blku-shortcode .coupon .button {
        width: 100%;
    }
    .blku-footer__grid {
        grid-template-columns: 1fr;
    }
    .blku-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .blku-product-grid.products {
        grid-template-columns: 1fr;
    }
    .blku-category-strip__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Unified website and private application preview. */
html.blku-overlay-open {
    overflow: hidden;
}

.blku-search-mobile {
    display: none;
}

.blku-search-dialog[hidden] {
    display: none !important;
}

.blku-search-dialog {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: start center;
    padding: max(8vh, 56px) 20px 20px;
}

.blku-search-dialog__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(3, 16, 38, .72);
    backdrop-filter: blur(8px);
}

.blku-search-dialog__panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(0, 20, 55, .28);
}

.blku-search-dialog__panel h2 {
    margin: 6px 44px 22px 0;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.05;
}

.blku-search-dialog__panel form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.blku-search-dialog__panel input[type="search"] {
    min-width: 0;
    min-height: 54px;
    padding: 0 17px;
    border: 1px solid var(--blku-border);
    border-radius: 14px;
    background: var(--blku-surface);
}

.blku-drawer-close {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--blku-border);
    border-radius: 50%;
    background: #fff;
    color: var(--blku-text);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.blku-category-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-block: 46px 80px;
}

.blku-category-page-grid .blku-category-card {
    min-height: 156px;
}

.blku-location-screen {
    padding-block: 48px 90px;
}

.blku-location-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid var(--blku-border);
    border-radius: 28px;
    background: linear-gradient(135deg, #fff 0%, #edf6ff 100%);
    box-shadow: var(--blku-shadow);
}

.blku-location-note > span {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--blku-blue);
    color: #fff;
}

.blku-location-note svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.blku-location-note h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 38px);
}

.blku-location-note p {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--blku-muted);
}

.blku-rewards-hero {
    padding: clamp(52px, 8vw, 96px) 0;
    color: #fff;
    background: radial-gradient(circle at 85% 10%, rgba(22, 184, 243, .32), transparent 28%), linear-gradient(135deg, var(--blku-blue-dark), var(--blku-blue));
}

.blku-rewards-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: center;
    gap: clamp(34px, 7vw, 84px);
}

.blku-rewards-hero h1 {
    max-width: 700px;
    margin: 8px 0 18px;
    color: #fff;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
}

.blku-rewards-hero p {
    max-width: 700px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
}

.blku-reward-card {
    position: relative;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 30px;
    color: var(--blku-blue-dark);
    background: linear-gradient(145deg, #fff9d8, var(--blku-gold));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.blku-reward-card span,
.blku-reward-card small,
.blku-reward-card strong {
    position: relative;
    z-index: 1;
}

.blku-reward-card strong {
    font-size: 68px;
    line-height: .95;
}

.blku-reward-card i {
    position: absolute;
    top: -48px;
    inset-inline-end: -22px;
    color: rgba(11, 78, 162, .12);
    font-size: 230px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.blku-reward-rules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-block: 54px 90px;
}

.blku-reward-rules article {
    padding: 26px;
    border: 1px solid var(--blku-border);
    border-radius: 22px;
    background: #fff;
}

.blku-reward-rules article > span {
    color: var(--blku-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.blku-reward-rules h2 {
    margin: 10px 0 8px;
}

.blku-reward-rules p {
    margin: 0;
    color: var(--blku-muted);
}

.blku-app-preview-hero {
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, .18), transparent 28%), linear-gradient(135deg, #071a3b, #0b4ea2);
}

.blku-app-preview-hero h1,
.blku-app-preview-hero p,
.blku-app-preview-hero .blku-eyebrow {
    color: #fff;
}

.blku-app-preview {
    padding-block: 34px 96px;
}

.blku-app-preview__notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    margin-bottom: 28px;
    padding: 18px 20px;
    border: 1px solid #bcd8f7;
    border-radius: 16px;
    background: #eef7ff;
}

.blku-app-preview__notice strong {
    color: var(--blku-blue);
}

.blku-app-preview__notice code {
    grid-column: 2;
    overflow-wrap: anywhere;
    color: var(--blku-muted);
}

.blku-app-preview__workspace {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(24px, 6vw, 72px);
}

.blku-app-preview__tabs {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--blku-border);
    border-radius: 20px;
    background: #fff;
}

.blku-app-preview__tabs button {
    min-height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    color: var(--blku-muted);
    background: transparent;
    font-weight: 700;
    text-align: start;
    cursor: pointer;
}

.blku-app-preview__tabs button.is-active {
    color: #fff;
    background: var(--blku-blue);
}

.blku-app-device {
    position: relative;
    width: min(430px, 100%);
    min-height: 780px;
    margin-inline: auto;
    padding: 12px 12px 92px;
    overflow: hidden;
    border: 10px solid #07152d;
    border-radius: 48px;
    background: var(--blku-surface);
    box-shadow: 0 42px 100px rgba(4, 25, 64, .25);
}

.blku-app-device__status {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    color: var(--blku-blue-dark);
    font-size: 11px;
}

.blku-app-screen {
    min-height: 640px;
    padding: 10px 8px 24px;
}

.blku-app-screen[hidden] {
    display: none !important;
}

.blku-app-screen__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 2px 14px;
}

.blku-app-screen__head small,
.blku-app-screen__head strong {
    display: block;
}

.blku-app-screen__head small {
    color: var(--blku-muted);
}

.blku-app-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: var(--blku-blue);
}

.blku-app-avatar svg,
.blku-app-search svg,
.blku-app-bottom-nav svg,
.blku-app-account-list svg,
.blku-app-state-card > svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.blku-app-search {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--blku-border);
    border-radius: 14px;
    color: var(--blku-muted);
    background: #fff;
    cursor: pointer;
}

.blku-app-promo {
    position: relative;
    display: flex;
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    margin-top: 14px;
    padding: 22px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--blku-blue), var(--blku-cyan));
}

.blku-app-promo span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
}

.blku-app-promo strong {
    font-size: 36px;
    line-height: 1.05;
}

.blku-app-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 2px 10px;
}

.blku-app-section-title small {
    color: var(--blku-blue);
    font-weight: 700;
}

.blku-app-categories {
    display: flex;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.blku-app-categories span {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid var(--blku-border);
    border-radius: 999px;
    color: var(--blku-blue);
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}

.blku-app-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.blku-app-product {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 9px;
    border: 1px solid var(--blku-border);
    border-radius: 16px;
    color: var(--blku-text);
    background: #fff;
    text-decoration: none;
}

.blku-app-product__image {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: #f2f6fb;
}

.blku-app-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blku-app-product small {
    margin-top: 8px;
    color: var(--blku-success);
    font-size: 10px;
    font-weight: 700;
}

.blku-app-product strong {
    margin: 3px 0 7px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.blku-app-product b {
    margin-top: auto;
    color: var(--blku-blue);
    font-size: 13px;
}

.blku-app-title {
    padding: 10px 2px 18px;
}

.blku-app-title > span {
    color: var(--blku-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.blku-app-title h2 {
    margin: 4px 0 5px;
    font-size: 28px;
    line-height: 1;
}

.blku-app-title p {
    margin: 0;
    color: var(--blku-muted);
    font-size: 13px;
}

.blku-app-product-detail__image {
    display: grid;
    aspect-ratio: 1.1;
    place-items: center;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.blku-app-product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blku-app-product-detail h2 {
    margin: 10px 0 8px;
    font-size: 26px;
    line-height: 1.08;
}

.blku-app-product-detail__price {
    color: var(--blku-blue);
    font-size: 23px;
    font-weight: 800;
}

.blku-app-product-detail p {
    color: var(--blku-muted);
    font-size: 13px;
}

.blku-app-state-card {
    display: grid;
    place-items: center;
    padding: 48px 24px;
    border: 1px solid var(--blku-border);
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

.blku-app-state-card > svg {
    width: 48px;
    color: var(--blku-blue);
}

.blku-app-state-card h3 {
    margin: 14px 0 6px;
}

.blku-app-state-card p {
    margin: 0 0 20px;
    color: var(--blku-muted);
    font-size: 13px;
}

.blku-app-account-list {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.blku-app-account-list span {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
    border: 1px solid var(--blku-border);
    border-radius: 15px;
    background: #fff;
}

.blku-app-account-list svg {
    color: var(--blku-blue);
}

.blku-snack-feature {
    display: grid;
    grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
    gap: 20px;
    margin-block: 32px;
    padding: 18px;
    border: 1px solid var(--blku-border);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--blku-shadow);
}

.blku-snack-feature__intro {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, .42), transparent 35%),
        linear-gradient(145deg, var(--blku-navy), var(--blku-blue));
}

.blku-snack-feature__intro h2 {
    margin: 8px 0 14px;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
}

.blku-snack-feature__intro p {
    max-width: 42ch;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .82);
}

.blku-snack-feature__intro .blku-button {
    align-self: flex-start;
}

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

.blku-snack-cup-hero {
    color: #fff;
    background:
        radial-gradient(circle at 85% 18%, rgba(212, 175, 55, .42), transparent 32%),
        linear-gradient(135deg, var(--blku-navy), var(--blku-blue));
}

.blku-snack-cup-hero h1,
.blku-snack-cup-hero p {
    color: #fff;
}

.blku-snack-cup-hero p {
    color: rgba(255, 255, 255, .82);
}

.blku-snack-cup-screen {
    padding-block: 28px 48px;
}

.blku-app-checkout-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.blku-app-checkout-list span {
    display: grid;
    min-height: 68px;
    grid-template-columns: 36px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 11px 14px;
    border: 1px solid var(--blku-border);
    border-radius: 15px;
    background: #fff;
}

.blku-app-checkout-list svg {
    grid-row: 1 / span 2;
    color: var(--blku-blue);
}

.blku-app-checkout-list b,
.blku-app-checkout-list small {
    grid-column: 2;
}

.blku-app-checkout-list small {
    color: var(--blku-muted);
}

.blku-app-screen .blku-button[disabled] {
    cursor: not-allowed;
    opacity: .62;
}

.blku-preview-order-disabled {
    cursor: not-allowed !important;
    opacity: .62;
}

.blku-preview-order-note {
    margin: 10px 0 0;
    color: var(--blku-muted);
    font-size: 13px;
}

.blku-app-bottom-nav {
    position: absolute;
    inset-inline: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    min-height: 68px;
    overflow: hidden;
    border: 1px solid var(--blku-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(9, 42, 91, .14);
}

.blku-app-bottom-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border: 0;
    color: var(--blku-muted);
    background: transparent;
    cursor: pointer;
}

.blku-app-bottom-nav button.is-active {
    color: var(--blku-blue);
}

.blku-app-bottom-nav small {
    font-size: 9px;
}

@media (max-width: 820px) {
    .blku-search-mobile {
        display: grid;
    }
    .blku-category-page-grid,
    .blku-reward-rules {
        grid-template-columns: 1fr 1fr;
    }
    .blku-rewards-hero__inner {
        grid-template-columns: 1fr;
    }
    .blku-reward-card {
        min-height: 230px;
    }
    .blku-app-preview__workspace {
        grid-template-columns: 1fr;
    }
    .blku-app-preview__tabs {
        position: static;
        grid-template-columns: repeat(6, minmax(92px, 1fr));
        overflow-x: auto;
    }
    .blku-snack-feature {
        grid-template-columns: 1fr;
    }
    .blku-snack-feature__intro {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .blku-main .row {
        margin-right: 0;
        margin-left: 0;
    }
    .blku-native-product .product-images,
    .blku-native-product .woocommerce-product-gallery {
        overflow: hidden;
    }
    .blku-native-product .product-detail .column {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .blku-native-product .product-actions,
    .blku-native-product .product_meta,
    .blku-native-product .product-share {
        max-width: 100%;
    }
    .blku-search-dialog {
        padding: 16px;
    }
    .blku-search-dialog__panel {
        margin-top: 5vh;
        padding: 24px 18px;
    }
    .blku-search-dialog__panel form {
        grid-template-columns: 1fr;
    }
    .blku-category-page-grid,
    .blku-reward-rules {
        grid-template-columns: 1fr;
    }
    .blku-location-note {
        grid-template-columns: 1fr;
    }
    .blku-app-preview__notice {
        grid-template-columns: 1fr;
    }
    .blku-app-preview__notice code {
        grid-column: 1;
    }
    .blku-app-device {
        min-height: 720px;
        border-width: 7px;
        border-radius: 38px;
    }
}
