@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;500;600;700;800&display=swap');

:root {
    --store-primary: #7047eb;
    --store-primary-dark: #5932d5;
    --store-primary-soft: #f5f2ff;
    --store-ink: #25222b;
    --store-muted: #77727f;
    --store-line: #ece9f1;
    --store-surface: #ffffff;
    --store-footer: #f7f5ff;
    --primary-color: var(--store-primary);
    --primary-dark: var(--store-primary-dark);
    --primary-light: #8b68f3;
    --secondary-color: var(--store-primary);
    --accent-color: #ffb225;
    --action-color: #ffb225;
    --dark-color: var(--store-ink);
    --light-color: #faf9fc;
    --background-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--store-primary), #8b61f3);
    --gradient-dark: linear-gradient(135deg, #2d2147, #17121f);
    --shadow-sm: 0 4px 14px rgba(35, 25, 58, .08);
    --shadow-md: 0 10px 28px rgba(35, 25, 58, .12);
    --shadow-lg: 0 18px 45px rgba(35, 25, 58, .16);
    --border-radius: 16px;
    --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 320px;
    color: var(--store-ink);
    background: #fff;
    font-family: "Noto Kufi Arabic", "AvenirNextWorld", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.store-menu-open { overflow: hidden; }

a { color: inherit; }

img { max-width: 100%; }

.store-shell {
    width: min(100% - 32px, 1410px);
    margin-inline: auto;
}

.store-main { min-height: 45vh; }

.store-preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgba(112, 71, 235, .14), transparent 28%),
        radial-gradient(circle at 50% 50%, #fff 0%, #fbf9ff 55%, #f0ebff 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
}

.store-preloader.is-hidden { opacity: 0; visibility: hidden; }

.store-preloader::before,
.store-preloader::after {
    content: "";
    position: absolute;
    width: min(70vw, 760px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(112, 71, 235, .08);
    animation: store-preloader-breathe 2.7s ease-in-out infinite;
}

.store-preloader::after {
    width: min(88vw, 980px);
    border-color: rgba(112, 71, 235, .045);
    animation-delay: -.9s;
}

.store-preloader-stage {
    position: relative;
    width: 390px;
    height: 430px;
    display: grid;
    place-items: center;
}

.store-preloader-mark {
    position: relative;
    z-index: 3;
    width: 286px;
    height: 286px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    box-shadow:
        0 34px 90px rgba(72, 43, 142, .22),
        inset 0 0 48px rgba(112, 71, 235, .07);
    backdrop-filter: blur(18px);
    animation: store-preloader-float 2.25s ease-in-out infinite;
}

.store-preloader-mark::before,
.store-preloader-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    inset: -17px;
    border: 3px dashed rgba(112, 71, 235, .36);
    filter: drop-shadow(0 0 10px rgba(112, 71, 235, .22));
    animation: store-spin 7s linear infinite;
}

.store-preloader-mark::after {
    inset: 13px;
    border-width: 4px;
    border-style: solid;
    border-color: transparent var(--store-primary) transparent var(--store-primary);
    filter: drop-shadow(0 0 12px rgba(112, 71, 235, .45));
    animation-duration: 1.8s;
    animation-direction: reverse;
}

.store-preloader-mark img {
    position: relative;
    z-index: 2;
    width: 224px;
    max-height: 120px;
    object-fit: contain;
    animation: store-preloader-logo 1.65s ease-in-out infinite;
}

.store-preloader-mark > i {
    position: relative;
    z-index: 2;
    font-size: 92px;
}

.store-preloader-orbit {
    position: absolute;
    z-index: 2;
    width: 344px;
    height: 344px;
    border: 1px solid rgba(112, 71, 235, .2);
    border-radius: 50%;
    animation: store-spin 4.7s linear infinite;
}

.store-preloader-orbit::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 62px;
    width: 17px;
    height: 17px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--store-primary);
    box-shadow: 0 0 0 7px rgba(112, 71, 235, .12), 0 0 25px rgba(112, 71, 235, .65);
}

.store-preloader-orbit-two {
    width: 372px;
    height: 372px;
    border-style: dashed;
    border-color: rgba(112, 71, 235, .12);
    animation-duration: 9s;
    animation-direction: reverse;
}

.store-preloader-orbit-two::after {
    top: auto;
    right: 40px;
    bottom: 55px;
    left: auto;
    width: 11px;
    height: 11px;
    border-width: 3px;
    background: #13c8dd;
    box-shadow: 0 0 0 6px rgba(19, 200, 221, .12), 0 0 22px rgba(19, 200, 221, .6);
}

.store-preloader-caption {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    text-align: center;
}

.store-preloader-caption strong {
    color: var(--store-ink);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .2px;
}

.store-preloader-caption span {
    margin-top: 5px;
    color: var(--store-muted);
    font-size: 12px;
}

@keyframes store-spin { to { transform: rotate(360deg); } }

@keyframes store-preloader-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.018); }
}

@keyframes store-preloader-logo {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 8px 14px rgba(29, 20, 66, .12)); }
    50% { transform: scale(1.045); filter: drop-shadow(0 13px 22px rgba(112, 71, 235, .3)); }
}

@keyframes store-preloader-breathe {
    0%, 100% { transform: scale(.94); opacity: .35; }
    50% { transform: scale(1.05); opacity: 1; }
}

.store-topbar {
    height: 42px;
    color: #fff;
    background: var(--store-primary);
    font-size: 12px;
}

.store-topbar .store-shell {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.store-topbar-contact,
.store-topbar-actions { display: flex; align-items: center; gap: 18px; }

.store-topbar-selectors { display: flex; align-items: center; gap: 8px; }

.store-topbar a { text-decoration: none; }
.store-topbar a:hover { color: #fff; opacity: .85; }

.store-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 2px 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-family: inherit;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease;
}

.store-lang-pill:hover,
.store-lang-pill[aria-expanded="true"] { color: #fff; border-color: #fff; background: rgba(255, 255, 255, .17); }

.store-lang-pill.dropdown-toggle::after { margin-inline-start: 2px; }
.store-currency-pill { min-width: 72px; justify-content: center; }

.store-topbar-menu {
    z-index: 1100;
    min-width: 220px;
    margin-top: 7px !important;
    padding: 7px;
    border: 1px solid var(--store-line);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 12px;
}

.store-topbar-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 39px;
    padding: 6px 10px;
    border-radius: 8px;
}

.store-topbar-menu .dropdown-item.active,
.store-topbar-menu .dropdown-item:active { color: #fff; background: var(--store-primary); }

[dir="rtl"] .store-topbar-menu { direction: rtl; text-align: right; }

.store-main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    height: 66px;
    background: #fff;
    border-bottom: 1px solid rgba(31, 24, 48, .07);
    box-shadow: 0 2px 10px rgba(35, 25, 58, .035);
}

.store-header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 26px;
}

.store-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--store-ink);
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
}

.store-brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 184px;
    object-fit: contain;
}

.store-desktop-nav {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 2px;
    height: 100%;
}

.store-nav-item { position: relative; display: flex; align-items: center; }

.store-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    padding: 0 12px;
    color: #39343f;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.store-nav-link::after {
    content: "";
    position: absolute;
    inset-inline: 12px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--store-primary);
    transform: scaleX(0);
    transition: transform .22s ease;
}

.store-nav-link:hover,
.store-nav-link.active { color: var(--store-primary); }
.store-nav-link:hover::after,
.store-nav-link.active::after { transform: scaleX(1); }

.store-nav-item:hover .store-mega,
.store-nav-item:focus-within .store-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-mega {
    position: absolute;
    z-index: 1050;
    top: calc(100% - 1px);
    inset-inline-start: 0;
    width: 480px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 16px;
    background: #fff;
    border: 1px solid var(--store-line);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.store-mega a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 8px 9px;
    border-radius: 9px;
    color: #413b49;
    text-decoration: none;
    font-size: 12px;
}

.store-mega a:hover { color: var(--store-primary); background: var(--store-primary-soft); }

.store-mega img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 8px;
    object-fit: cover;
}

.store-mega span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.store-mega-all {
    grid-column: 1 / -1;
    justify-content: center;
    color: var(--store-primary) !important;
    font-weight: 700;
}

.store-header-tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-icon-button,
.store-menu-button {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--store-ink);
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
}

.store-icon-button:hover { color: var(--store-primary); background: var(--store-primary-soft); }

.store-login-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 11px;
    color: var(--store-ink);
    text-decoration: none;
    font-weight: 600;
}

.store-login-link:hover { color: var(--store-primary); }

.store-wallet-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--store-primary);
    text-decoration: none;
    font-weight: 700;
}

.store-search-panel {
    position: fixed;
    z-index: 1029;
    top: 108px;
    inset-inline: 0;
    padding: 16px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--store-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.store-search-panel.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

.store-search-form {
    width: min(100%, 720px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-search-form input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #ded9e8;
    border-radius: 12px;
    outline: none;
}

.store-search-form input:focus { border-color: var(--store-primary); box-shadow: 0 0 0 3px rgba(112, 71, 235, .12); }

.store-search-form button {
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--store-primary);
    font-weight: 700;
}

.store-menu-button { display: none; color: #fff; font-size: 26px; }

.store-mobile-drawer,
.store-mobile-backdrop { display: none; }

.store-flashes { padding-top: 14px; }

.btn-primary {
    --bs-btn-bg: var(--store-primary);
    --bs-btn-border-color: var(--store-primary);
    --bs-btn-hover-bg: var(--store-primary-dark);
    --bs-btn-hover-border-color: var(--store-primary-dark);
    --bs-btn-active-bg: var(--store-primary-dark);
    --bs-btn-active-border-color: var(--store-primary-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--store-primary);
    --bs-btn-border-color: var(--store-primary);
    --bs-btn-hover-bg: var(--store-primary);
    --bs-btn-hover-border-color: var(--store-primary);
}

.store-hero {
    position: relative;
    overflow: hidden;
    min-height: 584px;
    color: #fff;
    background: #1c1823;
}

.store-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(360px, 40%);
    direction: ltr;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
}

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

.store-hero-media {
    position: relative;
    overflow: hidden;
    background: #111;
}

.store-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 48%, rgba(28, 24, 35, .82) 100%);
}

.store-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.store-hero-slide.is-active .store-hero-media img { transform: scale(1); }

.store-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 58px clamp(30px, 5vw, 90px) 86px 38px;
    background: linear-gradient(120deg, #27212e 0%, #1c1823 72%);
    direction: rtl;
    text-align: right;
}

[dir="ltr"] .store-hero-copy { direction: ltr; text-align: left; }

.store-hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 3px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 700;
}

.store-hero-title {
    max-width: 620px;
    margin: 0 0 16px;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.35;
    font-weight: 800;
}

.store-hero-description {
    max-width: 590px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    line-height: 1.9;
}

.store-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    color: #fff;
    background: var(--store-primary);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(112, 71, 235, .32);
    transition: transform .22s ease, background .22s ease;
}

.store-hero-button:hover { color: #fff; background: #815cf0; transform: translateY(-2px); }

.store-hero-dots {
    position: absolute;
    z-index: 4;
    bottom: 20px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.store-hero-dot {
    width: 38px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, .3);
    transition: var(--transition);
}

.store-hero-dot.is-active { background: #fff; }

.store-section { padding: 58px 0; }
.store-section.store-section-tint { background: #f8f7fd; }

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

.store-section-title { margin: 0 0 4px; font-size: 25px; line-height: 1.45; font-weight: 800; }
.store-section-subtitle { margin: 0; color: var(--store-muted); }

.store-section-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--store-primary);
    text-decoration: none;
    font-weight: 700;
}

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

.store-product-card {
    position: relative;
    min-width: 0;
    display: block;
    overflow: hidden;
    color: var(--store-ink);
    background: #fff;
    border: 1px solid var(--store-line);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(35, 25, 58, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.store-product-card:hover {
    color: var(--store-ink);
    border-color: rgba(112, 71, 235, .4);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.store-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1eff5;
}

.store-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.store-product-card:hover .store-product-image img { transform: scale(1.045); }

.store-product-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--store-primary);
    background: linear-gradient(135deg, #f4f0ff, #e7defd);
    font-size: 48px;
}

.store-product-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    inset-inline-end: 10px;
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 7px;
    color: #fff;
    background: rgba(37, 34, 43, .78);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
}

.store-product-body { padding: 13px 13px 15px; }

.store-product-title {
    min-height: 3.25em;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 700;
}

.store-product-meta {
    min-height: 22px;
    margin-top: 6px;
    color: var(--store-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
}

.store-product-price {
    margin-top: 8px;
    color: var(--store-primary);
    font-size: 15px;
    font-weight: 800;
}

.store-trust {
    padding: 34px 0;
    background: var(--store-primary);
    color: #fff;
}

.store-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

.store-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 0;
}

.store-trust-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 8px 18px rgba(48, 24, 122, .18);
}

.store-trust-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    vertical-align: 0;
}

.store-trust-icon i::before { transform: translateY(1px); }

.store-trust-item strong { display: block; font-size: 16px; line-height: 1.35; }
.store-trust-item span { display: block; margin-top: 3px; color: rgba(255, 255, 255, .78); font-size: 12px; line-height: 1.45; }

.store-catalog-page { padding: 38px 0 72px; }

.store-page-heading { margin-bottom: 26px; }
.store-page-heading h1 { margin: 0 0 7px; font-size: 28px; font-weight: 800; }
.store-page-heading p { margin: 0; color: var(--store-muted); }

.store-catalog-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.store-catalog-head img {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.store-catalog-head h1 { margin: 0 0 3px; font-size: 25px; font-weight: 800; }
.store-catalog-head p { margin: 0; color: var(--store-muted); }

.store-region-switcher { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 22px; }
.store-region-switcher a { padding: 7px 13px; border: 1px solid #ded9e8; border-radius: 999px; color: var(--store-ink); background: #fff; text-decoration: none; font-size: 12px; }
.store-region-switcher a.active { color: #fff; border-color: var(--store-primary); background: var(--store-primary); }

.store-filter-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.store-filter-panel {
    position: sticky;
    top: 92px;
    padding: 20px;
    border: 1px solid var(--store-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.store-filter-panel h2 { margin: 0 0 18px; font-size: 18px; font-weight: 800; }

.store-filter-field { margin-bottom: 15px; }
.store-filter-field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 700; }

.store-filter-field .form-control,
.store-filter-field .form-select {
    min-height: 48px;
    border-color: #e5e1ec;
    border-radius: 12px;
    font-size: 12px;
}

.store-results-bar {
    min-height: 50px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.store-results-count { font-size: 15px; font-weight: 800; }

.store-mobile-filter-button { display: none; }

.store-catalog-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.store-pagination { margin-top: 28px; }
.store-pagination .pagination { justify-content: center; gap: 5px; }
.store-pagination .page-link { border-radius: 9px !important; color: var(--store-primary); border-color: var(--store-line); }
.store-pagination .active > .page-link { color: #fff; background: var(--store-primary); border-color: var(--store-primary); }

.store-offer-list { display: grid; gap: 10px; }

.store-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
    padding: 14px 18px;
    border: 1px solid var(--store-line);
    border-radius: 14px;
    color: var(--store-ink);
    background: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.store-offer-row:hover { color: var(--store-ink); border-color: var(--store-primary); transform: translateY(-2px); }
.store-offer-name { font-weight: 700; }
.store-offer-action { color: var(--store-muted); font-size: 11px; }
.store-offer-price { flex: 0 0 auto; color: var(--store-primary); font-size: 16px; font-weight: 800; }

/* One-page game top-up: offers first, then player details and payment. */
.game-topup-head { align-items: center; }
.game-topup-eyebrow { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; color: #087f5b; font-size: 12px; font-weight: 800; }
.game-topup-steps { display: flex; align-items: center; justify-content: center; margin: 26px 0 30px; color: #94a3b8; font-size: 12px; font-weight: 700; }
.game-topup-steps span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.game-topup-steps b { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #e8e5f1; color: #64748b; }
.game-topup-steps .active { color: var(--store-primary); }
.game-topup-steps .active b { color: #fff; background: var(--store-primary); box-shadow: 0 4px 12px rgba(112, 71, 235, .28); }
.game-topup-steps i { width: min(9vw, 80px); height: 1px; margin: 0 10px; background: #e5e7eb; }
.game-offers-section { padding: 24px; background: #fff; border: 1px solid #e9e6f3; border-radius: 22px; box-shadow: 0 10px 30px rgba(35,25,58,.05); }
.game-offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.game-offer-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; min-height: 122px; padding: 18px; text-align: start; border: 2px solid #ebe8f2; border-radius: 16px; background: #fff; color: var(--store-ink); cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.game-offer-card:hover { border-color: #cbbdf6; box-shadow: 0 8px 22px rgba(112,71,235,.09); transform: translateY(-2px); }
.game-offer-card.is-selected { border-color: var(--store-primary); background: linear-gradient(145deg,#f8f5ff,#fff); box-shadow: 0 8px 24px rgba(112,71,235,.16); }
.game-offer-name { max-width: calc(100% - 28px); font-size: 14px; font-weight: 800; line-height: 1.45; }
.game-offer-price { margin-top: auto; padding-top: 12px; color: var(--store-primary); font-size: 17px; font-weight: 900; direction: ltr; }
.game-offer-old-price { margin-top: 3px; color: #94a3b8; font-size: 11px; text-decoration: line-through; direction: ltr; }
.game-offer-check { position: absolute; top: 15px; inset-inline-end: 15px; display: inline-grid; place-items: center; width: 23px; height: 23px; border: 2px solid #d8d3e5; border-radius: 50%; color: transparent; }
.game-offer-card.is-selected .game-offer-check { border-color: var(--store-primary); background: var(--store-primary); color: #fff; }
.game-selection-summary { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; padding: 15px 18px; border: 1px solid #d8f1e5; border-radius: 15px; background: #f3fdf8; color: #176b4e; }
.game-selection-summary strong { color: #1e293b; }
.game-selection-summary b { margin-inline-start: auto; color: var(--store-primary); direction: ltr; }
.game-selection-summary button { margin-inline-start: 4px; border: 0; background: transparent; color: var(--store-primary); font-size: 13px; font-weight: 800; text-decoration: underline; cursor: pointer; }
.game-offer-notes { margin-bottom: 20px; padding: 14px 16px; border: 1px solid #fde68a; border-radius: 14px; background: #fffbeb; color: #92400e; }
.game-offer-notes strong { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; font-size: 14px; }
.game-offer-notes p { margin: 0; color: #78350f; font-size: 13px; line-height: 1.7; white-space: pre-line; }

.store-auth-section {
    min-height: calc(100svh - 108px);
    display: grid;
    place-items: center;
    padding: 58px 16px 72px;
    background: linear-gradient(180deg, #f9f8fd, #fff 42%);
}

.store-auth-card {
    width: min(100%, 500px);
    padding: 34px;
    border: 1px solid var(--store-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(35, 25, 58, .1);
}

.store-auth-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--gradient-primary);
    font-size: 27px;
    box-shadow: 0 10px 25px rgba(112, 71, 235, .28);
}

.store-auth-head { margin-bottom: 26px; text-align: center; }
.store-auth-head h1 { margin: 0 0 7px; font-size: 25px; font-weight: 800; }
.store-auth-head p { margin: 0; color: var(--store-muted); }

.store-auth-card .form-floating { margin-bottom: 15px; }

.store-auth-card .form-control {
    min-height: 56px;
    border-color: #e5e1ec;
    border-radius: 12px;
}

.store-auth-card .form-control:focus { border-color: var(--store-primary); box-shadow: 0 0 0 3px rgba(112, 71, 235, .12); }

.store-auth-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--store-primary);
    font-weight: 800;
}

.store-auth-submit:hover { background: var(--store-primary-dark); }
.store-auth-links { margin-top: 20px; text-align: center; }
.store-auth-links a { color: var(--store-primary); text-decoration: none; font-weight: 700; }

.store-payments {
    position: relative;
    overflow: hidden;
    padding: 76px 0 70px;
    background:
        radial-gradient(circle at 12% 12%, rgba(74, 208, 255, .18), transparent 28%),
        radial-gradient(circle at 88% 85%, rgba(112, 71, 235, .19), transparent 31%),
        linear-gradient(180deg, #fbfaff 0%, #f2effc 100%);
    border-top: 1px solid #eee9fb;
}

.store-payments::before,
.store-payments::after {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(112, 71, 235, .12);
    border-radius: 50%;
    pointer-events: none;
}

.store-payments::before { top: -210px; inset-inline-start: -80px; }
.store-payments::after { right: -170px; bottom: -230px; }

.store-payments-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    width: min(100%, 1180px);
    margin: 0 auto 24px;
}

.store-payments-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--store-primary);
    font-size: 13px;
    font-weight: 800;
}

.store-payments-kicker i { font-size: 18px; }

.store-payments-head h2 {
    max-width: 720px;
    margin: 0 0 9px;
    color: var(--store-ink);
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.22;
}

.store-payments-head p {
    max-width: 650px;
    margin: 0;
    color: var(--store-muted);
    font-size: 15px;
}

.store-payments-assurance {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(112, 71, 235, .15);
    border-radius: 999px;
    color: #4d3988;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 28px rgba(70, 45, 132, .08);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.store-payments-assurance i { color: #13b8c6; font-size: 17px; }

.store-payments-media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: min(100%, 1180px);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(51, 33, 101, .15), 0 4px 14px rgba(51, 33, 101, .07);
    transform: translateY(28px) scale(.985);
    opacity: 0;
    transition: opacity .7s ease, transform .8s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
}

.store-payments.is-visible .store-payments-media {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.store-payments-media picture {
    display: block;
}

.store-payments-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.store-payments-media:hover {
    box-shadow: 0 28px 70px rgba(51, 33, 101, .2), 0 6px 18px rgba(51, 33, 101, .09);
}

.store-payments-media:hover img { transform: scale(1.012); }

.store-payments-shine {
    position: absolute;
    z-index: 2;
    top: -45%;
    bottom: -45%;
    left: -32%;
    width: 17%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
    transform: translate3d(0, 0, 0) rotate(18deg);
    animation: store-payment-shine 6.5s ease-in-out infinite 1.1s;
    pointer-events: none;
}

@keyframes store-payment-shine {
    0%, 32% { transform: translate3d(0, 0, 0) rotate(18deg); }
    62%, 100% { transform: translate3d(885%, 0, 0) rotate(18deg); }
}

.store-footer {
    padding: 58px 0 0;
    color: #514b59;
    background: var(--store-footer);
    border-top: 1px solid #eeeaf8;
}

.store-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 42px;
}

.store-footer-brand img { width: auto; height: 48px; max-width: 220px; object-fit: contain; }
.store-footer-brand p { max-width: 420px; margin: 18px 0; color: #746e7b; }
.store-footer h2 { margin: 0 0 17px; color: var(--store-ink); font-size: 16px; font-weight: 800; }
.store-footer ul { margin: 0; padding: 0; list-style: none; }
.store-footer li + li { margin-top: 9px; }
.store-footer a { color: #6a6470; text-decoration: none; }
.store-footer a:hover { color: var(--store-primary); }

.store-footer-social { display: flex; gap: 8px; }
.store-footer-social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); }

.store-footer-bottom {
    margin-top: 44px;
    padding: 17px 0;
    border-top: 1px solid #e7e2f0;
    color: #77717f;
    font-size: 12px;
}

.store-hostazi-link {
    color: var(--store-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-hostazi-link:hover {
    color: var(--store-primary-dark);
    text-decoration: underline;
}

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

@media (max-width: 1199.98px) {
    .store-header-inner { gap: 14px; }
    .store-nav-link { padding-inline: 8px; font-size: 12px; }
    .store-product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .store-catalog-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    body { padding-bottom: 74px; }

    .store-shell { width: min(100% - 24px, 760px); }

    .store-topbar { height: 51px; }
    .store-topbar-contact { display: none; }
    .store-topbar .store-shell { direction: ltr; }
    .store-topbar-actions { width: 100%; justify-content: space-between; }
    .store-menu-button { display: inline-grid; }

    .store-main-header { top: 0; height: 64px; }
    .store-header-inner { justify-content: space-between; direction: rtl; }
    .store-desktop-nav { display: none; }
    .store-brand img { height: 40px; max-width: 160px; }
    .store-header-tools { direction: ltr; }
    .store-header-tools .dropdown,
    .store-wallet-pill { display: none; }
    .store-login-link { padding: 0 5px; font-size: 13px; }

    .store-search-panel { top: 115px; }

    .store-mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1079;
        display: block;
        background: rgba(22, 18, 28, .5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .store-mobile-backdrop.is-open { opacity: 1; visibility: visible; }

    .store-mobile-drawer {
        position: fixed;
        z-index: 1080;
        top: 0;
        bottom: 0;
        right: 0;
        width: min(88vw, 360px);
        display: block;
        overflow-y: auto;
        padding: 20px;
        background: #fff;
        box-shadow: var(--shadow-lg);
        transform: translateX(105%);
        transition: transform .28s ease;
    }

    .store-mobile-drawer.is-open { transform: translateX(0); }

    .store-mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .store-mobile-drawer-head img { width: auto; height: 40px; max-width: 165px; object-fit: contain; }
    .store-mobile-close { width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--store-primary-soft); color: var(--store-primary); font-size: 20px; }

    .store-mobile-account {
        margin: -2px 0 16px;
        overflow: hidden;
        border: 1px solid #e8e2f5;
        border-radius: 17px;
        background: linear-gradient(145deg, #fbfaff, #f3effc);
    }

    .store-mobile-account-profile,
    .store-mobile-wallet,
    .store-mobile-account-actions a,
    .store-mobile-account-actions button {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--store-ink);
        text-decoration: none;
    }

    .store-mobile-account-profile { min-height: 66px; padding: 11px 13px; }
    .store-mobile-account-profile > span { display: grid; gap: 1px; min-width: 0; }
    .store-mobile-account-profile strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .store-mobile-account-profile small { color: var(--store-muted); font-size: 11px; }
    .store-mobile-account-profile > i { margin-inline-start: auto; color: var(--store-primary); font-size: 13px; }

    .store-mobile-wallet {
        min-height: 47px;
        justify-content: space-between;
        padding: 9px 13px;
        border-top: 1px solid #e8e2f5;
        color: var(--store-primary);
        background: rgba(255, 255, 255, .72);
    }

    .store-mobile-wallet > span { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
    .store-mobile-wallet > strong { direction: ltr; color: var(--store-primary); font-size: 13px; }

    .store-mobile-account-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 1px solid #e8e2f5;
        background: #fff;
    }

    .store-mobile-account-actions a,
    .store-mobile-account-actions button {
        min-width: 0;
        min-height: 43px;
        padding: 8px 11px;
        border: 0;
        border-bottom: 1px solid #f0edf7;
        background: transparent;
        font: inherit;
        font-size: 12px;
        font-weight: 600;
        text-align: inherit;
    }

    .store-mobile-account-actions a:nth-child(odd) { border-inline-end: 1px solid #f0edf7; }
    .store-mobile-account-actions a i,
    .store-mobile-account-actions button i { color: var(--store-primary); font-size: 15px; }
    .store-mobile-account-actions .is-admin { color: var(--store-primary); }
    .store-mobile-account-actions form { display: contents; }
    .store-mobile-account-actions button { width: 100%; color: #d84c4c; }
    .store-mobile-account-actions button i { color: currentColor; }

    .store-mobile-links { margin: 0; padding: 0; list-style: none; }
    .store-mobile-links > li { border-bottom: 1px solid var(--store-line); }
    .store-mobile-links a { min-height: 49px; display: flex; align-items: center; gap: 10px; padding: 8px 4px; color: var(--store-ink); text-decoration: none; font-weight: 600; }
    .store-mobile-links a.active { color: var(--store-primary); }
    .store-mobile-links small { margin-inline-start: auto; color: var(--store-muted); }

    .store-mobile-group {
        margin: 10px 0;
        overflow: hidden;
        border: 1px solid #e8e2f5;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 8px 22px rgba(50, 34, 89, .05);
    }

    .store-mobile-links > .store-mobile-group { border-bottom: 1px solid #e8e2f5; }
    .store-mobile-group > ul { margin: 0; padding: 0 12px 8px; list-style: none; }
    .store-mobile-group > ul > li { border-top: 1px solid #f0edf7; }
    .store-mobile-links .store-mobile-group-title {
        min-height: 54px;
        padding-inline: 13px;
        color: var(--store-primary);
        font-weight: 800;
    }

    .store-mobile-group-title > span { display: inline-flex; align-items: center; gap: 10px; }
    .store-mobile-group-title > span i { font-size: 18px; }
    .store-mobile-group-title > i { font-size: 12px; }
    .store-mobile-group > ul a { min-height: 40px; padding: 5px 4px; font-size: 12px; font-weight: 600; }
    .store-mobile-links .store-mobile-group-all { justify-content: center; gap: 6px; color: var(--store-primary); font-size: 11px; font-weight: 800; }

    .store-hero { min-height: 494px; }
    .store-hero-slide { grid-template-columns: 1fr; grid-template-rows: 203px 291px; }
    .store-hero-media::after { background: linear-gradient(180deg, transparent 60%, rgba(28, 24, 35, .9) 100%); }
    .store-hero-copy { justify-content: flex-start; padding: 20px 20px 54px; background: linear-gradient(135deg, #2e2836, #1c1823); }
    .store-hero-kicker { margin-bottom: 9px; }
    .store-hero-title { margin-bottom: 9px; font-size: 29px; }
    .store-hero-description { margin-bottom: 18px; font-size: 13px; line-height: 1.8; }
    .store-hero-button { min-height: 44px; margin-top: auto; align-self: flex-start; }
    .store-hero-dots { bottom: 15px; }
    .store-hero-dot { width: 39px; height: 6px; }

    .store-section { padding: 38px 0; }
    .store-section-head { align-items: flex-start; margin-bottom: 18px; }
    .store-section-title { font-size: 21px; }
    .store-section-subtitle { font-size: 12px; }
    .store-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }

    .store-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

    .store-filter-layout { grid-template-columns: 1fr; gap: 16px; }
    .store-filter-panel { position: static; }
    .store-mobile-filter-button {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 43px;
        padding: 0 16px;
        border: 0;
        border-radius: 999px;
        color: #fff;
        background: var(--store-primary);
        font-weight: 700;
    }

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

    .store-payments { padding: 54px 0 50px; }
    .store-payments-head { align-items: flex-start; }
    .store-payments-head h2 { font-size: 30px; }
    .store-payments-media { border-radius: 23px; }

    .store-mobile-nav {
        position: fixed;
        z-index: 1070;
        bottom: 8px;
        left: 8px;
        right: 8px;
        height: 66px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: center;
        padding: 5px 7px;
        border: 1px solid #ece7f5;
        border-radius: 18px;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(16px);
        box-shadow: 0 8px 26px rgba(35, 25, 58, .18);
    }

    .store-mobile-nav a {
        position: relative;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        color: #775fa8;
        text-decoration: none;
        font-size: 10px;
    }

    .store-mobile-nav i { font-size: 20px; line-height: 1; }

    .store-mobile-nav-home {
        width: 54px;
        height: 54px;
        margin-top: -20px;
        justify-self: center;
        color: #fff !important;
        border: 5px solid #f3effc;
        border-radius: 50%;
        background: var(--store-primary);
        box-shadow: 0 8px 18px rgba(112, 71, 235, .34);
    }

    .store-mobile-nav-home i { font-size: 22px; }
    .store-mobile-nav-home span { display: none; }
}

/*
 * Some Android browsers keep a desktop-sized CSS viewport while still using
 * the mobile navigation breakpoint.  The former 360px cap then leaves most
 * of a phone screen visible beside the open drawer.  At tablet-sized mobile
 * layouts, keep the drawer proportional to the viewport instead.
 */
@media (min-width: 576px) and (max-width: 991.98px) {
    .store-mobile-drawer { width: 88vw; }
}

@media (max-width: 575.98px) {
    body { font-size: 13px; }
    .store-shell { width: calc(100% - 24px); }
    .store-topbar .store-shell { width: calc(100% - 24px); }
    .store-topbar-actions { gap: 8px; }
    .store-topbar-selectors { gap: 6px; }
    .store-lang-pill { min-height: 30px; padding-inline: 8px; font-size: 10px; }
    .store-currency-pill { min-width: 65px; }
    .store-topbar-menu { min-width: 205px; }
    .store-preloader-stage { width: 320px; height: 370px; }
    .store-preloader-mark { width: 232px; height: 232px; }
    .store-preloader-mark::before { inset: -14px; }
    .store-preloader-mark::after { inset: 11px; border-width: 3px; }
    .store-preloader-mark img { width: 184px; max-height: 96px; }
    .store-preloader-mark > i { font-size: 76px; }
    .store-preloader-orbit { width: 278px; height: 278px; }
    .store-preloader-orbit-two { width: 304px; height: 304px; }
    .store-preloader-caption strong { font-size: 21px; }
    .store-preloader-caption span { font-size: 11px; }
    .store-brand img { max-width: 151px; }
    .store-icon-button { width: 36px; }
    .store-section-head { gap: 10px; }
    .store-section-link { font-size: 11px; }
    .store-section-title { font-size: 20px; }
    .store-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .store-catalog-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .store-product-card { border-radius: 15px; }
    .store-product-body { padding: 10px 11px 13px; }
    .store-product-title { min-height: 3.4em; font-size: 12px; }
    .store-product-meta { font-size: 10px; }
    .store-product-price { font-size: 13px; }
    .store-product-badge { top: 8px; inset-inline-end: 8px; }
    .store-empty-catalog { grid-column: 1 / -1; padding: 28px 0; color: var(--store-muted); text-align: center; }
    .store-trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .store-trust { padding: 26px 0; }
    .store-trust-item { justify-content: flex-start; gap: 14px; }
    .store-trust-icon { width: 58px; height: 58px; flex-basis: 58px; }
    .store-trust-icon i { font-size: 27px; }
    .store-catalog-page { padding-top: 26px; }
    .store-page-heading h1 { font-size: 23px; }
    .store-filter-panel { padding: 15px; }
    .store-results-bar { align-items: flex-start; }
    .store-auth-section { padding: 34px 12px 48px; }
    .store-auth-card { padding: 24px 18px; border-radius: 17px; }
    .store-auth-head h1 { font-size: 22px; }
    .store-footer { padding-top: 40px; }
    .store-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .store-footer-bottom { margin-top: 30px; }
    .store-payments { padding: 42px 0 38px; }
    .store-payments-head { display: block; margin-bottom: 20px; }
    .store-payments-kicker { margin-bottom: 10px; font-size: 11px; }
    .store-payments-head h2 { margin-bottom: 7px; font-size: 23px; }
    .store-payments-head p { font-size: 12px; line-height: 1.7; }
    .store-payments-assurance { min-height: 36px; margin-top: 15px; padding-inline: 13px; font-size: 10px; }
    .store-payments-media { border-radius: 17px; box-shadow: 0 20px 45px rgba(51, 33, 101, .17); }
    .store-payments-media img { object-position: center; }
    .store-offer-row { padding: 12px 13px; }
    .store-offer-name { font-size: 12px; }
    .store-offer-price { font-size: 13px; }
    .game-offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .game-offers-section { padding: 16px; border-radius: 18px; }
    .game-offer-card { min-height: 106px; padding: 14px 12px; border-radius: 14px; }
    .game-offer-name { font-size: 12px; }
    .game-offer-price { font-size: 14px; }
    .game-topup-steps { justify-content: flex-start; overflow-x: auto; margin: 20px 0 24px; padding-bottom: 3px; }
    .game-topup-steps i { width: 22px; min-width: 22px; }
    .game-selection-summary { align-items: flex-start; padding: 13px; }
    .game-selection-summary b { width: 100%; margin-inline-start: 0; }
}

/* ==========================================================================
   Antigravity Animated Store Enhancements: Order Status, Alerts & Notifications
   ========================================================================== */

/* Keyframe Animations */
@keyframes statusFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes alertSlideDown {
    from { opacity: 0; transform: translateY(-16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes alertProgressRun {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes shakeAlert {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes checkmarkPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Page Section Background */
.order-status-page-bg {
    background: linear-gradient(180deg, #f4f2fa 0%, #ffffff 100%);
    min-height: 80vh;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Store Flashes (Floating Alerts) */
.store-flashes {
    position: relative;
    z-index: 1050;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.store-flash-toast {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(35, 25, 58, 0.08);
    animation: alertSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid #e5e7eb;
}

.store-flash-toast.alert-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.store-flash-toast.alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.store-flash-toast.alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.store-flash-toast.alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.store-flash-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.store-flash-toast.alert-success .store-flash-icon { color: #10b981; }
.store-flash-toast.alert-danger .store-flash-icon { color: #ef4444; }
.store-flash-toast.alert-warning .store-flash-icon { color: #f59e0b; }
.store-flash-toast.alert-info .store-flash-icon { color: #3b82f6; }

.store-flash-body {
    flex-grow: 1;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.5;
}

.flash-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.12);
    animation: alertProgressRun 6s linear forwards;
}

/* Order Status Card */
.order-status-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 16px 45px rgba(72, 43, 142, 0.09), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9e6f3;
    overflow: hidden;
    padding: 2.5rem 2rem;
}

.order-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.order-status-card.is-completed::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.order-status-card.is-failed::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.order-status-card.is-processing::before {
    background: linear-gradient(90deg, #7047eb, #3b82f6, #7047eb);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Icons */
.status-hero-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.status-hero-icon.processing {
    background: #f0ebff;
    color: var(--store-primary);
    animation: statusFloat 3s ease-in-out infinite;
    box-shadow: 0 0 0 10px rgba(112, 71, 235, 0.08);
}

.status-hero-icon.completed {
    background: #ecfdf5;
    color: #10b981;
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.1);
}

.status-hero-icon.completed i {
    animation: checkmarkPop 0.5s ease forwards;
}

.status-hero-icon.failed {
    background: #fef2f2;
    color: #ef4444;
    animation: shakeAlert 0.5s ease;
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.08);
}

.status-hero-icon i {
    font-size: 2.75rem;
}

/* Timeline Step Bar - HORIZONTAL FIXED */
.order-timeline-container {
    position: relative;
    margin: 2.25rem 0;
    padding: 0 1rem;
}

.order-timeline-flex {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-timeline-line-bg {
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
    border-radius: 4px;
}

.order-timeline-line-fill {
    position: absolute;
    top: 20px;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
    border-radius: 4px;
    transition: width 0.6s ease;
}

[dir="rtl"] .order-timeline-line-fill {
    right: 15%;
    left: auto;
}

[dir="ltr"] .order-timeline-line-fill {
    left: 15%;
    right: auto;
}

.timeline-step-item {
    flex: 1 1 0%;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #94a3b8;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.timeline-step-item.active .timeline-step-circle {
    background: var(--store-primary);
    color: #ffffff;
    border-color: var(--store-primary);
    box-shadow: 0 0 0 5px rgba(112, 71, 235, 0.2);
}

.timeline-step-item.completed .timeline-step-circle {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-step-item.failed .timeline-step-circle {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.timeline-step-text {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.3;
}

.timeline-step-item.active .timeline-step-text,
.timeline-step-item.completed .timeline-step-text {
    color: #1e293b;
    font-weight: 700;
}

/* Order Summary Box */
.order-summary-box {
    background: #f8f7fc;
    border: 1px solid #eaebf5;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    text-align: right;
}

[dir="ltr"] .order-summary-box {
    text-align: left;
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid #e6e4f0;
}

.order-summary-header h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px dashed #e6e4f0;
}

.order-summary-row:last-child {
    border-bottom: none;
}

.order-summary-label {
    color: #64748b;
    font-size: 0.88rem;
}

.order-summary-val {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.92rem;
}

/* Digital Delivery Card */
.delivery-digital-card {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.75rem;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.22);
    text-align: right;
}

[dir="ltr"] .delivery-digital-card {
    text-align: left;
}

.delivery-code-display {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1rem;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    word-break: break-all;
    margin-top: 0.85rem;
    color: #ffffff;
    user-select: all;
}

/* Notifications Page Styling */
.notifications-header-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 12px 30px rgba(112, 71, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.notification-filter-btn {
    border: none;
    background: #f1f5f9;
    color: #64748b;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.notification-filter-btn.active,
.notification-filter-btn:hover {
    background: var(--store-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(112, 71, 235, 0.3);
}

.notification-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(35, 25, 58, 0.05);
    border: 1px solid rgba(236, 233, 241, 0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.notification-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(35, 25, 58, 0.1);
}

.notification-card.unread {
    background: linear-gradient(135deg, #f8f6ff, #ffffff);
    border-inline-start: 4px solid var(--store-primary);
}

.notification-card.unread::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    inset-inline-end: 1.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--store-primary);
    box-shadow: 0 0 8px var(--store-primary);
}

.notification-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.notification-badge-icon.type-order {
    background: rgba(112, 71, 235, 0.12);
    color: var(--store-primary);
}

.notification-badge-icon.type-wallet {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.notification-badge-icon.type-system {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

@media (max-width: 575.98px) {
    .order-status-card { padding: 1.75rem 1.25rem; }
    .status-hero-icon { width: 72px; height: 72px; }
    .status-hero-icon i { font-size: 2.2rem; }
    .timeline-step-circle { width: 36px; height: 36px; font-size: 0.95rem; }
    .timeline-step-text { font-size: 0.75rem; }
    .order-timeline-line-bg,
    .order-timeline-line-fill { top: 18px; left: 18%; right: 18%; }
    .delivery-code-display { font-size: 1.1rem; }
}

/* ==========================================================================
   Checkout & Create Order Page Enhancements
   ========================================================================== */

.checkout-page-wrapper {
    background: linear-gradient(180deg, #f7f5fd 0%, #ffffff 100%);
    min-height: 85vh;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.checkout-hero-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(35, 25, 58, 0.06);
    border: 1px solid #e9e6f3;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.75rem;
    position: relative;
    overflow: hidden;
}

.checkout-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.checkout-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(112, 71, 235, 0.25);
    overflow: hidden;
}

.checkout-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-section-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(35, 25, 58, 0.05);
    border: 1px solid #e9e6f3;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.checkout-section-card:hover {
    box-shadow: 0 14px 40px rgba(35, 25, 58, 0.08);
}

.checkout-step-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0ebf8;
}

.checkout-step-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(112, 71, 235, 0.3);
}

.checkout-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.checkout-input-card {
    background: #fbfafd;
    border: 1px solid #eae7f3;
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.25s ease;
}

.checkout-input-card:focus-within {
    background: #ffffff;
    border-color: var(--store-primary);
    box-shadow: 0 0 0 4px rgba(112, 71, 235, 0.12);
}

.qty-picker-group {
    display: inline-flex;
    align-items: center;
    background: #f1edfb;
    border-radius: 14px;
    padding: 4px;
    border: 1px solid #e2dbf5;
}

.qty-picker-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    color: var(--store-primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-picker-btn:hover:not(:disabled) {
    background: var(--store-primary);
    color: #ffffff;
}

.qty-picker-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-picker-input {
    width: 60px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 800;
    font-size: 1.15rem;
    color: #1e293b;
}

.qty-picker-input:focus {
    outline: none;
}

/* Payment Choice Cards */
.payment-choice-card {
    position: relative;
    cursor: pointer;
    display: block;
    user-select: none;
}

.payment-choice-card .btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.payment-choice-box {
    background: #ffffff;
    border: 2px solid #e9e6f3;
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-choice-card:hover .payment-choice-box {
    border-color: #c9bcf0;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(112, 71, 235, 0.08);
}

.payment-choice-card .btn-check:checked + .payment-choice-box {
    background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
    border-color: var(--store-primary);
    box-shadow: 0 8px 25px rgba(112, 71, 235, 0.16);
}

.payment-choice-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(112, 71, 235, 0.08);
    color: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.payment-choice-card .btn-check:checked + .payment-choice-box .payment-choice-icon {
    background: var(--store-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(112, 71, 235, 0.3);
}

.payment-choice-info {
    flex-grow: 1;
    min-width: 0;
}

.payment-choice-title {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.15rem;
}

.payment-choice-desc {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.payment-copy-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.payment-copy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(14, 116, 144, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
}

.payment-copy-data {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.payment-copy-data small {
    color: #526577;
    font-weight: 600;
}

.payment-copy-data strong {
    color: #0f3f51;
    overflow-wrap: anywhere;
}

.payment-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-shrink: 0;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(112, 71, 235, 0.25);
    border-radius: 10px;
    background: #ffffff;
    color: var(--store-primary);
    font-size: 0.78rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.payment-copy-button:hover,
.payment-copy-button:focus-visible {
    border-color: var(--store-primary);
    background: rgba(112, 71, 235, 0.08);
}

.payment-copy-button.is-copied {
    border-color: #16a34a;
    background: #ecfdf3;
    color: #15803d;
}

@media (max-width: 575.98px) {
    .payment-copy-row {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-copy-button {
        width: 100%;
    }
}

.payment-choice-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.payment-choice-card .btn-check:checked + .payment-choice-box .payment-choice-check {
    background: var(--store-primary);
    border-color: var(--store-primary);
}

.payment-choice-card .btn-check:disabled + .payment-choice-box {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #e2e8f0;
}

/* Sticky Summary Card */
.checkout-summary-sticky {
    position: sticky;
    top: 90px;
}

.checkout-summary-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(35, 25, 58, 0.08);
    border: 1px solid #e9e6f3;
    padding: 1.75rem;
    overflow: hidden;
}

.checkout-summary-price-badge {
    background: linear-gradient(135deg, #f5f1ff 0%, #ede6ff 100%);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(112, 71, 235, 0.15);
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-summary-total {
    font-size: 2rem;
    font-weight: 900;
    color: var(--store-primary);
    line-height: 1.1;
}

.checkout-submit-btn {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff;
    border-radius: 50px;
    padding: 1rem 1.75rem;
    font-size: 1.08rem;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 8px 24px rgba(112, 71, 235, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(112, 71, 235, 0.45);
    color: #ffffff;
}

.checkout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}




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

    .store-payments-media { opacity: 1; transform: none; }
}
