/* ── Homepage redesign: bands, buttons, sections ── */

.shop-section-band {
    padding-block: 40px;
}

.shop-section-band--white {
    background: #fff;
}

.shop-section-band--soft {
    background: #f5f6f9;
}

.shop-home-page .shop-section-band--white,
.shop-home-page .shop-section-band--soft {
    background: transparent;
}

.shop-section-band--navy {
    background: transparent;
    padding-block: 56px 64px;
}

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

.shop-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.shop-section-head--stack {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.shop-section-head__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0b2c6e;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .shop-section-head__title {
        font-size: 24px;
    }
}

.shop-section-head__subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: #5a6478;
    max-width: 640px;
}

/* Buttons */
.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-btn:focus-visible {
    outline: 2px solid #005da9;
    outline-offset: 2px;
}

.shop-btn--primary {
    background: #005da9;
    color: #fff;
    border-color: #005da9;
}

.shop-btn--primary:hover {
    background: #0b2c6e;
    border-color: #0b2c6e;
}

.shop-btn--success {
    background: #059669;
    border-color: #059669;
}

.shop-btn--success:hover {
    background: #047857;
    border-color: #047857;
}

.shop-btn--secondary {
    background: #fff;
    color: #005da9;
    border-color: #005da9;
}

.shop-btn--secondary:hover {
    background: #eef5ff;
}

.shop-btn--on-dark {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.shop-btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.1);
}

.shop-btn--text {
    min-height: 44px;
    padding: 8px 4px;
    background: transparent;
    color: #005da9;
    border-color: transparent;
}

.shop-btn--text:hover {
    text-decoration: underline;
}

/* Header centered nav */
@media (min-width: 1024px) {
    .shop-header {
        position: relative;
    }

    .shop-header__nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .shop-header__nav ul {
        gap: 20px;
    }
}

/* Empty state */
.shop-state {
    padding: 32px 20px;
    border: 1px dashed #d7dde8;
    border-radius: 16px;
    background: #fafbfd;
    text-align: center;
    font-size: 14px;
    color: #6f7b8f;
}

/* Discounts grid */
.shop-acceptors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .shop-acceptors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .shop-acceptors-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.shop-acceptor-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 44, 110, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-acceptor-card:hover {
    border-color: #c7dbff;
    box-shadow: 0 4px 14px rgba(11, 44, 110, 0.06);
}

.shop-acceptor-card__media {
    position: relative;
    flex-shrink: 0;
}

.shop-acceptor-card__banner {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.shop-acceptor-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ce3f2d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.shop-acceptor-card__logo {
    position: absolute;
    bottom: -18px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e8edf3;
    padding: 4px;
}

.shop-acceptor-card__logo--framed {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.shop-acceptor-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 16px 16px;
    text-align: right;
}

.shop-acceptor-card__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #102a56;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-acceptor-card__desc {
    margin: 0 0 auto;
    font-size: 13px;
    line-height: 1.7;
    color: #5a6478;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-acceptor-card__link {
    margin-top: 12px;
    align-self: flex-start;
}

/* Services grid — label/box styles in shop-home-extra.css */
.shop-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 1024px) {
    .shop-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Receivers — swiper overflow fix (layout in shop-home-extra.css) */
.shop-receivers-section__carousel-wrap {
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.shop-receivers-section__carousel-wrap .shop-receivers-swiper {
    overflow: hidden;
    border-radius: 16px;
}

/* Stats panel */
.shop-stats-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-block: 24px;
    padding-inline: 0;
    background: #eef5ff;
    border: 1px solid #dce8f5;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .shop-stats-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .shop-stats-panel {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        padding-block: 28px;
    }
}

.shop-stats-panel__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    text-align: center;
}

@media (min-width: 1024px) {
    .shop-stats-panel__item--divider {
        border-right: 1px solid #dce8f5;
    }
}

.shop-stats-panel__icon {
    opacity: 0.85;
}

.shop-stats-panel__value {
    font-size: 24px;
    font-weight: 800;
    color: #0b2c6e;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .shop-stats-panel__value {
        font-size: 28px;
    }
}

.shop-stats-panel__label {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.5;
}

/* Horizontal stepper with arrows (RTL) */
.shop-stepper-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 8px 4px;
    margin-bottom: 40px;
}

.shop-stepper-row--rtl {
    flex-direction: row-reverse;
}

@media (min-width: 1024px) {
    .shop-stepper-row {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
    }
}

.shop-stepper-row__step {
    flex: 1 1 140px;
    max-width: 220px;
    padding: 16px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
}

.shop-stepper-row__step--compact {
    flex: 1 1 120px;
    max-width: 200px;
    padding: 12px 10px;
}

.shop-stepper-row__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #0b2c6e;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.shop-stepper-row__title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #102a56;
    line-height: 1.4;
}

.shop-stepper-row__desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: #5a6478;
}

.shop-stepper-row__arrow {
    display: none;
    flex-shrink: 0;
    align-self: center;
    color: #005da9;
    padding: 0 4px;
}

@media (min-width: 1024px) {
    .shop-stepper-row__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ── Card issuance process (homepage) ── */
.shop-card-process {
    margin-top: 48px;
    padding: 32px 16px;
    background: linear-gradient(180deg, #eef5fc 0%, #f8fbff 100%);
    border: 1px solid #dce8f5;
    border-radius: 20px;
}

@media (min-width: 1024px) {
    .shop-card-process {
        margin-top: 64px;
        padding: 40px 32px;
    }
}

.shop-card-process__title {
    margin: 0 0 32px;
    font-size: 22px;
    font-weight: 700;
    color: #0b2c6e;
    text-align: center;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .shop-card-process__title {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

.shop-card-process__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .shop-card-process__layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.shop-card-process__track {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 8px 0;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .shop-card-process__track {
        flex-wrap: nowrap;
        justify-content: space-between;
        max-width: 720px;
    }
}

.shop-card-process__step {
    flex: 1 1 130px;
    max-width: 150px;
    min-width: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .shop-card-process__step {
        flex: 1 1 0;
        max-width: 160px;
    }
}

.shop-card-process__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 999px;
    border: 2px solid #005da9;
    background: #fff;
    color: #005da9;
    box-shadow: 0 4px 12px rgba(0, 93, 169, 0.12);
}

.shop-card-process__step-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #0b2c6e;
    line-height: 1.4;
}

.shop-card-process__step-desc {
    margin: 0;
    font-size: 11px;
    line-height: 1.7;
    color: #5a6478;
}

@media (min-width: 1024px) {
    .shop-card-process__step-title {
        font-size: 15px;
    }

    .shop-card-process__step-desc {
        font-size: 12px;
    }
}

.shop-card-process__connector {
    display: none;
    flex: 0 1 32px;
    align-self: center;
    height: 0;
    margin-top: -52px;
    border-top: 2px dashed #7eb8e8;
    position: relative;
}

.shop-card-process__connector::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid #7eb8e8;
}

@media (min-width: 1024px) {
    .shop-card-process__connector {
        display: block;
    }
}

.shop-card-process__card {
    flex-shrink: 0;
    margin: 0;
    width: min(100%, 260px);
}

.shop-card-process__card-frame {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(11, 44, 110, 0.18);
    background: #fff;
    aspect-ratio: 1.58;
}

.shop-card-process__card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-card-process__actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

@media (min-width: 1024px) {
    .shop-card-process__actions {
        margin-top: 40px;
    }
}

.shop-card-process__btn {
    min-width: 240px;
    border-radius: 999px;
}

.shop-membership-section__btn {
    border-radius: 999px;
    padding-inline: 40px;
}


.shop-membership-section__cta {
    display: flex;
    justify-content: center;
}

/* CTA */
.shop-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    background: #0b2c6e;
    border-radius: 16px;
    color: #fff;
}

@media (min-width: 768px) {
    .shop-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 36px 40px;
    }
}

.shop-cta__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .shop-cta__title {
        font-size: 24px;
    }
}

.shop-cta__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.shop-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .shop-cta__actions {
        flex-direction: row;
    }
}

/* Notices badge */
.shop-notices__badge {
    display: inline-flex;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #eef5ff;
    color: #005da9;
    font-size: 12px;
    font-weight: 700;
}

/* Footer refresh */
.shop-footer {
    background: #0b2c6e;
}

.shop-footer__inner {
    padding: 48px 24px 32px;
}

.shop-footer__col h2 {
    font-size: 16px;
}

.shop-footer__col a {
    font-size: 13px;
    line-height: 1.7;
}

.shop-footer__contact li span {
    font-size: 13px;
    line-height: 1.7;
}

/* Section spacing overrides */
.shop-news-section,
.shop-events-section {
    width: 100%;
    min-width: 0;
    margin-top: 0;
}

.shop-club-section {
    margin-top: 0;
}

.shop-events-section__head,
.shop-events-section__body,
.shop-events-panel > .shop-events-state {
    padding-inline: 12px;
}

@media (min-width: 1024px) {
    .shop-events-section__head,
    .shop-events-section__body,
    .shop-events-panel > .shop-events-state {
        padding-inline: 16px;
    }
}

.shop-news-panel__grid,
.shop-notices {
    padding-inline: 12px;
}

@media (min-width: 1024px) {
    .shop-news-panel__grid,
    .shop-notices {
        padding-inline: 16px;
    }
}

/* Band container — single width source via .shop-site-shell */
.shop-section-band > .shop-site-shell {
    width: 100%;
    max-width: var(--shop-container-max);
    margin-inline: auto;
    box-sizing: border-box;
}

/* Inner panels align with shell edges — no extra horizontal inset */
.shop-news-panel,
.shop-events-panel,
.shop-stats-panel {
    width: 100%;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    .shop-acceptor-card,
    .shop-btn,
    .shop-service-card__img {
        transition: none;
    }

    .itemLeft {
        animation: none;
    }
}
