/* CROM_PUBLIC_MARKETPLACE_DESIGN_V1_START */

:root {
    --crom-purple-950: #2e1065;
    --crom-purple-800: #5b21b6;
    --crom-purple-700: #6d28d9;
    --crom-purple-100: #ede9fe;
    --crom-orange: #f97316;
    --crom-text: #171329;
    --crom-muted: #706b7d;
    --crom-border: #e9e4f2;
    --crom-surface: #ffffff;
    --crom-background: #f8f6fc;
    --crom-shadow: 0 18px 45px rgba(50, 25, 90, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--crom-background);
    color: var(--crom-text);
    font-family: "Cairo", sans-serif;
}

a {
    color: inherit;
}

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

.crom-market-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(91, 33, 182, .08);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.crom-market-header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.crom-market-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.crom-market-brand__logo {
    color: var(--crom-purple-800);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 1px;
}

.crom-market-brand__label {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--crom-purple-100);
    color: var(--crom-purple-800);
    font-size: 10px;
    font-weight: 800;
}

.crom-market-seller-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border: 1px solid #ddd4ec;
    border-radius: 999px;
    background: #fff;
    color: var(--crom-purple-800);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.crom-market-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 72px;
    background:
        radial-gradient(
            circle at 15% 18%,
            rgba(255, 255, 255, .18),
            transparent 24%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(249, 115, 22, .26),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #2e1065 0%,
            #5b21b6 55%,
            #7c3aed 100%
        );
    color: #fff;
}

.crom-market-hero::before,
.crom-market-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.crom-market-hero::before {
    width: 260px;
    height: 260px;
    top: -130px;
    left: -80px;
}

.crom-market-hero::after {
    width: 190px;
    height: 190px;
    right: -80px;
    bottom: -90px;
}

.crom-market-hero__content {
    position: relative;
    z-index: 1;
    max-width: 730px;
}

.crom-market-hero__badge {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 800;
}

.crom-market-hero h1 {
    margin: 15px 0 10px;
    font-size: clamp(31px, 7vw, 53px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -.8px;
}

.crom-market-hero h1 span {
    display: block;
    color: #ffd89d;
}

.crom-market-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.95;
}

.crom-market-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.crom-market-stat {
    min-width: 135px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 15px;
    background: rgba(255, 255, 255, .09);
}

.crom-market-stat strong,
.crom-market-stat span {
    display: block;
}

.crom-market-stat strong {
    font-size: 20px;
    font-weight: 900;
}

.crom-market-stat span {
    margin-top: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 700;
}

.crom-market-directory {
    position: relative;
    z-index: 2;
    padding: 0 0 60px;
}

.crom-market-filter {
    margin-top: -31px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--crom-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--crom-shadow);
}

.crom-market-field label {
    display: block;
    margin-bottom: 7px;
    color: #635c70;
    font-size: 11px;
    font-weight: 800;
}

.crom-market-field input,
.crom-market-field select {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd7e8;
    border-radius: 13px;
    outline: none;
    background: #faf9fc;
    color: var(--crom-text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 0 13px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.crom-market-field input:focus,
.crom-market-field select:focus {
    border-color: #8b5cf6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .11);
}

.crom-market-search-button,
.crom-market-reset-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: end;
    border-radius: 13px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.crom-market-search-button {
    border: 0;
    background: linear-gradient(
        135deg,
        var(--crom-purple-800),
        var(--crom-purple-700)
    );
    color: #fff;
    box-shadow: 0 10px 24px rgba(91, 33, 182, .22);
}

.crom-market-reset-button {
    border: 1px solid #ded8e8;
    background: #fff;
    color: #6b6475;
}

.crom-market-results-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin: 34px 0 17px;
}

.crom-market-results-head__eyebrow {
    color: var(--crom-orange);
    font-size: 10px;
    font-weight: 900;
}

.crom-market-results-head h2 {
    margin: 3px 0 0;
    font-size: 23px;
    font-weight: 900;
}

.crom-market-results-count {
    flex: none;
    padding: 7px 11px;
    border: 1px solid var(--crom-border);
    border-radius: 999px;
    background: #fff;
    color: var(--crom-muted);
    font-size: 10px;
    font-weight: 700;
}

.crom-market-results-count b {
    color: var(--crom-purple-800);
    font-size: 12px;
}

.crom-market-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.crom-store-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--crom-border);
    border-radius: 21px;
    background: var(--crom-surface);
    box-shadow: 0 9px 28px rgba(43, 25, 72, .055);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.crom-store-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 17px 0;
}

.crom-store-logo {
    position: relative;
    width: 64px;
    height: 64px;
    flex: none;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e3dcf1;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at top left,
            rgba(249, 115, 22, .18),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #f4efff,
            #ffffff
        );
    color: var(--crom-purple-800);
    font-size: 24px;
    font-weight: 900;
}

.crom-store-logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 6px;
    background: #fff;
    object-fit: contain;
}

.crom-store-status {
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 9px;
    font-weight: 900;
}

.crom-store-status--ready {
    background: #ecfdf5;
    color: #047857;
}

.crom-store-card__body {
    flex: 1;
    padding: 15px 17px 14px;
}

.crom-store-card h3 {
    margin: 0;
    overflow: hidden;
    color: #211a31;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crom-store-location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 7px 0 0;
    color: var(--crom-muted);
    font-size: 11px;
    font-weight: 700;
}

.crom-store-location span {
    color: var(--crom-orange);
    font-size: 16px;
}

.crom-store-products {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    padding: 9px 11px;
    border-radius: 12px;
    background: #f8f6fc;
    color: #777080;
    font-size: 10px;
    font-weight: 700;
}

.crom-store-products strong {
    color: var(--crom-purple-800);
    font-size: 14px;
    font-weight: 900;
}

.crom-store-visit {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 17px;
    border-top: 1px solid #eee9f4;
    color: var(--crom-purple-800);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    transition:
        background .2s ease,
        color .2s ease;
}

.crom-store-visit span:last-child {
    font-size: 20px;
}

.crom-market-empty {
    padding: 45px 20px;
    border: 1px dashed #d9d0e8;
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

.crom-market-empty__icon {
    font-size: 36px;
}

.crom-market-empty h2 {
    margin: 10px 0 5px;
    font-size: 20px;
}

.crom-market-empty p {
    margin: 0;
    color: var(--crom-muted);
    font-size: 12px;
}

.crom-market-empty a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--crom-purple-800);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.crom-market-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
}

.crom-market-pagination a,
.crom-market-pagination > span:not(
    .crom-market-pagination__current
) {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border: 1px solid var(--crom-border);
    border-radius: 11px;
    background: #fff;
    color: var(--crom-purple-800);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.crom-market-pagination .is-disabled {
    opacity: .45;
}

.crom-market-pagination__current {
    color: var(--crom-muted);
    font-size: 10px;
    font-weight: 700;
}

.crom-market-footer {
    padding: 24px 0;
    border-top: 1px solid var(--crom-border);
    background: #fff;
}

.crom-market-footer .crom-market-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--crom-muted);
    font-size: 10px;
    text-align: center;
}

.crom-market-footer strong {
    color: var(--crom-purple-800);
    font-size: 17px;
    font-weight: 900;
}

@media (min-width: 600px) {
    .crom-market-filter {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(170px, .8fr)
            110px;
        align-items: end;
    }

    .crom-market-reset-button {
        grid-column: 1 / -1;
    }

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

@media (min-width: 860px) {
    .crom-market-container {
        width: min(1180px, calc(100% - 48px));
    }

    .crom-market-header__inner {
        min-height: 76px;
    }

    .crom-market-hero {
        padding: 70px 0 94px;
    }

    .crom-market-filter {
        grid-template-columns:
            minmax(0, 1.7fr)
            minmax(190px, .8fr)
            120px
            90px;
        padding: 19px;
    }

    .crom-market-reset-button {
        grid-column: auto;
    }

    .crom-market-results-head {
        margin-top: 42px;
    }

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

    .crom-store-card:hover {
        transform: translateY(-5px);
        border-color: #d8ccef;
        box-shadow: 0 19px 42px rgba(58, 31, 98, .12);
    }

    .crom-store-visit:hover {
        background: var(--crom-purple-800);
        color: #fff;
    }
}

@media (min-width: 1120px) {
    .crom-market-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* CROM_PUBLIC_MARKETPLACE_DESIGN_V1_END */

/* CROM_MARKETPLACE_FILTER_CHIPS_STYLE_V2 */
.crom-market-filter-chips {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 4px 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.crom-market-filter-chips::-webkit-scrollbar {
    display: none;
}

.crom-market-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 46px;
    padding: 9px 18px;
    border: 1px solid #dfe5ee;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.04);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.crom-market-filter-chip span {
    min-width: 27px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.crom-market-filter-chip:hover {
    border-color: #aab5c4;
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.09);
}

.crom-market-filter-chip.is-active {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.crom-market-filter-chip.is-active span {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.crom-market-filter-chip:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 3px;
}

@media (max-width: 599px) {
    .crom-market-filter-chips {
        margin-inline: -16px;
        padding-inline: 16px;
        scroll-padding-inline: 16px;
    }

    .crom-market-filter-chip {
        min-height: 48px;
        padding-inline: 16px;
    }
}

/* CROM_MARKETPLACE_MODERN_STORE_CARDS_V2 */
.crom-store-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e8edf4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 38px rgba(15, 23, 42, 0.07);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.crom-store-card:hover {
    transform: translateY(-5px);
    border-color: #d4dce8;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.13);
}

.crom-store-cover {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    height: 176px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #eef2ff, #f8fafc);
}

.crom-store-cover.has-1 {
    grid-template-columns: 1fr;
}

.crom-store-cover.has-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crom-store-cover__item {
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #f1f5f9;
}

.crom-store-cover__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 350ms ease,
        filter 350ms ease;
}

.crom-store-card:hover .crom-store-cover__item img {
    transform: scale(1.045);
    filter: saturate(1.04);
}

.crom-store-cover__placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #64748b;
}

.crom-store-cover__placeholder span {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    color: #1e293b;
    font-size: 29px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

.crom-store-card__top {
    position: relative;
    z-index: 2;
    margin-top: -27px;
    padding-inline: 20px;
}

.crom-store-logo {
    border: 4px solid #ffffff;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.13);
}

.crom-store-card__body {
    padding-top: 13px;
}

.crom-store-card__body h3 {
    line-height: 1.55;
}

.crom-store-visit {
    margin: 0 18px 18px;
    border-radius: 15px;
}

@media (max-width: 599px) {
    .crom-store-card {
        border-radius: 21px;
    }

    .crom-store-cover {
        height: 164px;
    }

    .crom-store-card__top {
        padding-inline: 16px;
    }

    .crom-store-visit {
        min-height: 50px;
        margin-inline: 15px;
        margin-bottom: 15px;
    }
}

/* CROM_MARKETPLACE_COVER_MOSAIC_V2 */
.crom-store-cover.has-3 {
    grid-template-columns: 1.55fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.crom-store-cover.has-3 .crom-store-cover__item:first-child {
    grid-row: 1 / span 2;
}

.crom-store-cover.has-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
}

.crom-store-cover.has-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.crom-store-cover.has-3 .crom-store-cover__item:nth-child(2),
.crom-store-cover.has-3 .crom-store-cover__item:nth-child(3) {
    min-height: 0;
}

.crom-store-cover__item {
    position: relative;
}

.crom-store-cover__item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(15, 23, 42, 0.08)
        );
}

@media (max-width: 599px) {
    .crom-store-cover.has-3 {
        grid-template-columns: 1.45fr 1fr;
    }
}

/* CROM_MARKETPLACE_SORT_CONTROL_STYLE_V2 */
.crom-market-sort {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 5px 7px 5px 13px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 7px 22px rgba(15, 23, 42, 0.05);
}

.crom-market-sort label {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.crom-market-sort select {
    min-height: 36px;
    padding: 5px 12px;
    border: 0;
    border-radius: 10px;
    background: #f5f3ff;
    color: #5b21b6;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.crom-market-sort select:focus-visible {
    outline: 3px solid rgba(124, 58, 237, 0.24);
    outline-offset: 2px;
}

@media (max-width: 599px) {
    .crom-market-results-head {
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 12px;
    }

    .crom-market-sort {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .crom-market-sort select {
        flex: 1;
        max-width: 170px;
    }
}

/* CROM_MARKETPLACE_PROMO_SLIDER_STYLES_V1 */
.crom-market-slider {
    position: relative;
    margin: 22px 0 30px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
    isolation: isolate;
}

.crom-market-slider__viewport {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.crom-market-slider__track {
    position: relative;
    min-height: inherit;
}

.crom-market-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    gap: 30px;
    min-height: 360px;
    padding: 34px 68px 48px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-24px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        visibility 0.45s ease;
}

.crom-market-slide:first-child,
.crom-market-slide.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.crom-market-slider.is-ready .crom-market-slide:first-child:not(.is-active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-24px);
}

.crom-market-slide::before,
.crom-market-slide::after {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    content: "";
    pointer-events: none;
}

.crom-market-slide::before {
    top: -120px;
    right: -100px;
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.18);
}

.crom-market-slide::after {
    bottom: -150px;
    left: 28%;
    width: 300px;
    height: 300px;
    border: 48px solid rgba(255, 255, 255, 0.1);
}

.crom-market-slide--shopping {
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(6, 78, 59, 0.98), rgba(16, 185, 129, 0.9));
}

.crom-market-slide--business {
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(30, 64, 175, 0.98), rgba(59, 130, 246, 0.9));
}

.crom-market-slide--reach {
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(124, 45, 18, 0.98), rgba(249, 115, 22, 0.9));
}

.crom-market-slide__content {
    position: relative;
    z-index: 2;
    max-width: 570px;
}

.crom-market-slide__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 13px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(6px);
}

.crom-market-slide h2 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: clamp(27px, 3vw, 43px);
    font-weight: 900;
    line-height: 1.25;
}

.crom-market-slide p {
    max-width: 530px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.9;
}

.crom-market-slide__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 10px 22px;
    border-radius: 13px;
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.crom-market-slide__action:hover {
    color: #0f172a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.crom-market-slide__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.crom-market-slide__visual img {
    display: block;
    width: min(100%, 500px);
    height: auto;
    max-height: 292px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.23));
}

.crom-market-slider__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.22);
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.crom-market-slider__arrow:hover {
    background: rgba(15, 23, 42, 0.42);
    transform: translateY(-50%) scale(1.05);
}

.crom-market-slider__arrow span {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 31px;
    line-height: 1;
}

.crom-market-slider__arrow--previous {
    right: 16px;
}

.crom-market-slider__arrow--next {
    left: 16px;
}

.crom-market-slider__dots {
    position: absolute;
    z-index: 6;
    right: 50%;
    bottom: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(50%);
}

.crom-market-slider__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.crom-market-slider__dot.is-active {
    width: 27px;
    background: #ffffff;
}

@media (max-width: 860px) {
    .crom-market-slider__viewport,
    .crom-market-slider__track,
    .crom-market-slide {
        min-height: 480px;
    }

    .crom-market-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 12px;
        padding: 34px 48px 52px;
        text-align: center;
    }

    .crom-market-slide__content {
        max-width: 100%;
    }

    .crom-market-slide p {
        margin-right: auto;
        margin-left: auto;
    }

    .crom-market-slide__visual img {
        width: min(76%, 360px);
        max-height: 190px;
    }
}

@media (max-width: 575px) {
    .crom-market-slider {
        margin: 17px 0 24px;
        border-radius: 20px;
    }

    .crom-market-slider__viewport,
    .crom-market-slider__track,
    .crom-market-slide {
        min-height: 455px;
    }

    .crom-market-slide {
        align-content: center;
        gap: 10px;
        padding: 28px 35px 50px;
    }

    .crom-market-slide__eyebrow {
        min-height: 29px;
        margin-bottom: 10px;
        padding: 4px 11px;
        font-size: 11px;
    }

    .crom-market-slide h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .crom-market-slide p {
        margin-bottom: 16px;
        font-size: 13px;
        line-height: 1.75;
    }

    .crom-market-slide__action {
        min-height: 41px;
        padding: 8px 17px;
        font-size: 13px;
    }

    .crom-market-slide__visual img {
        width: min(88%, 300px);
        max-height: 165px;
    }

    .crom-market-slider__arrow {
        width: 34px;
        height: 34px;
    }

    .crom-market-slider__arrow span {
        font-size: 25px;
    }

    .crom-market-slider__arrow--previous {
        right: 8px;
    }

    .crom-market-slider__arrow--next {
        left: 8px;
    }

    .crom-market-slider__dots {
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .crom-market-slide,
    .crom-market-slide__action,
    .crom-market-slider__arrow,
    .crom-market-slider__dot {
        transition: none;
    }
}
/* CROM_MARKETPLACE_PROMO_SLIDER_STYLES_V1_END */

/* CROM_MARKETPLACE_MOBILE_STORE_CARD_COMPACT_V3 */

.crom-store-visit::after{content:"";position:absolute;inset:0;z-index:4}.crom-store-card:focus-within{border-color:#c4b5fd;box-shadow:0 0 0 3px rgba(124,58,237,.14)}@media (max-width:599px){.crom-market-grid{gap:12px}.crom-store-card{border-radius:19px;box-shadow:0 8px 24px rgba(15,23,42,.065)}.crom-store-cover{height:146px}.crom-store-card__top{margin-top:-23px;padding-inline:14px}.crom-store-logo{width:56px;height:56px;border-width:3px;border-radius:16px;font-size:21px}.crom-store-status{padding:5px 8px;font-size:9px}.crom-store-card__body{padding:10px 14px 9px}.crom-store-card h3{font-size:15px;line-height:1.45}.crom-store-location{margin-top:4px}.crom-store-products{min-height:34px;margin-top:9px;padding:7px 10px}.crom-store-visit{min-height:44px;margin:0 13px 13px;padding-inline:13px;border:0;border-radius:13px;background:#f5f3ff;font-size:11px}.crom-store-visit span:last-child{font-size:18px}}
/* CROM_MARKETPLACE_MOBILE_STORE_CARD_COMPACT_V3_END */
/* CROM_MARKETPLACE_MOBILE_HERO_SEARCH_COMPACT_V1 */
@media (max-width:599px){.crom-market-header__inner{min-height:60px}.crom-market-brand__logo{font-size:21px}.crom-market-seller-link{min-height:36px;padding:6px 13px}.crom-market-hero{padding:27px 0 53px}.crom-market-hero__badge{padding:6px 10px;font-size:10px}.crom-market-hero h1{margin:11px 0 7px;font-size:28px;line-height:1.28}.crom-market-hero p{font-size:12px;line-height:1.7}.crom-market-stats{gap:8px;margin-top:16px}.crom-market-stat{min-width:0;flex:1;padding:8px 10px;border-radius:13px}.crom-market-stat strong{font-size:18px}.crom-market-stat span{font-size:9px}.crom-market-filter{margin-top:-25px;gap:9px;padding:12px;border-radius:18px}.crom-market-field label{margin-bottom:5px}.crom-market-field input,.crom-market-field select{height:44px}.crom-market-search-button,.crom-market-reset-button{min-height:44px}.crom-market-filter-chips{margin-top:13px;padding-bottom:7px}.crom-market-filter-chip{min-height:42px;padding-inline:14px}}
/* CROM_MARKETPLACE_MOBILE_HERO_SEARCH_COMPACT_V1_END */
/* CROM_MARKETPLACE_MOBILE_SLIDER_COMPACT_V1 */
@media (max-width:575px){.crom-market-slider{margin:13px 0 18px;border-radius:18px}.crom-market-slider__viewport,.crom-market-slider__track,.crom-market-slide{min-height:400px}.crom-market-slide{gap:6px;padding:18px 30px 38px}.crom-market-slide__eyebrow{min-height:26px;margin-bottom:7px;padding:3px 10px;font-size:10px}.crom-market-slide h2{margin-bottom:7px;font-size:22px;line-height:1.3}.crom-market-slide p{margin-bottom:10px;font-size:12px;line-height:1.6}.crom-market-slide__action{min-height:38px;padding:7px 15px;font-size:12px}.crom-market-slide__visual img{width:min(84%,270px);max-height:132px}.crom-market-slider__arrow{width:32px;height:32px}.crom-market-slider__arrow span{font-size:23px}.crom-market-slider__dots{bottom:10px;gap:6px}.crom-market-slider__dot{width:7px;height:7px}.crom-market-slider__dot.is-active{width:22px}}
/* CROM_MARKETPLACE_MOBILE_SLIDER_COMPACT_V1_END */
/* CROM_MARKETPLACE_HEADER_LOGO_ASSET_V1 */
.crom-market-brand__logo{display:block;width:91px;height:22px;object-fit:contain;filter:brightness(0) saturate(100%) invert(22%) sepia(82%) saturate(3544%) hue-rotate(258deg) brightness(79%) contrast(101%)}@media (max-width:599px){.crom-market-brand__logo{width:82px;height:20px}}
/* CROM_MARKETPLACE_HEADER_LOGO_ASSET_V1_END */
