@font-face {
    font-family: "Pelak";
    src: url("../react-ui/font/Pelak-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pelak";
    src: url("../react-ui/font/Pelak-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pelak";
    src: url("../react-ui/font/Pelak-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pelak";
    src: url("../react-ui/font/Pelak-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Pelak", system-ui, sans-serif;
    background-color: var(--home-page-background, #f5f6f9);
}

:root {
    --home-page-background: #f1f4f7;
    --shop-container-max: 1200px;
    --shop-container-gutter: 16px;
}

@media (min-width: 768px) {
    :root {
        --shop-container-gutter: 20px;
    }
}

@media (min-width: 1024px) {
    :root {
        --shop-container-gutter: 24px;
    }
}

/* ── Site shell (centered container) ── */
.shop-site-shell {
    width: 100%;
    max-width: var(--shop-container-max);
    margin-inline: auto;
    padding-inline: var(--shop-container-gutter);
    position: relative;
    box-sizing: border-box;
}

.shop-site-shell--header {
    padding-top: 12px;
}

@media (min-width: 1024px) {
    .shop-site-shell--header {
        padding-top: 24px;
    }
}

.shop-site-shell--footer {
    margin-top: 80px;
    padding-bottom: 24px;
}

.shop-site-shell--page {
    width: 100%;
}

.shop-site-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
    position: relative;
    width: 100%;
}

.shop-section-band {
    width: 100%;
}

/* ── Header ── */
.shop-header-wrap {
    position: relative;
}

.shop-header-wrap__deco {
    position: absolute;
    top: -40px;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.shop-header-wrap__deco img {
    max-width: 180px;
    height: auto;
}

.shop-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    background: #fff;
    border-radius: 16px;
    border-bottom: 1px solid #eef2f7;
    padding: 12px 16px;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .shop-header {
        min-height: 72px;
        padding: 12px 20px;
    }
}

.shop-header__start {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.shop-header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #005da9;
    border-radius: 999px;
    background: transparent;
    color: #005da9;
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .shop-header__menu-btn {
        display: none;
    }
}

.shop-header__logo img {
    height: 48px;
    width: auto;
    display: block;
}

.shop-header__nav {
    display: none;
}

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

    .shop-header__nav ul {
        display: flex;
        gap: 28px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .shop-header__nav a {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        color: #111;
        text-decoration: none;
        line-height: 1.5;
        white-space: nowrap;
        padding: 4px 0 8px;
        border-bottom: 3px solid transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

    .shop-header__nav a.is-active {
        color: #005da9;
        border-bottom-color: #005da9;
    }

    .shop-header__nav a:hover {
        color: #005da9;
    }

    .shop-header__nav a.is-active:hover {
        border-bottom-color: #005da9;
    }
}

.shop-header__login {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 185px;
    padding: 8px 16px;
    background: #008cff;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    flex-shrink: 0;
}

.shop-header__login img {
    width: 20px;
    height: 20px;
}

.shop-sidebar__link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.shop-sidebar__link:hover {
    background: #f3f4f6;
    color: #111827;
}

.shop-sidebar__link.is-active {
    color: #005da9;
    background: #eff6ff;
    font-weight: 700;
    border-bottom-color: #005da9;
}

@media (min-width: 1024px) {
    .shop-header__login {
        display: inline-flex;
    }
}

.shop-header__user {
    display: none;
    position: relative;
}

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

.shop-header__user-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.shop-header__user-btn img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid #e2e2e2;
}

.shop-header__user-meta {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 14px;
}

.shop-header__user-meta span:first-child {
    font-weight: 600;
}

.shop-header__user-meta span:last-child {
    color: #6b7280;
    font-size: 12px;
}

.shop-header__user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 160px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.shop-header__user-dropdown.hidden {
    display: none;
}

.shop-header__user-dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #111;
    text-decoration: none;
}

.shop-header__user-dropdown a:hover {
    background: #f3f4f6;
}

/* ── Footer ── */
.shop-footer {
    background: #005da9;
    color: #fff;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.shop-footer__inner {
    padding: 64px 24px;
}

.shop-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

@media (min-width: 1024px) {
    .shop-footer__grid {
        grid-template-columns: minmax(240px, 1.15fr) minmax(160px, 0.75fr) minmax(160px, 0.75fr) minmax(220px, 1fr);
        gap: 40px;
        align-items: start;
    }
}

.shop-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 24px;
}

@media (min-width: 1024px) {
    .shop-footer__brand {
        border-bottom: 0;
        border-left: 4px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 0;
        padding-left: 32px;
    }
}

.shop-footer__brand img {
    max-width: 200px;
    height: auto;
}

.shop-footer__brand p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #f3f4f6;
    text-align: justify;
}

.shop-footer__copyright--desktop {
    display: none;
    font-size: 14px;
    font-weight: 700;
    color: #cecece;
}

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

.shop-footer__copyright--desktop a {
    color: #cecece;
}

.shop-footer__copyright--desktop a:hover {
    color: #fff;
    text-decoration: underline;
}

.shop-footer__col h2 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
}

.shop-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-footer__col a {
    color: #fff;
    text-decoration: none;
}

.shop-footer__col a:hover {
    text-decoration: underline;
}

.shop-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.shop-footer__copyright--mobile {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #cecece;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .shop-footer__copyright--mobile {
        display: none;
    }
}

/* ── Customers logos strip ── */
.shop-customers {
    position: relative;
    margin-top: 0;
}

.shop-customers--light {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    overflow: hidden;
}

.shop-customers--light .shop-customers__track {
    background: transparent;
}

.shop-customers__bg {
    position: absolute;
    inset: 0;
    background: #005da9;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
}

.shop-customers__bg img {
    position: absolute;
    top: -33%;
    left: 0;
    width: 100%;
    max-height: 246px;
    object-fit: cover;
    opacity: 0.35;
    display: none;
}

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

.shop-customers__track {
    position: relative;
    z-index: 1;
    height: 100px;
    overflow: hidden;
    padding-block: 20px;
}

.shop-customers .wrapper {
    margin-inline: auto;
}

.shop-customers__logo {
    width: auto;
    max-width: 120px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

/* ── Hero ── */
.shop-hero {
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

@media (min-width: 768px) {
    .shop-hero {
        min-height: 260px;
        max-height: 320px;
    }
}

@media (min-width: 1024px) {
    .shop-hero {
        min-height: 280px;
        max-height: 320px;
    }
}

.shop-hero__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .shop-hero__img {
        height: 100%;
        min-height: inherit;
        max-height: 320px;
        object-fit: cover;
    }
}

/* ── Membership steps ── */
.shop-membership-section {
    margin-top: 24px;
}

.shop-membership-section__title {
    margin-bottom: 56px;
}

.shop-membership-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px 20px;
    width: 100%;
    margin-inline: auto;
    padding-top: 8px;
}

@media (min-width: 640px) {
    .shop-membership-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.shop-membership-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 272px;
    padding: 96px 24px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #e2e2e2;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-membership-step:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.shop-membership-step__icon-wrap {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: #005da9;
    box-shadow: 0 8px 24px rgba(0, 93, 169, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.shop-membership-step__icon {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-membership-step__icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.shop-membership-step__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    transition: color 0.3s ease;
}

.shop-membership-step:hover .shop-membership-step__title {
    color: #005da9;
}

@media (min-width: 1024px) {
    .shop-membership-step__title {
        font-size: 20px;
    }
}

.shop-membership-step__desc {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    line-height: 1.7;
    text-align: justify;
}

.shop-membership-section__diagram {
    display: block;
    width: 100%;
    max-width: 1260px;
    margin: 48px auto 0;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
}

@media (min-width: 1024px) {
    .shop-membership-section__diagram {
        margin-top: 64px;
    }
}

.shop-membership-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

@media (min-width: 1024px) {
    .shop-membership-section__cta {
        margin-top: 80px;
    }
}

.shop-membership-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #005da9;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-membership-section__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 93, 169, 0.35);
}

.bg-primary {
    background-color: #ffffff;
}

.bg-btn {
    background-color: #005da9;
}

.bg-tertiary {
    background-color: #008cff;
}

.text-text {
    color: #005da9;
}

.text-muted {
    color: #707070;
}

.text-tertiary {
    color: #008cff;
}

.border-border {
    border-color: #e2e2e2;
}

.border-text {
    border-color: #005da9;
}

.btn-primary {
    background-color: #008cff;
    color: #fff;
}

.bg-gradient-primary {
    background: linear-gradient(220deg, #fff 1.15%, rgba(255, 255, 255, 0) 98.44%);
}

.wrapper {
    margin-inline: auto;
    height: 100px;
    position: relative;
    overflow: hidden;
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}

.itemLeft {
    width: 200px;
    height: 100px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation: scrollLeft 30s linear infinite;
}

.item1 { animation-delay: calc(30s / 8 * (8 - 1) * -1); }
.item2 { animation-delay: calc(30s / 8 * (8 - 2) * -1); }
.item3 { animation-delay: calc(30s / 8 * (8 - 3) * -1); }
.item4 { animation-delay: calc(30s / 8 * (8 - 4) * -1); }
.item5 { animation-delay: calc(30s / 8 * (8 - 5) * -1); }
.item6 { animation-delay: calc(30s / 8 * (8 - 6) * -1); }
.item7 { animation-delay: calc(30s / 8 * (8 - 7) * -1); }
.item8 { animation-delay: calc(30s / 8 * (8 - 8) * -1); }

.shop-modal[hidden] {
    display: none !important;
}

.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.shop-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.shop-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.shop-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.shop-modal__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #005da9;
}

.shop-modal__close {
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #707070;
}

.shop-modal__body {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: justify;
}

.shop-acceptors-swiper .swiper-slide,
.shop-services-swiper .swiper-slide {
    width: auto;
    height: auto;
}

.shop-receivers-swiper .swiper-slide {
    width: 100% !important;
    max-width: none;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ── Shared section title ── */
.shop-section-title {
    margin: 0 0 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #005da9;
}

.shop-section-title--right {
    text-align: right;
}

@media (min-width: 1024px) {
    .shop-section-title {
        font-size: 1.5rem;
    }
}

/* ── Acceptor discounts carousel ── */
.shop-acceptors-section {
    /* width handled by shop-site-shell */
}

.shop-acceptors-swiper {
    overflow: hidden;
    padding-bottom: 8px;
}

.shop-acceptors-swiper .swiper-wrapper {
    align-items: stretch;
}

.shop-acceptors-slide {
    width: 45% !important;
    max-width: 280px;
    height: auto;
}

@media (min-width: 1024px) {
    .shop-acceptors-slide {
        width: 220px !important;
    }
}

.shop-acceptor-card {
    display: flex;
    flex-direction: column;
    height: 160px;
    max-width: 280px;
    background: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
    .shop-acceptor-card {
        height: 250px;
    }
}

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

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

@media (min-width: 1024px) {
    .shop-acceptor-card__banner {
        height: 120px;
    }
}

.shop-acceptor-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ce3f2d;
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    border-radius: 999px;
    padding: 2px 6px;
}

@media (min-width: 1024px) {
    .shop-acceptor-card__badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

.shop-acceptor-card__logo {
    position: absolute;
    top: 48px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .shop-acceptor-card__logo {
        top: 80px;
        width: 55px;
        height: 55px;
    }
}

.shop-acceptor-card__logo--framed {
    background: #fff;
    padding: 4px;
    border: 1px solid #e2e2e2;
}

.shop-acceptor-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 12px 12px;
    text-align: right;
}

@media (min-width: 1024px) {
    .shop-acceptor-card__body {
        padding: 12px 16px 16px;
    }
}

.shop-acceptor-card__title {
    margin: 20px 0 0;
    font-size: 10px;
    font-weight: 700;
    color: #005da9;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .shop-acceptor-card__title {
        margin-top: 24px;
        font-size: 14px;
    }
}

.shop-acceptor-card__link {
    align-self: flex-end;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 12px;
    color: #008cff;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

.shop-acceptor-card__link:hover {
    color: #005da9;
}

/* ── Academic services carousel ── */
.shop-services-section {
    /* width handled by shop-site-shell */
}

.shop-services-swiper {
    overflow: hidden;
}

.shop-services-swiper .swiper-wrapper {
    align-items: stretch;
}

.shop-services-slide {
    width: 50% !important;
    max-width: 276px;
}

@media (min-width: 1024px) {
    .shop-services-slide {
        width: 276px !important;
    }
}

.shop-service-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    text-align: center;
}

.shop-service-card__img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    filter: saturate(0.85);
    transition: filter 0.3s ease, transform 0.3s ease;
}

@media (min-width: 1024px) {
    .shop-service-card__img {
        height: 220px;
        filter: saturate(0.8);
    }

    .shop-service-card:hover .shop-service-card__img {
        filter: saturate(1);
        transform: scale(1.02);
    }
}

.shop-service-card__label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    min-width: 100px;
    max-width: calc(100% - 32px);
    min-height: 72px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #005da9;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 4px 16px rgba(11, 44, 110, 0.08);
    z-index: 2;
}

.shop-services-section__mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.shop-services-section__mobile-btn {
    display: inline-block;
    background: #005da9;
    color: #fff;
    font-weight: 800;
    padding: 10px 32px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .shop-services-section__mobile-cta {
        display: none;
    }
}

/* ── Club receivers section ── */
.shop-receivers-section {
    /* width handled by shop-site-shell */
}

.shop-receivers-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

@media (min-width: 1024px) {
    .shop-receivers-section__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
        gap: 56px;
        align-items: center;
    }
}

.shop-receivers-section__intro {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    line-height: 2;
    text-align: justify;
}

@media (min-width: 1024px) {
    .shop-receivers-section__intro {
        font-size: 16px;
    }
}

.shop-receivers-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

@media (min-width: 1024px) {
    .shop-receivers-benefits {
        gap: 20px 48px;
    }
}

.shop-receivers-benefits__item {
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 16px;
    min-height: 120px;
}

.shop-receivers-benefits__title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 500;
    color: #005da9;
    line-height: 1.4;
    text-align: right;
}

@media (min-width: 1024px) {
    .shop-receivers-benefits__title {
        font-size: 16px;
    }
}

.shop-receivers-benefits__desc {
    margin: 0;
    font-size: 11px;
    color: #3c3d45;
    line-height: 1.6;
    text-align: right;
}

@media (min-width: 1024px) {
    .shop-receivers-benefits__desc {
        font-size: 14px;
    }
}

.shop-receivers-section__carousel-wrap {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    overflow: hidden;
}

@media (min-width: 768px) {
    .shop-receivers-section__carousel-wrap {
        max-width: 400px;
    }
}

.shop-receivers-swiper {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #222;
    border-radius: 24px;
    padding: 16px;
}

.shop-receivers-slide {
    width: 100% !important;
    max-width: none;
}

.shop-receivers-slide__frame {
    width: 100%;
    max-width: none;
    height: 268px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

@media (min-width: 768px) {
    .shop-receivers-slide__frame {
        height: 368px;
    }
}

.shop-receivers-slide__frame--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707070;
    font-size: 14px;
    padding: 16px;
    text-align: center;
}

.shop-receivers-slide__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
}

/* ── News & Announcements ── */
.shop-news-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 8px;
}

@media (min-width: 1024px) {
    .shop-news-section {
        grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
        gap: 24px;
    }
}

.shop-news-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.shop-news-section__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #005da9;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .shop-news-section__title {
        font-size: 22px;
    }
}

.shop-news-section__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #005da9;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.shop-news-section__more:hover {
    opacity: 0.85;
}

.shop-news-panel {
    background: linear-gradient(220deg, #fff 1.15%, rgba(255, 255, 255, 0) 98.44%);
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding-block: 24px;
    padding-inline: 0;
}

@media (min-width: 1024px) {
    .shop-news-panel {
        padding-block: 32px;
    }
}

.shop-news-panel__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 1024px) {
    .shop-news-panel__grid {
        flex-direction: row;
        align-items: stretch;
    }
}

.shop-news-featured {
    position: relative;
    width: 100%;
    max-width: none;
    flex: 1 1 320px;
    min-width: 0;
}

.shop-news-featured__img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 380px;
    object-fit: contain;
    object-position: center;
    background: #eef2f7;
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .shop-news-featured__img {
        min-height: 300px;
        max-height: 400px;
    }
}

.shop-news-featured__meta {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-news-featured__date {
    flex: 0 0 64px;
    width: 64px;
    min-width: 64px;
    height: 64px;
    padding: 8px;
    background: #008cff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

.shop-news-featured__title {
    flex: 1;
    min-width: 0;
    height: 64px;
    padding: 4px 8px;
    background: #fff;
    color: #111;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    align-content: center;
}

.shop-news-list {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shop-news-list__item {
    display: grid;
    grid-template-columns: 64px 80px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 103px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
}

.shop-news-list__thumb-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-news-list__thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.shop-news-list__date {
    width: 64px;
    height: 64px;
    padding: 4px;
    background: #008cff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

.shop-news-list__body {
    min-width: 0;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding-inline: 4px 8px;
}

.shop-news-list__title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-news-list__link {
    align-self: flex-start;
    font-size: 12px;
    color: #707070;
    text-decoration: underline;
    font-weight: 500;
}

.shop-news-list__link:hover {
    color: #005da9;
}

.shop-notices {
    position: relative;
}

.shop-notices__scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 425px;
    overflow-y: auto;
    padding-inline-end: 8px;
    scrollbar-width: thin;
}

.shop-notices__card {
    background: linear-gradient(220deg, #fff 1.15%, rgba(255, 255, 255, 0) 98.44%);
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 20px 16px;
}

.shop-notices__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.shop-notices__card-title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.shop-notices__card-title a {
    color: #008cff;
    text-decoration: none;
}

.shop-notices__card-title a:hover {
    color: #005da9;
    text-decoration: underline;
}

.shop-notices__card-date {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: #707070;
}

@media (min-width: 1024px) {
    .shop-notices__card-date {
        font-size: 12px;
    }
}

.shop-notices__card-desc {
    margin: 16px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #707070;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-notices__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to top, #f8f8f8 30%, transparent);
    pointer-events: none;
}

.shop-news-empty {
    padding: 24px;
    text-align: center;
    color: #707070;
    font-size: 14px;
    background: #fff;
    border: 1px dashed #e2e2e2;
    border-radius: 12px;
}

.shop-news-deco {
    display: none;
}

@media (max-width: 767px) {
    .shop-news-list__item {
        grid-template-columns: 56px 72px minmax(0, 1fr);
        gap: 10px;
        min-height: 96px;
    }

    .shop-news-list__date {
        width: 56px;
        height: 56px;
        font-size: 9px;
    }

    .shop-news-list__thumb {
        width: 72px;
        height: 72px;
    }
}

/* ── Club / membership benefits ── */
.shop-club-section {
    margin-top: 8px;
}

.shop-club-section__title {
    margin: 0 0 32px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .shop-club-section__title {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

.shop-club-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

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

.shop-club-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    border: 2px solid #e8edf3;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    transition: border-color 0.2s ease;
}

.shop-club-card:hover {
    border-color: #005da9;
}

.shop-club-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.shop-club-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .shop-club-card__icon {
        width: 64px;
        height: 64px;
    }
}

.shop-club-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .shop-club-card__title {
        font-size: 18px;
    }
}

.shop-club-card__text {
    margin: 0;
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Inner pages (announcements, etc.) ── */
.shop-page-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8edf3;
}

.shop-page-head__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6f7b8f;
}

.shop-page-head__breadcrumb a {
    color: #005da9;
    text-decoration: none;
}

.shop-page-head__breadcrumb a:hover {
    text-decoration: underline;
}

.shop-page-head__breadcrumb span[aria-current="page"] {
    color: #334155;
    font-weight: 600;
}

.shop-page-head__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: #005da9;
    line-height: 1.4;
}

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

.shop-page-head__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #5a6478;
}

.shop-page-head__meta {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6f7b8f;
}

.shop-announcements-page {
    padding-block: 24px 48px;
}

.shop-announcements-list {
    display: grid;
    gap: 16px;
}

.shop-announcement-card {
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
}

.shop-announcement-card__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .shop-announcement-card__head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
    }
}

.shop-announcement-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.shop-announcement-card__title a {
    color: #102a56;
    text-decoration: none;
}

.shop-announcement-card__title a:hover {
    color: #005da9;
}

.shop-announcement-card__date {
    flex-shrink: 0;
    font-size: 13px;
    color: #6f7b8f;
    white-space: nowrap;
}

.shop-announcement-card__excerpt {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
}

.shop-announcement-card__footer {
    display: flex;
    justify-content: flex-end;
}

.shop-announcement-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: #005da9;
    text-decoration: none;
}

.shop-announcement-card__link:hover {
    text-decoration: underline;
}

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

.shop-announcement-detail {
    padding: 24px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
}

.shop-announcement-detail__body {
    font-size: 15px;
    line-height: 2;
    color: #334155;
    text-align: justify;
    white-space: pre-wrap;
}

.shop-announcement-detail__actions {
    margin-top: 24px;
}

.shop-announcement-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: #005da9;
    text-decoration: none;
}

.shop-announcement-detail__back:hover {
    text-decoration: underline;
}

.shop-news-page {
    padding-block: clamp(24px, 4vw, 48px);
}

.shop-news-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 24px;
}

.shop-news-page__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 93, 169, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.shop-news-page__card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.shop-news-page__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.shop-news-page__card:hover .shop-news-page__card-media img {
    transform: scale(1.03);
}

.shop-news-page__card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px 20px;
    flex: 1;
}

.shop-news-page__card-date {
    font-size: 13px;
    color: #64748b;
}

.shop-news-page__card-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #0f172a;
}

.shop-news-page__card-title a {
    color: inherit;
    text-decoration: none;
}

.shop-news-page__card-title a:hover {
    color: #005da9;
}

.shop-news-page__card-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}

.shop-news-page__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #005da9;
    text-decoration: none;
}

.shop-news-page__card-link:hover {
    text-decoration: underline;
}

.shop-news-page__empty {
    grid-column: 1 / -1;
}

.shop-news-page__pagination {
    margin-top: 32px;
}

.shop-news-page__featured {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 93, 169, 0.12);
}

.shop-news-page__featured img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.shop-news-page--detail .shop-news-page__detail {
    margin-top: 0;
}

.shop-about-page {
    padding-block: clamp(24px, 4vw, 48px);
}

.shop-about-page__video {
    margin-bottom: 32px;
}

.shop-about-page__video-inner {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 93, 169, 0.12);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.shop-about-page__content {
    margin-bottom: 28px;
}

.shop-about-page__heading {
    margin: 0 0 14px;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.5;
    color: #0f172a;
}

.shop-about-page__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    text-align: justify;
}

@media (prefers-reduced-motion: reduce) {
    .itemLeft {
        animation: none;
    }
}
