:root {
    --el-ink: #172033;
    --el-muted: #667085;
    --el-line: #d9e2ec;
    --el-paper: #ffffff;
    --el-soft: #f5f8fb;
    --el-accent: #0f7a5f;
    --el-accent-2: #f59e0b;
    --el-dark: #10243f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.el-body {
    margin: 0;
    min-height: 100vh;
    color: var(--el-ink);
    background: var(--el-soft);
    font-family: "ZehnPro", "Inter", "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
}

.el-utility-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 42px;
    padding: 8px clamp(16px, 4vw, 44px);
    border-bottom: 1px solid rgba(217, 226, 236, .82);
    background: #fff;
    color: var(--el-muted);
    font-size: 13px;
    font-weight: 850;
}

.el-utility-strip > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.el-utility-strip > a {
    color: var(--el-accent);
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
}

.el-branch-pill {
    min-height: 34px;
    display: inline-grid;
    align-content: center;
    gap: 1px;
    border: 0;
    border-radius: 8px;
    padding: 4px 12px;
    background: #fff7ed;
    color: #9a3412;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.el-branch-pill span {
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
}

.el-branch-pill strong {
    color: var(--el-ink);
    font-size: 13px;
    font-weight: 950;
}

.el-branch-panel {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    justify-items: end;
    background: rgba(15, 23, 42, .42);
}

.el-branch-panel[hidden] {
    display: none;
}

.el-branch-panel > div {
    width: min(440px, 100%);
    height: 100%;
    overflow: auto;
    padding: 20px;
    background: #fff;
}

.el-branch-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.el-branch-panel header strong {
    font-size: 22px;
    font-weight: 950;
}

.el-branch-panel header button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    background: #fff;
    color: var(--el-ink);
    font-size: 24px;
    cursor: pointer;
}

.el-branch-panel p {
    margin: 0 0 14px;
    color: var(--el-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.el-branch-panel [data-branch-list] {
    display: grid;
    gap: 10px;
}

.el-branch-panel [data-branch-option] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    color: var(--el-ink);
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.el-branch-panel .ec-branch-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 12px;
    object-fit: cover;
    background: #eff6ff;
}

.el-branch-panel .ec-branch-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.el-branch-panel [data-branch-option]:hover {
    border-color: var(--el-accent);
    background: #edf7f3;
}

.el-branch-panel [data-branch-option] strong {
    font-weight: 950;
}

.el-branch-panel [data-branch-option] small,
.el-branch-panel [data-branch-option] span {
    color: var(--el-muted);
    font-size: 12px;
    font-weight: 800;
}

.el-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 12px clamp(16px, 4vw, 44px);
    border-bottom: 1px solid rgba(217, 226, 236, .82);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.el-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
}

.el-brand > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--el-dark);
    color: #fff;
    font-weight: 950;
    overflow: hidden;
}

.el-brand > span img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.el-brand strong {
    display: grid;
    gap: 1px;
    font-size: 16px;
    line-height: 1.1;
}

.el-brand small {
    color: var(--el-muted);
    font-size: 11px;
    font-weight: 800;
}

.el-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.el-nav::-webkit-scrollbar {
    display: none;
}

.el-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--el-muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.el-nav a.active,
.el-nav a:hover {
    color: var(--el-ink);
    background: #edf7f3;
}

.el-top-search {
    width: min(360px, 32vw);
    min-width: 260px;
    display: flex;
    gap: 8px;
}

.el-top-search input {
    width: 100%;
    height: 38px;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
    color: var(--el-ink);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    outline: 0;
}

.el-top-search input:focus {
    border-color: var(--el-accent);
    box-shadow: 0 0 0 3px rgba(15, 122, 95, .12);
}

.el-top-search button {
    height: 38px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    background: var(--el-dark);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
}

.el-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 96px;
}

.el-auth-link {
    border: 1px solid #cfe0ea;
    background: #fff;
    color: var(--el-dark) !important;
}

.el-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 314px;
    gap: 12px;
    align-items: stretch;
}

.el-main-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1040 / 320;
    background: var(--el-dark);
    isolation: isolate;
}

.el-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    visibility: hidden;
    transition: opacity .32s ease, visibility .32s ease;
}

.el-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.el-hero-slide img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(16, 36, 63, .76), rgba(16, 36, 63, .18) 62%, rgba(16, 36, 63, 0));
}

.el-hero-slide div {
    width: min(520px, 72%);
    padding: 28px;
    color: #fff;
}

.el-hero-slide p {
    margin: 0 0 6px;
    color: #fde68a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.el-hero-slide h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.02;
    letter-spacing: 0;
}

.el-hero-slide span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.42;
}

.el-hero-slide a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    border-radius: 8px;
    padding: 0 14px;
    background: #fff;
    color: var(--el-dark);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.el-hero-dots {
    position: absolute;
    left: 18px;
    bottom: 12px;
    z-index: 5;
    display: flex;
    gap: 6px;
}

.el-hero-dots button {
    width: 22px;
    height: 7px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
}

.el-hero-dots button.is-active {
    width: 36px;
    background: #fff;
}

.el-support-banners {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.el-support-banners a {
    position: relative;
    min-height: 88px;
    display: grid;
    align-content: end;
    overflow: hidden;
    border-radius: 8px;
    padding: 12px;
    background: var(--el-dark);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.el-support-banners a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(16, 36, 63, .08), rgba(16, 36, 63, .82));
}

.el-support-banners img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el-support-banners span {
    color: #fde68a;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.el-support-banners strong {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 950;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.el-support-banners em {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-style: normal;
    font-weight: 750;
    line-height: 1.35;
}

.el-self-scan-card {
    background: linear-gradient(135deg, #0f7a5f, #10243f) !important;
}

.el-wireframe-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #cfe0ea;
    border-radius: 8px;
    background: #fff;
}

.el-wireframe-note strong {
    white-space: nowrap;
    font-weight: 950;
}

.el-wireframe-note span {
    color: var(--el-muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.el-hero {
    position: relative;
    min-height: clamp(420px, 66vh, 640px);
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 8px;
    background: var(--el-dark);
    isolation: isolate;
}

.el-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--el-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.el-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(16, 36, 63, .86), rgba(16, 36, 63, .46) 48%, rgba(16, 36, 63, .12));
}

.el-hero-overlay {
    width: min(720px, 100%);
    padding: clamp(24px, 6vw, 58px);
    color: #fff;
}

.el-hero-overlay p {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fde68a;
}

.el-hero-overlay h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(42px, 8vw, 84px);
    line-height: .96;
    letter-spacing: 0;
}

.el-hero-overlay span {
    display: block;
    max-width: 54ch;
    margin-top: 16px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

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

.el-primary-action,
.el-scan-action,
.el-search button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    font: inherit;
    font-weight: 950;
    text-decoration: none;
    cursor: pointer;
}

.el-primary-action {
    background: #fff;
    color: var(--el-dark);
}

.el-scan-action,
.el-search button {
    background: var(--el-accent);
    color: #fff;
}

.el-promo-band,
.el-banner-strip,
.el-category-strip,
.el-today-promos,
.el-deals {
    margin-top: 18px;
}

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

.el-promo-band article {
    padding: 18px;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    background: var(--el-paper);
}

.el-promo-band strong,
.el-promo-band span {
    display: block;
}

.el-today-promos {
    padding: 16px;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    background: #fff;
}

.el-section-head.compact {
    margin-bottom: 12px;
}

.el-section-head.compact h2 {
    font-size: clamp(22px, 3vw, 30px);
}

.el-section-head.compact > span {
    color: var(--el-muted);
    font-size: 12px;
    font-weight: 900;
}

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

.el-today-grid article {
    min-height: 116px;
    display: grid;
    align-content: space-between;
    gap: 8px;
    padding: 12px;
    border: 1px solid #fde68a;
    border-radius: 8px;
    background: #fff8ec;
}

.el-today-grid span {
    color: #b45309;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.el-today-grid strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--el-ink);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 950;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.el-today-grid small {
    color: var(--el-muted);
    font-size: 12px;
    font-weight: 800;
}

.el-promo-band strong {
    font-size: 16px;
    font-weight: 950;
}

.el-promo-band span {
    margin-top: 4px;
    color: var(--el-muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

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

.el-banner-strip article {
    position: relative;
    min-height: 170px;
    overflow: hidden;
    border-radius: 8px;
    background: #dbe8f4;
}

.el-banner-strip img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    display: block;
    object-fit: cover;
}

.el-banner-strip span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    color: var(--el-ink);
    font-size: 13px;
    font-weight: 950;
}

.el-category-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.el-category-strip a {
    min-height: 92px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 12px 8px;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    background: var(--el-paper);
    text-align: center;
    text-decoration: none;
}

.el-category-strip span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #fff7ed;
    color: #b45309;
    font-weight: 950;
}

.el-category-strip strong {
    max-width: 100%;
    overflow: hidden;
    color: var(--el-ink);
    font-size: 12px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.el-deals {
    padding-top: 8px;
}

.el-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.el-section-head p {
    margin: 0 0 4px;
    color: var(--el-accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.el-section-head h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: 0;
}

.el-search {
    width: min(420px, 100%);
    display: flex;
    gap: 8px;
}

.el-search input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    padding: 0 14px;
    background: #fff;
    color: var(--el-ink);
    font: inherit;
    font-weight: 800;
    outline: 0;
}

.el-search input:focus {
    border-color: var(--el-accent);
    box-shadow: 0 0 0 4px rgba(15, 122, 95, .12);
}

.el-search-summary {
    margin: -4px 0 14px;
    color: var(--el-muted);
    font-size: 13px;
    font-weight: 800;
}

.el-search-summary strong {
    color: var(--el-ink);
}

.el-search-summary a {
    color: var(--el-accent);
    font-weight: 950;
    text-decoration: none;
}

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

.el-product-card {
    overflow: hidden;
    border: 1px solid var(--el-line);
    border-radius: 8px;
    background: #fff;
}

.el-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #eef4f8;
    color: var(--el-accent);
    text-decoration: none;
}

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

.el-product-image span {
    font-size: 34px;
    font-weight: 950;
}

.el-product-body {
    padding: 10px;
}

.el-product-body small {
    color: var(--el-accent);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.el-product-body h3 {
    min-height: 40px;
    margin: 5px 0 8px;
    font-size: 13px;
    line-height: 1.35;
}

.el-product-body h3 a {
    text-decoration: none;
}

.el-product-body strong {
    display: block;
    font-size: 16px;
    font-weight: 950;
}

.el-product-body p {
    margin: 5px 0 0;
    color: var(--el-muted);
    font-size: 12px;
    font-weight: 800;
}

.el-empty {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: var(--el-muted);
    font-weight: 850;
    text-align: center;
}

.el-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.el-pagination a,
.el-pagination span,
.el-pagination strong {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 950;
}

.el-pagination a {
    background: var(--el-dark);
    color: #fff;
    text-decoration: none;
}

.el-pagination span {
    background: #e5eaf0;
    color: var(--el-muted);
}

.el-pagination strong {
    background: #fff;
    border: 1px solid var(--el-line);
}

.el-floating-scan {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--el-dark);
    color: #fff;
    box-shadow: 0 18px 46px rgba(16, 36, 63, .24);
    font-weight: 950;
    text-decoration: none;
}

.el-floating-scan span {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow:
        10px 0 0 -6px #fff,
        0 10px 0 -6px #fff,
        10px 10px 0 -6px #fff;
}

@media (max-width: 1180px) {
    .el-hero-grid {
        grid-template-columns: minmax(0, 1fr) 270px;
    }

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

@media (max-width: 900px) {
    .el-utility-strip {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .el-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .el-nav {
        width: 100%;
    }

    .el-top-search {
        width: 100%;
        min-width: 0;
    }

    .el-shell {
        width: min(100% - 24px, 720px);
        padding-top: 12px;
    }

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

    .el-main-carousel {
        aspect-ratio: 16 / 7;
    }

    .el-support-banners {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .el-promo-band,
    .el-banner-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .el-category-strip {
        display: flex;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .el-category-strip a {
        min-width: 106px;
    }

    .el-section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .el-search {
        width: 100%;
    }
}

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

@media (max-width: 560px) {
    .el-brand strong {
        font-size: 15px;
    }

    .el-nav a {
        padding: 0 10px;
    }

    .el-main-carousel {
        aspect-ratio: 1.45 / 1;
    }

    .el-hero-slide div {
        width: 100%;
        padding: 18px;
    }

    .el-hero-slide span {
        display: none;
    }

    .el-support-banners {
        grid-template-columns: 1fr;
    }

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

    .el-promo-band,
    .el-banner-strip,
    .el-product-grid,
    .el-today-grid {
        grid-template-columns: 1fr;
    }

    .el-wireframe-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .el-product-card {
        display: grid;
        grid-template-columns: 116px minmax(0, 1fr);
    }

    .el-product-image {
        aspect-ratio: auto;
        min-height: 132px;
    }

    .el-product-body h3 {
        min-height: auto;
    }

    .el-floating-scan {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
    }
}


/* =========================================================
   v20260528-1650 /ecommerce polish like landing/protein
   ========================================================= */
:root{--el-sky:#0ea5e9;--el-ink:rgb(34,53,72);--el-muted:#5c7288;--el-line:rgba(191,219,254,.72);--el-soft:#ffffff;--el-paper:#ffffff;--el-accent:#0ea5e9;--el-accent-2:#38bdf8;--el-dark:rgb(34,53,72)}
html,body.el-body{background:#fff!important;color:var(--el-ink)!important;font-family:var(--zp-live-font-family,"72 Brand Variable",Sora,Inter,Arial,Helvetica,sans-serif)!important;font-size:16px!important;line-height:24px!important;font-weight:400!important;overflow-x:hidden!important;}
.el-utility-strip{background:#fff!important;border-bottom:1px solid var(--el-line)!important;color:var(--el-muted)!important;font-weight:500!important;}
.el-utility-strip>a{color:var(--el-sky)!important;font-weight:600!important;}
.el-branch-pill{background:#f5fbff!important;color:#0284c7!important;border:1px solid rgba(14,165,233,.24)!important;border-radius:999px!important;}
.el-topbar{top:14px!important;width:min(1440px,calc(100vw - 64px))!important;margin:14px auto 0!important;border:1px solid var(--el-line)!important;border-radius:18px!important;background:rgba(255,255,255,.94)!important;box-shadow:0 18px 48px rgba(34,53,72,.08)!important;backdrop-filter:blur(18px)!important;}
.el-brand>span{background:#fff!important;border:1px solid rgba(14,165,233,.32)!important;border-radius:15px!important;color:var(--el-sky)!important;}
.el-brand strong{font-size:22px!important;line-height:26px!important;font-weight:500!important;color:var(--el-ink)!important;letter-spacing:-.03em!important;}
.el-brand small{font-size:13px!important;font-weight:400!important;color:var(--el-muted)!important;}
.el-nav a{font-size:15px!important;font-weight:500!important;color:var(--el-ink)!important;text-decoration:none!important;}
.el-nav a.active,.el-nav a:hover{color:var(--el-sky)!important;}
.el-top-search{border:1px solid var(--el-line)!important;border-radius:999px!important;background:#fff!important;box-shadow:none!important;}
.el-top-search input{font-size:14px!important;font-weight:400!important;color:var(--el-ink)!important;}
.el-top-search button,.el-search button{background:var(--el-sky)!important;color:#fff!important;border-radius:999px!important;font-weight:600!important;box-shadow:0 12px 28px rgba(14,165,233,.18)!important;}
.el-shell{width:min(1440px,calc(100vw - 64px))!important;margin:0 auto!important;padding-top:38px!important;}
.el-hero-grid{gap:22px!important;}
.el-main-carousel,.el-side-promo,.el-kpi-row article,.el-today-promos,.el-category-strip,.el-deals,.el-product-card{background:#fff!important;border:1px solid var(--el-line)!important;border-radius:26px!important;box-shadow:0 18px 48px rgba(34,53,72,.07)!important;}
.el-hero-slide:after{background:linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.28),rgba(255,255,255,0))!important;}
.el-hero-slide div{color:var(--el-ink)!important;}
.el-hero-slide p,.el-section-head p{color:var(--el-sky)!important;font-size:14px!important;line-height:20px!important;font-weight:600!important;letter-spacing:0!important;text-transform:none!important;}
.el-hero-slide h1{color:var(--el-ink)!important;font-size:clamp(44px,5.2vw,82px)!important;line-height:.98!important;letter-spacing:-.06em!important;font-weight:500!important;}
.el-hero-slide a,.el-side-promo a{background:var(--el-sky)!important;color:#fff!important;border-radius:12px!important;font-weight:600!important;}
.el-section-head h2{font-size:clamp(28px,3vw,44px)!important;line-height:1.05!important;font-weight:500!important;letter-spacing:-.04em!important;color:var(--el-ink)!important;}
.el-product-body small{font-size:12px!important;line-height:18px!important;font-weight:500!important;color:var(--el-muted)!important;}
.el-product-body h3,.el-product-body h3 a{font-size:15px!important;line-height:21px!important;font-weight:700!important;color:var(--el-ink)!important;}
.el-product-body strong{font-size:16px!important;line-height:22px!important;font-weight:700!important;color:var(--el-sky)!important;}
.el-product-body p{font-size:12px!important;line-height:18px!important;color:var(--el-muted)!important;font-weight:500!important;}
.el-floating-scan{background:var(--el-sky)!important;color:#fff!important;border-radius:999px!important;box-shadow:0 16px 34px rgba(14,165,233,.22)!important;}
@media(max-width:900px){.el-topbar,.el-shell{width:min(100% - 24px,680px)!important}.el-topbar{top:8px!important}.el-hero-slide h1{font-size:38px!important}.el-nav{display:none!important}}
