:root {
    --scp-primary: #4f46e5;
    --scp-secondary: #7c3aed;
    --scp-pink: #db2777;
    --scp-dark: #0f172a;
    --scp-text: #111827;
    --scp-muted: #6b7280;
    --scp-border: #e5e7eb;
    --scp-bg: #f8fafc;
    --scp-card: #ffffff;
    --scp-success: #16a34a;
    --scp-warning: #f59e0b;
    --scp-danger: #dc2626;
    --scp-font-body: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
    --scp-font-heading: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body.scp-storefront {
    margin: 0;
    background: var(--scp-bg);
    color: var(--scp-text);
    font-family: var(--scp-font-body);
}

.scp-storefront h1,
.scp-storefront h2,
.scp-storefront h3,
.scp-storefront h4,
.scp-storefront .scp-logo strong {
    font-family: var(--scp-font-heading);
}

body.is-rtl {
    direction: rtl;
    text-align: right;
}

body.is-ltr {
    direction: ltr;
    text-align: left;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

.scp-container {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
}

/* ================================
   Header
================================ */

.scp-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--scp-border);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
}

.scp-topbar {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #eef2f7;
    color: var(--scp-muted);
    font-size: 13px;
}

.scp-language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scp-language-switcher a {
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    background: #f1f5f9;
}

.scp-language-switcher a.active {
    color: white;
    background: var(--scp-primary);
}

.scp-main-header {
    min-height: 86px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 24px;
}

.scp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scp-logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--scp-primary), var(--scp-pink));
    color: white;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.25);
}

.scp-logo strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.scp-logo small {
    color: var(--scp-muted);
    font-size: 12px;
}

.scp-search {
    display: flex;
    background: #f8fafc;
    border: 1px solid var(--scp-border);
    border-radius: 999px;
    overflow: hidden;
    height: 48px;
}

.scp-search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 20px;
    font-size: 14px;
    color: var(--scp-text);
}

.scp-search button {
    border: 0;
    background: var(--scp-dark);
    color: white;
    padding: 0 24px;
    font-weight: 800;
    cursor: pointer;
}

.scp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scp-header-action {
    position: relative;
    min-width: 74px;
    height: 50px;
    border: 1px solid var(--scp-border);
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--scp-text);
}

.scp-header-action span {
    font-size: 18px;
    line-height: 1;
}

.scp-header-action small {
    font-size: 11px;
    color: var(--scp-muted);
    font-weight: 700;
}

.scp-header-cart-link {
    overflow: visible;
}

.scp-cart-count-badge {
    position: absolute;
    top: -7px;
    inset-inline-end: -7px;
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    padding: 0 6px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 10px 18px rgba(220, 38, 38, 0.22);
}

.scp-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 48px;
    border-top: 1px solid #eef2f7;
    overflow-x: auto;
}

.scp-nav a {
    font-size: 14px;
    font-weight: 800;
    color: #374151;
    white-space: nowrap;
}

.scp-nav a:hover {
    color: var(--scp-primary);
}

/* ================================
   Home Hero
================================ */

.scp-hero-section {
    padding: 46px 0 34px;
}

.scp-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.scp-hero-content {
    background: linear-gradient(135deg, #111827 0%, #312e81 55%, #701a75 100%);
    border-radius: 32px;
    padding: 54px;
    color: white;
    min-height: 430px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.26);
}

.scp-hero-content::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    top: -130px;
    inset-inline-end: -90px;
}

.scp-hero-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #e0e7ff;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.scp-hero-content h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    margin: 0;
    max-width: 780px;
    letter-spacing: -0.06em;
}

.scp-hero-content p {
    position: relative;
    z-index: 2;
    margin: 20px 0 0;
    max-width: 680px;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.9;
}

.scp-hero-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.scp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.scp-btn-primary {
    background: white;
    color: #111827;
}

.scp-btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.scp-hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 22px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.scp-hero-stats div {
    min-width: 110px;
}

.scp-hero-stats strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
}

.scp-hero-stats span {
    color: #c7d2fe;
    font-size: 13px;
    font-weight: 700;
}

.scp-hero-showcase {
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.25), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(219, 39, 119, 0.18), transparent 34%),
        white;
    border: 1px solid var(--scp-border);
    min-height: 430px;
    position: relative;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.scp-showcase-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.scp-showcase-card span {
    display: block;
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.scp-showcase-card strong {
    display: block;
    color: var(--scp-text);
    font-size: 22px;
    font-weight: 950;
}

.scp-showcase-card.main {
    inset-inline: 44px;
    top: 110px;
    min-height: 150px;
}

.scp-showcase-card.floating.one {
    inset-inline-start: 28px;
    bottom: 42px;
}

.scp-showcase-card.floating.two {
    inset-inline-end: 30px;
    top: 42px;
}

/* ================================
   Home Sections
================================ */

.scp-section {
    padding: 42px 0;
}

.scp-section-muted {
    background: #f1f5f9;
}

.scp-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 24px;
}

.scp-section-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.scp-section-heading p {
    margin: 7px 0 0;
    color: var(--scp-muted);
    font-size: 14px;
}

.scp-link-more {
    font-size: 14px;
    font-weight: 900;
    color: var(--scp-primary);
}

.scp-promo-section {
    padding: 30px 0 10px;
}

.scp-promo-section-compact {
    padding: 8px 0 26px;
    background: #f1f5f9;
}

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

.scp-promo-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scp-promo-card {
    --scp-promo-bg: linear-gradient(135deg, #0f172a, #2563eb);
    --scp-promo-text: #ffffff;
    position: relative;
    min-height: 190px;
    border-radius: 30px;
    padding: 24px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    background: var(--scp-promo-bg);
    color: var(--scp-promo-text);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    isolation: isolate;
    text-decoration: none;
}

.scp-promo-card:first-child:nth-last-child(n + 3),
.scp-promo-card:first-child:nth-last-child(n + 3) ~ .scp-promo-card:nth-child(2) {
    min-height: 220px;
}

.scp-promo-card::before {
    content: "";
    position: absolute;
    inset-inline-end: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    z-index: -1;
}

.scp-promo-gradient {
    --scp-promo-bg: linear-gradient(135deg, #172554, #2563eb 55%, #38bdf8);
}

.scp-promo-dark {
    --scp-promo-bg: linear-gradient(135deg, #020617, #111827);
}

.scp-promo-light {
    --scp-promo-bg: linear-gradient(135deg, #ffffff, #eef2ff);
    --scp-promo-text: #0f172a;
    border-color: #e5e7eb;
}

.scp-promo-accent {
    --scp-promo-bg: linear-gradient(135deg, #f59e0b, #ef4444);
}

.scp-promo-content {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scp-promo-content span {
    width: fit-content;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 12px;
    font-weight: 950;
}

.scp-promo-light .scp-promo-content span {
    background: #dbeafe;
    color: var(--scp-primary);
}

.scp-promo-content h2 {
    margin: 0;
    color: inherit;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.scp-promo-content p {
    margin: 12px 0 0;
    max-width: 46ch;
    color: color-mix(in srgb, currentColor 78%, transparent);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
}

.scp-promo-content strong {
    width: fit-content;
    margin-top: 18px;
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 13px;
    font-weight: 950;
}

.scp-promo-light .scp-promo-content strong {
    background: var(--scp-primary);
    color: #fff;
}

.scp-promo-media {
    position: relative;
    z-index: 1;
    width: min(42%, 210px);
    min-width: 135px;
    display: grid;
    place-items: center;
}

.scp-promo-media img {
    width: 100%;
    height: 100%;
    max-height: 185px;
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.22));
}

.scp-promo-card-image-only {
    min-height: 230px;
    padding: 0;
    background: #0f172a;
}

.scp-promo-card-image-only::before {
    display: none;
}

.scp-promo-card-image-only .scp-promo-media {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 0;
}

.scp-promo-card-image-only .scp-promo-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 30px;
    object-fit: cover;
    filter: none;
}

.scp-promo-card-image-only::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.10));
    pointer-events: none;
}

.scp-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.scp-category-card {
    min-height: 265px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 26px 18px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dfe6ef;
    border-radius: 4px;
    color: var(--scp-text);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scp-category-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.scp-category-icon {
    width: 100%;
    height: 142px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--scp-primary);
    font-size: 58px;
    margin: 0;
    overflow: hidden;
}

.scp-category-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.scp-category-card h3 {
    margin: 0;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.scp-category-card p {
    margin: 0;
    max-width: 220px;
    font-size: 12px;
    color: var(--scp-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scp-category-cta {
    margin-top: auto;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.scp-category-card:hover .scp-category-cta {
    color: var(--scp-primary);
}

/* ================================
   Gaming Recharge Section
================================ */

.scp-gaming-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(212, 162, 76, 0.12), transparent 26%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.scp-game-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.scp-game-card {
    --scp-game-bg: linear-gradient(135deg, #0f172a, #2563eb);
    position: relative;
    min-height: 265px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 24px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.86)),
        var(--scp-game-bg);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scp-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.scp-game-card-glow {
    position: absolute;
    inset: auto -28px -42px;
    height: 115px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.55), transparent 68%);
    pointer-events: none;
}

.scp-game-card-media {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
}

.scp-game-card-media img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

.scp-game-card-media strong {
    color: var(--scp-primary);
    font-size: 34px;
    font-weight: 950;
}

.scp-game-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.scp-game-card-content span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fde68a;
    font-size: 11px;
    font-weight: 900;
}

.scp-game-card-content h3 {
    margin: 0;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 950;
}

.scp-game-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.7;
}

.scp-game-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.scp-game-card-meta small {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 850;
}

.scp-game-card > b {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: #fde68a;
    font-size: 13px;
    font-weight: 950;
}

.scp-games-hero,
.scp-game-show-section {
    padding: 28px 0 72px;
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fafc, #ffffff);
}

.scp-games-hero-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    min-height: 260px;
    padding: clamp(30px, 4vw, 54px);
    border: 1px solid rgba(147, 197, 253, 0.22);
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 18%, rgba(96, 165, 250, 0.28), transparent 31%),
        radial-gradient(circle at 88% 82%, rgba(245, 158, 11, 0.20), transparent 27%),
        linear-gradient(135deg, #08152f 0%, #132f69 54%, #1d4ed8 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.20);
}

.scp-games-hero-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 310px;
    height: 310px;
    inset-block-start: -205px;
    inset-inline-end: 13%;
    border: 54px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

.scp-games-hero-orb {
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    inset-inline-start: -92px;
    inset-block-end: -102px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.16);
    filter: blur(2px);
}

.scp-games-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.scp-games-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: #e0ecff;
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.scp-games-hero-badge svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #facc15;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scp-games-hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.scp-games-hero-copy p {
    max-width: 680px;
    margin: 17px 0 0;
    color: #dbeafe;
    font-size: clamp(14px, 1.25vw, 17px);
    font-weight: 650;
    line-height: 1.9;
}

.scp-games-hero-stat {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 210px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
}

.scp-games-hero-stat-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #172554;
    background: linear-gradient(135deg, #fde68a, #facc15);
    box-shadow: 0 14px 30px rgba(250, 204, 21, 0.20);
}

.scp-games-hero-stat-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scp-games-hero-stat strong,
.scp-games-hero-stat small {
    display: block;
}

.scp-games-hero-stat strong {
    color: #ffffff;
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.scp-games-hero-stat small {
    margin-top: 7px;
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.scp-store-games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.scp-store-game-card,
.scp-game-profile-card {
    --scp-game-bg: linear-gradient(135deg, #0f172a, #2563eb);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.88)),
        var(--scp-game-bg);
    background-position: center;
    background-size: cover;
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.scp-store-game-card {
    min-height: 290px;
    display: grid;
    gap: 16px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scp-store-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.20);
}

.scp-store-game-icon,
.scp-game-profile-icon {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.scp-store-game-icon img,
.scp-game-profile-icon img {
    width: 100%;
    height: 100%;
    padding: 9px;
    object-fit: contain;
}

.scp-store-game-icon strong,
.scp-game-profile-icon strong {
    color: var(--scp-primary);
    font-size: 34px;
    font-weight: 950;
}

.scp-store-game-body,
.scp-game-profile-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
}

.scp-store-game-body > span,
.scp-game-profile-copy > span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fde68a;
    font-size: 11px;
    font-weight: 900;
}

.scp-store-game-body h2,
.scp-game-profile-copy h1 {
    margin: 0;
    font-weight: 950;
}

.scp-store-game-body h2 {
    font-size: 26px;
}

.scp-game-profile-copy h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.scp-store-game-body p,
.scp-game-profile-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.75;
}

.scp-store-game-card > b {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: #fde68a;
    font-size: 14px;
    font-weight: 950;
}

.scp-game-profile-card {
    min-height: 320px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 24px;
    padding: clamp(24px, 5vw, 46px);
    margin-bottom: 28px;
}

.scp-game-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.scp-game-product-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.scp-game-product-media {
    height: 190px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.10), transparent 32%),
        #f8fafc;
}

.scp-game-product-media img {
    max-width: 82%;
    max-height: 165px;
    object-fit: contain;
}

.scp-game-product-media strong {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--scp-primary), #60a5fa);
    color: #ffffff;
    font-size: 28px;
    font-weight: 950;
}

.scp-game-product-body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.scp-game-product-body > span {
    color: var(--scp-primary);
    font-size: 12px;
    font-weight: 900;
}

.scp-game-product-body h3 {
    margin: 0;
    color: var(--scp-text);
    font-size: 18px;
    font-weight: 950;
}

.scp-game-package-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scp-game-package-list small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    background: #eef4ff;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 850;
}

.scp-game-package-list b {
    color: var(--scp-text);
}

.scp-game-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.scp-game-product-footer strong {
    color: var(--scp-primary);
    font-size: 20px;
    font-weight: 950;
}

@media (max-width: 1100px) {
    .scp-store-games-grid,
    .scp-game-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .scp-store-games-grid,
    .scp-game-products-grid,
    .scp-game-profile-card {
        grid-template-columns: 1fr;
    }

    .scp-game-profile-card {
        min-height: auto;
        align-items: start;
    }

    .scp-game-product-footer {
        align-items: stretch;
        flex-direction: column;
    }
}

/* ================================
   Product Cards
================================ */

.scp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

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

.scp-product-card {
    position: relative;
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 26px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.scp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

.scp-product-image {
    height: 230px;
    background: linear-gradient(135deg, #eef2ff, #fdf2f8);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.scp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    background: #f8fafc;
}

.scp-product-placeholder {
    width: 82px;
    height: 82px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--scp-primary);
    font-size: 34px;
    font-weight: 950;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.18);
}

.scp-product-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--scp-danger);
    color: white;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 900;
}

.scp-product-type-badge {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 14px;
    background: #4f46e5;
    color: white;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.22);
}

.scp-product-body {
    padding: 18px;
}

.scp-product-brand {
    color: var(--scp-primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.scp-product-body h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
    min-height: 46px;
}

.scp-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.scp-product-price strong {
    font-size: 19px;
    font-weight: 950;
}

.scp-product-price span {
    color: var(--scp-muted);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 700;
}

.scp-product-price-note {
    display: inline-flex;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.scp-product-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.scp-product-utility-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.scp-product-utility-form {
    display: inline-flex;
    text-decoration: none;
}

.scp-product-utility-form button,
.scp-product-utility-chip {
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid #dbe4ff;
    background: #f8fbff;
    color: #1d4ed8;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.scp-product-utility-chip {
    display: inline-flex;
}

.scp-product-utility-form button {
    cursor: pointer;
}

.scp-btn-small {
    flex: 1;
    border: 1px solid var(--scp-border);
    border-radius: 14px;
    min-height: 40px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.scp-btn-small.primary {
    background: var(--scp-dark);
    color: white;
    border-color: var(--scp-dark);
}

/* ================================
   Brands
================================ */

.scp-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.scp-brand-card {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 20px;
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 16px;
    font-weight: 950;
    color: var(--scp-text);
}

.scp-brand-card img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

.scp-empty {
    background: white;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    padding: 28px;
    color: var(--scp-muted);
    font-weight: 700;
}

/* ================================
   Product Listing Page
================================ */

.scp-products-hero {
    padding: 34px 0 24px;
}

.scp-products-hero-inner {
    background:
        radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.24), transparent 29%),
        radial-gradient(circle at 92% 18%, rgba(250, 204, 21, 0.16), transparent 30%),
        linear-gradient(135deg, #07152f 0%, #172554 52%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 38px 42px;
    color: white;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    gap: 44px;
    align-items: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    position: relative;
}

.scp-products-hero-inner::before,
.scp-products-hero-inner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.scp-products-hero-inner::before {
    width: 230px;
    height: 230px;
    inset-inline-end: -95px;
    bottom: -150px;
    border: 38px solid rgba(255, 255, 255, 0.055);
}

.scp-products-hero-inner::after {
    width: 92px;
    height: 92px;
    inset-inline-start: 39%;
    top: -58px;
    border: 20px solid rgba(255, 255, 255, 0.045);
}

.scp-products-hero-copy,
.scp-products-hero-stats {
    position: relative;
    z-index: 1;
}

.scp-products-hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.scp-products-hero-badge-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #facc15;
    color: #172554;
}

.scp-products-hero-badge-icon svg {
    width: 17px;
    height: 17px;
}

.scp-products-hero-inner h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(32px, 3.7vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.scp-products-hero-inner p {
    max-width: 690px;
    color: #dbeafe;
    line-height: 1.85;
    font-size: 15px;
    margin: 13px 0 0;
}

.scp-products-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 14px;
    width: 100%;
}

.scp-products-hero-stat {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scp-products-hero-stat-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #fde047;
}

.scp-products-hero-stat-icon svg {
    width: 22px;
    height: 22px;
}

.scp-products-hero-stat-copy {
    min-width: 0;
}

.scp-products-hero-stat strong {
    display: block;
    color: #fff;
    font-size: 26px;
    font-weight: 950;
    line-height: 1;
}

.scp-products-hero-stat small {
    display: block;
    margin-top: 7px;
    color: #c7d2fe;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scp-products-ad-showcase {
    padding: 18px 0 10px;
}

.scp-products-ad-slider {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #0b1120;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.scp-products-ad-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.scp-products-ad-track::-webkit-scrollbar {
    display: none;
}

.scp-products-ad-slide {
    --scp-ad-bg: linear-gradient(135deg, #0f172a, #1d4ed8);
    --scp-ad-text: #ffffff;
    position: relative;
    min-width: 100%;
    height: clamp(190px, 18vw, 330px);
    display: grid;
    align-items: center;
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--scp-ad-bg);
    color: var(--scp-ad-text);
}

.scp-products-ad-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scp-products-ad-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.16), transparent);
}

.scp-products-ad-overlay {
    position: relative;
    z-index: 1;
    max-width: 560px;
    display: grid;
    gap: 10px;
    padding: clamp(22px, 4vw, 52px);
    color: inherit;
}

.scp-products-ad-overlay small {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 950;
}

.scp-products-ad-overlay strong {
    font-size: clamp(26px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.scp-products-ad-overlay em {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(14px, 1.4vw, 20px);
    font-style: normal;
    font-weight: 750;
}

.scp-products-ad-overlay b {
    width: fit-content;
    margin-top: 6px;
    padding: 10px 18px;
    border: 2px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

.scp-products-ad-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 4px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.72);
    color: #0f172a;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.scp-products-ad-nav.prev { inset-inline-start: 12px; }
.scp-products-ad-nav.next { inset-inline-end: 12px; }

.scp-products-ad-tiles {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.scp-products-ad-tile {
    --scp-ad-bg: #ffffff;
    --scp-ad-text: #0f172a;
    position: relative;
    min-height: 135px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: var(--scp-ad-bg);
    color: var(--scp-ad-text);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.scp-products-ad-tile img {
    width: 100%;
    height: 100%;
    min-height: 135px;
    object-fit: cover;
}

.scp-products-ad-tile span {
    position: absolute;
    inset: auto 8px 8px;
    display: grid;
    gap: 4px;
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
}

.scp-products-ad-tile strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 950;
}

.scp-products-ad-tile small {
    color: var(--scp-primary);
    font-size: 11px;
    font-weight: 900;
}

.scp-game-topup-box {
    width: 100%;
    display: grid;
    gap: 14px;
    padding: clamp(18px, 2.5vw, 24px);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.scp-game-topup-box > div:first-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.scp-game-topup-box > div:first-child span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.11);
    color: var(--scp-primary);
    font-size: 12px;
    font-weight: 900;
}

.scp-game-topup-box > div:first-child strong {
    color: var(--scp-text);
    font-size: 18px;
    font-weight: 950;
}

.scp-game-topup-box > div:first-child small,
.scp-game-topup-box p,
.scp-game-topup-validation-note {
    color: var(--scp-muted);
    font-size: 13px;
    line-height: 1.7;
}

.scp-game-topup-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.scp-game-topup-fields label:first-child:last-child {
    grid-column: 1 / -1;
}

.scp-game-topup-fields label {
    display: grid;
    gap: 7px;
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 850;
}

.scp-game-topup-fields input,
.scp-game-topup-fields select,
.scp-game-topup-fields textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: 16px;
    min-height: 52px;
    padding: 13px 15px;
    color: var(--scp-text);
    background: #ffffff;
    outline: none;
    font-size: 15px;
    font-weight: 850;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.scp-game-topup-fields select {
    cursor: pointer;
}

.scp-game-topup-fields input:focus,
.scp-game-topup-fields select:focus,
.scp-game-topup-fields textarea:focus {
    border-color: var(--scp-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.scp-variant-card .scp-variant-package {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--scp-primary);
    font-weight: 900;
}

.scp-game-topup-disabled {
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff1f2;
    color: #be123c;
    font-weight: 900;
}

@media (max-width: 720px) {
    .scp-game-topup-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .scp-products-ad-tiles {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 640px) {
    .scp-products-ad-showcase {
        padding-top: 12px;
    }

    .scp-products-ad-slide {
        height: 230px;
    }

    .scp-products-ad-overlay {
        padding: 18px;
    }

    .scp-products-ad-nav {
        width: 34px;
        height: 34px;
        font-size: 26px;
    }

    .scp-products-ad-tiles {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        gap: 9px;
    }

    .scp-products-ad-tile,
    .scp-products-ad-tile img {
        min-height: 118px;
    }
}

.scp-products-section {
    padding: 30px 0 64px;
}

.scp-products-toolbar {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 26px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1.6fr repeat(4, minmax(140px, 1fr)) auto auto;
    gap: 10px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    margin-bottom: 24px;
}

.scp-products-toolbar input,
.scp-products-toolbar select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--scp-border);
    border-radius: 16px;
    padding: 0 14px;
    background: #f8fafc;
    color: var(--scp-text);
    outline: none;
    font-size: 13px;
    font-weight: 800;
}

.scp-products-toolbar input:focus,
.scp-products-toolbar select:focus {
    border-color: var(--scp-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
    background: white;
}

.scp-products-toolbar button {
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: var(--scp-dark);
    color: white;
    padding: 0 22px;
    font-weight: 950;
    cursor: pointer;
    white-space: nowrap;
}

.scp-products-toolbar button:hover {
    background: var(--scp-primary);
}

.scp-products-reset {
    height: 48px;
    border-radius: 16px;
    background: #eef2ff;
    color: var(--scp-primary);
    display: grid;
    place-items: center;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
}

.scp-products-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.scp-products-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 170px;
}

.scp-sidebar-card {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
}

.scp-sidebar-card h3 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 950;
    color: var(--scp-text);
}

.scp-sidebar-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 850;
    transition: 0.18s ease;
}

.scp-sidebar-card a:hover,
.scp-sidebar-card a.active {
    background: #eef2ff;
    color: var(--scp-primary);
}

.scp-filter-list-card a {
    gap: 10px;
    position: relative;
    justify-content: flex-start;
    padding-inline: 8px 28px;
}

.scp-filter-link-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scp-filter-link-icon {
    order: -1;
    width: 27px;
    height: 27px;
    min-width: 27px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2563eb;
    font-size: 19px;
    line-height: 1;
    box-shadow: none;
}

.scp-filter-link-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.scp-filter-list-card a::after {
    content: "‹";
    position: absolute;
    inset-inline-end: 8px;
    color: #cbd5e1;
    font-size: 20px;
    font-weight: 900;
}

html[dir="ltr"] .scp-filter-list-card a::after {
    content: "›";
}

.scp-filter-list-card a:hover .scp-filter-link-icon,
.scp-filter-list-card a.active .scp-filter-link-icon {
    color: var(--scp-primary);
}

.scp-products-main {
    min-width: 0;
}

.scp-products-summary {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 24px;
    padding: 16px 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.scp-products-summary strong {
    font-weight: 950;
    color: var(--scp-primary);
}

.scp-products-summary span {
    color: var(--scp-muted);
    font-weight: 850;
    margin-inline-start: 4px;
}

.scp-products-main .scp-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scp-products-main .scp-product-card {
    border-radius: 28px;
}

.scp-products-main .scp-product-image {
    height: 240px;
}

.scp-products-empty {
    grid-column: 1 / -1;
}

.scp-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.scp-pagination nav {
    display: flex;
    justify-content: center;
}

.scp-pagination svg {
    width: 18px;
    height: 18px;
}

.scp-pagination span,
.scp-pagination a {
    font-size: 13px;
}

.scp-games-pagination {
    direction: ltr;
    width: fit-content;
    max-width: 100%;
    margin: 30px auto 0;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--scp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.scp-games-pagination-arrow,
.scp-games-pagination-pages a,
.scp-games-pagination-pages > span:not(.scp-games-pagination-dots) {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe5f1;
    border-radius: 12px;
    background: #fff;
    color: #172554;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.scp-games-pagination-arrow {
    font-size: 25px;
}

.scp-games-pagination-arrow:hover,
.scp-games-pagination-pages a:hover {
    transform: translateY(-1px);
    border-color: #93b4ff;
    background: #eff6ff;
    color: var(--scp-primary);
}

.scp-games-pagination-arrow.is-disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.scp-games-pagination-pages {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.scp-games-pagination-pages > span.is-current {
    border-color: transparent;
    background: linear-gradient(135deg, var(--scp-primary), #1d4ed8);
    color: #fff;
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.24);
}

.scp-games-pagination-dots {
    min-width: 18px;
    color: var(--scp-muted);
    font-weight: 900;
    text-align: center;
}

.scp-games-pagination-summary {
    direction: ltr;
    min-width: 82px;
    padding: 0 8px;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
}

.scp-games-pagination-summary small {
    margin: 0 3px;
    color: #cbd5e1;
}

@media (max-width: 560px) {
    .scp-games-pagination {
        width: 100%;
        padding: 7px;
        gap: 5px;
        border-radius: 15px;
    }

    .scp-games-pagination-arrow,
    .scp-games-pagination-pages a,
    .scp-games-pagination-pages > span:not(.scp-games-pagination-dots) {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .scp-games-pagination-summary {
        display: none;
    }
}

/* ================================
   Footer
================================ */

.scp-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 34%),
        radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.16), transparent 28%),
        #0f172a;
    color: white;
    padding: 58px 0 22px;
}

.scp-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.7fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr) minmax(280px, 1.2fr);
    gap: 22px;
    align-items: start;
}

.scp-footer-brand-block,
.scp-footer-links-block,
.scp-footer-contact-block {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.scp-footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}

.scp-footer-brand img,
.scp-footer-brand > span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    object-fit: contain;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--scp-primary), #38bdf8);
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.scp-footer-brand small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
}

.scp-footer h3,
.scp-footer h4 {
    margin: 0 0 12px;
}

.scp-footer h3 {
    font-size: 20px;
    font-weight: 950;
}

.scp-footer h4 {
    color: #f8fafc;
    font-size: 15px;
    font-weight: 950;
}

.scp-footer p {
    color: #cbd5e1;
    max-width: 520px;
    line-height: 1.8;
    margin: 0;
}

.scp-footer-links-block a {
    display: block;
    color: #cbd5e1;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.18s ease, transform 0.18s ease;
}

.scp-footer-links-block a:hover {
    color: #fff;
    transform: translateX(-3px);
}

body.is-ltr .scp-footer-links-block a:hover {
    transform: translateX(3px);
}

.scp-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.scp-footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    transition: transform 0.18s ease, background 0.18s ease;
}

.scp-footer-socials a:hover {
    transform: translateY(-3px);
    background: var(--scp-primary);
}

.scp-footer-contact-list {
    display: grid;
    gap: 10px;
}

.scp-footer-contact-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 9px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
}

.scp-footer-contact-item > span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.22);
    color: #bfdbfe;
    font-size: 17px;
    font-weight: 950;
}

.scp-footer-contact-item small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 850;
}

.scp-footer-contact-item strong {
    display: block;
    margin-top: 2px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.scp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 13px;
}

@media (max-width: 720px) {
    .scp-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.scp-footer-legal-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.scp-footer-legal-links a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.scp-floating-whatsapp {
    position: fixed;
    left: 22px;
    bottom: 24px;
    z-index: 80;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(22, 163, 74, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scp-floating-whatsapp span {
    font-size: 26px;
    font-weight: 950;
    line-height: 1;
}

.scp-floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 24px 52px rgba(22, 163, 74, 0.42);
}

.scp-cookie-consent {
    position: fixed;
    inset-inline: 16px;
    bottom: 16px;
    z-index: 120;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.scp-cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scp-cookie-consent.is-hiding {
    opacity: 0;
    transform: translateY(18px);
}

.scp-cookie-consent-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(212, 162, 76, 0.34);
    border-radius: 18px;
    background: var(
        --scp-cookie-bg,
        radial-gradient(circle at 8% 50%, rgba(212, 162, 76, 0.18), transparent 30%),
        linear-gradient(135deg, #071225, #0b1730 55%, #102a62)
    );
    color: #ffffff;
    box-shadow: 0 22px 60px rgba(2, 6, 23, 0.28);
}

.scp-cookie-consent-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    font-size: 20px;
}

.scp-cookie-consent p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.75;
}

.scp-cookie-consent-link {
    color: #f7d37a;
    font-weight: 950;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.scp-cookie-consent-button {
    min-width: 110px;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--scp-cookie-button-bg, linear-gradient(135deg, #f7d37a, #d4a24c));
    color: #111827;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(212, 162, 76, 0.24);
}

.scp-cookie-consent-button:hover {
    transform: translateY(-1px);
}

/* ================================
   Responsive
================================ */

@media (max-width: 1200px) {
    .scp-products-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .scp-products-layout {
        grid-template-columns: 1fr;
    }

    .scp-products-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scp-products-main .scp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scp-products-hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .scp-products-hero-stats {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .scp-main-header {
        grid-template-columns: 1fr;
        padding: 18px 0;
    }

    .scp-header-actions {
        justify-content: stretch;
    }

    .scp-header-action {
        flex: 1;
    }

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

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

    .scp-category-grid,
    .scp-game-grid,
    .scp-product-grid,
    .scp-product-grid.compact,
    .scp-promo-grid,
    .scp-promo-grid.compact,
    .scp-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .scp-games-hero,
    .scp-game-show-section {
        padding-top: 18px;
    }

    .scp-games-hero-card {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: 0;
        padding: 26px 20px;
        border-radius: 25px;
    }

    .scp-games-hero-card::before {
        width: 220px;
        height: 220px;
        inset-block-start: -155px;
        inset-inline-end: -44px;
        border-width: 40px;
    }

    .scp-games-hero-badge {
        margin-bottom: 14px;
    }

    .scp-games-hero-copy h1 {
        font-size: clamp(30px, 9vw, 40px);
        letter-spacing: -0.035em;
    }

    .scp-games-hero-copy p {
        margin-top: 13px;
        line-height: 1.75;
    }

    .scp-games-hero-stat {
        width: 100%;
        min-width: 0;
        padding: 15px 16px;
        border-radius: 19px;
    }

    .scp-games-hero-stat-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .scp-games-hero-stat strong {
        font-size: 29px;
    }

    .scp-products-hero {
        padding-top: 24px;
    }

    .scp-products-hero-inner {
        padding: 26px 20px;
        border-radius: 24px;
        gap: 21px;
    }

    .scp-products-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .scp-products-hero-stat {
        display: block;
        padding: 12px;
        border-radius: 17px;
    }

    .scp-products-hero-stat:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .scp-products-hero-stat-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 11px;
        border-radius: 11px;
    }

    .scp-products-hero-stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .scp-products-hero-inner h1 {
        font-size: clamp(29px, 9vw, 38px);
    }

    .scp-products-hero-inner p {
        font-size: 14px;
        line-height: 1.75;
    }

    .scp-products-toolbar {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .scp-products-sidebar {
        grid-template-columns: 1fr;
    }

    .scp-products-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .scp-products-main .scp-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .scp-container {
        width: min(100% - 22px, 1320px);
    }

    .scp-topbar,
    .scp-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .scp-hero-content {
        padding: 32px 24px;
    }

    .scp-hero-showcase {
        min-height: 320px;
    }

    .scp-showcase-card.main {
        inset-inline: 20px;
        top: 80px;
    }

    .scp-showcase-card.floating.one {
        bottom: 24px;
        inset-inline-start: 20px;
    }

    .scp-showcase-card.floating.two {
        top: 22px;
        inset-inline-end: 20px;
    }

    .scp-category-grid,
    .scp-game-grid,
    .scp-product-grid,
    .scp-product-grid.compact,
    .scp-promo-grid,
    .scp-promo-grid.compact,
    .scp-brand-grid {
        grid-template-columns: 1fr;
    }

    .scp-promo-card {
        min-height: 180px;
        padding: 20px;
        border-radius: 24px;
    }

    .scp-promo-media {
        width: 38%;
        min-width: 110px;
    }

    .scp-promo-card-image-only {
        min-height: 210px;
    }

    .scp-promo-card-image-only .scp-promo-media {
        width: 100%;
        min-width: 0;
    }

    .scp-search {
        border-radius: 18px;
    }

    .scp-search button {
        padding: 0 16px;
    }

    .scp-footer {
        padding-top: 38px;
    }

    .scp-footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .scp-footer-brand-block,
    .scp-footer-links-block,
    .scp-footer-contact-block {
        border-radius: 22px;
        padding: 18px;
    }

    .scp-footer-contact-item {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .scp-footer-contact-item > span {
        width: 38px;
        height: 38px;
    }
}

/* ================================
   Product Details Page - Premium
================================ */

.scp-product-details-section {
    padding: 34px 0 78px;
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 28%),
        radial-gradient(circle at top left, rgba(219, 39, 119, 0.07), transparent 30%),
        var(--scp-bg);
}

.scp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.scp-breadcrumbs a {
    color: var(--scp-primary);
    background: #eef2ff;
    padding: 7px 11px;
    border-radius: 999px;
}

.scp-breadcrumbs span {
    color: #94a3b8;
}

.scp-breadcrumbs strong {
    color: var(--scp-text);
    max-width: 520px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.scp-product-details-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.scp-product-gallery {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 34px;
    padding: 18px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
    position: sticky;
    top: 154px;
}

.scp-product-main-image {
    height: 540px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 18%, rgba(79, 70, 229, 0.16), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(219, 39, 119, 0.12), transparent 32%),
        linear-gradient(135deg, #f8fafc 0%, #eef2ff 55%, #fdf2f8 100%);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.scp-product-main-image::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    filter: blur(2px);
    bottom: -100px;
    inset-inline-end: -80px;
}

.scp-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 34px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 28px 32px rgba(15, 23, 42, 0.14));
}

.scp-product-placeholder.big {
    width: 130px;
    height: 130px;
    border-radius: 38px;
    font-size: 58px;
    position: relative;
    z-index: 2;
}

.scp-product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.scp-product-thumb {
    height: 90px;
    border: 1px solid var(--scp-border);
    border-radius: 20px;
    background: #f8fafc;
    display: grid;
    place-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: 0.18s ease;
}

.scp-product-thumb:hover,
.scp-product-thumb.active {
    border-color: var(--scp-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
    transform: translateY(-2px);
}

.scp-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 9px;
}

.scp-product-info {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 34px;
    padding: 32px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.scp-product-info::before {
    content: "";
    position: absolute;
    inset-inline-end: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 999px;
}

.scp-product-meta-line {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--scp-primary);
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.scp-product-meta-line span {
    background: #eef2ff;
    padding: 7px 12px;
    border-radius: 999px;
}

.scp-product-info h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-product-short-description {
    position: relative;
    z-index: 2;
    margin: 18px 0 0;
    color: var(--scp-muted);
    line-height: 1.95;
    font-size: 15.5px;
}

.scp-product-detail-price {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border: 1px solid #e0e7ff;
}

.scp-product-detail-price strong {
    font-size: 38px;
    font-weight: 950;
    color: var(--scp-primary);
    letter-spacing: -0.04em;
}

.scp-product-detail-price span {
    color: var(--scp-muted);
    text-decoration: line-through;
    font-size: 17px;
    font-weight: 850;
}

.scp-reseller-price-badge {
    align-self: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.scp-product-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.scp-product-tags span {
    background: #ffffff;
    border: 1px solid var(--scp-border);
    border-radius: 999px;
    padding: 9px 13px;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.scp-product-categories,
.scp-product-variants {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #eef2f7;
}

.scp-product-categories > strong,
.scp-product-variants > strong {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-product-categories div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scp-product-categories a {
    background: #eef2ff;
    color: var(--scp-primary);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 950;
    border: 1px solid #c7d2fe;
}

.scp-variant-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.scp-variant-card {
    border: 1px solid var(--scp-border);
    border-radius: 20px;
    padding: 14px;
    background: #f8fafc;
    transition: 0.18s ease;
}

.scp-variant-card:hover {
    border-color: var(--scp-primary);
    background: #eef2ff;
    transform: translateY(-2px);
}

.scp-variant-card span {
    display: block;
    font-weight: 950;
    font-size: 13px;
    color: var(--scp-dark);
}

.scp-variant-card small {
    display: block;
    color: var(--scp-muted);
    margin-top: 5px;
    font-weight: 800;
}

.scp-variant-card strong {
    display: block;
    margin-top: 9px;
    color: var(--scp-primary);
    font-weight: 950;
}

.scp-product-detail-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 12px;
    margin-top: 30px;
}

.scp-product-detail-actions-game {
    grid-template-columns: 1fr;
}

.scp-product-detail-actions-game .scp-product-details-wishlist-form,
.scp-product-detail-actions-game .scp-product-details-wishlist-link,
.scp-product-detail-actions-game .scp-detail-secondary-btn {
    width: 100%;
}

.scp-product-detail-actions-game .scp-product-details-wishlist-form button {
    width: 100%;
}

.scp-detail-add-to-cart,
.scp-detail-secondary-btn {
    min-height: 56px;
    border-radius: 18px;
    border: 0;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    transition: 0.18s ease;
}

.scp-detail-add-to-cart {
    background: linear-gradient(135deg, var(--scp-dark), #312e81);
    color: white;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.scp-detail-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.28);
}

.scp-detail-secondary-btn {
    background: #eef2ff;
    color: var(--scp-primary);
    border: 1px solid #c7d2fe;
}

.scp-detail-secondary-btn:hover {
    background: white;
}

.scp-product-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    margin-bottom: 22px;
}

.scp-product-content-card {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 30px;
    padding: 26px;
    margin-bottom: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.scp-product-content-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 950;
    color: var(--scp-dark);
    letter-spacing: -0.03em;
}

.scp-rich-text {
    color: #374151;
    line-height: 2;
    font-size: 15px;
}

.scp-rich-text p {
    margin-top: 0;
}

.scp-muted-text {
    color: var(--scp-muted);
    font-weight: 750;
    line-height: 1.8;
}

.scp-spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scp-spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 11px;
}

.scp-spec-list span {
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 850;
}

.scp-spec-list strong {
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 950;
    text-align: end;
}

.scp-product-details-section .scp-section {
    padding-top: 20px;
    padding-bottom: 0;
}

@media (max-width: 1100px) {
    .scp-product-gallery {
        position: static;
    }

    .scp-product-details-layout,
    .scp-product-content-grid {
        grid-template-columns: 1fr;
    }

    .scp-product-main-image {
        height: 440px;
    }
}

@media (max-width: 700px) {
    .scp-product-details-section {
        padding-top: 22px;
    }

    .scp-product-info,
    .scp-product-content-card {
        padding: 20px;
        border-radius: 24px;
    }

    .scp-product-gallery {
        padding: 12px;
        border-radius: 24px;
    }

    .scp-product-main-image {
        height: 330px;
        border-radius: 20px;
    }

    .scp-product-main-image img {
        padding: 20px;
    }

    .scp-product-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .scp-product-detail-price {
        padding: 16px;
    }

    .scp-product-detail-price strong {
        font-size: 30px;
    }

    .scp-variant-list,
    .scp-product-detail-actions {
        grid-template-columns: 1fr;
    }

    .scp-spec-list div {
        flex-direction: column;
    }

    .scp-spec-list strong {
        text-align: start;
    }

    .scp-breadcrumbs strong {
        max-width: 100%;
        white-space: normal;
    }

}

/* ================================
   Storefront Cart Actions
================================ */

.scp-alert-success {
    margin-top: 18px;
    margin-bottom: 10px;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.12);
}

.scp-card-cart-form {
    flex: 1;
    display: flex;
}

.scp-card-cart-form .scp-btn-small {
    width: 100%;
}

.scp-detail-cart-form {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 10px;
    width: 100%;
}

.scp-detail-cart-form-game {
    grid-template-columns: 135px minmax(0, 1fr);
    align-items: stretch;
}

.scp-detail-cart-form-game .scp-game-topup-box {
    grid-column: 1 / -1;
}

.scp-detail-out-of-stock {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px;
    border: 1px solid #fecaca;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%);
    color: #991b1b;
    box-shadow: 0 14px 32px rgba(220, 38, 38, 0.08);
}

.scp-detail-out-of-stock-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.22);
}

.scp-detail-out-of-stock strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
    font-weight: 950;
}

.scp-detail-out-of-stock p {
    margin: 0;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.7;
}

.scp-quantity-box {
    min-height: 56px;
    border: 1px solid var(--scp-border);
    border-radius: 18px;
    background: #f8fafc;
    padding: 6px 10px;
    display: grid;
    align-items: center;
}

.scp-quantity-box label {
    display: block;
    color: var(--scp-muted);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.scp-quantity-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--scp-text);
    font-size: 16px;
    font-weight: 950;
}

@media (max-width: 700px) {
    .scp-detail-cart-form {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Cart Page - Premium Clean Layout
========================================= */

.scp-cart-page {
    padding: 40px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.06), transparent 28%),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.05), transparent 30%),
        var(--scp-bg);
}

.scp-cart-page-header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #111827 0%, #1e1b4b 55%, #6d28d9 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.scp-cart-page-intro {
    flex: 1;
}

.scp-cart-page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.scp-cart-page-header h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.scp-cart-page-header p {
    margin: 12px 0 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
    font-size: 14px;
}

.scp-cart-page-stat {
    width: 180px;
    min-width: 180px;
    border-radius: 24px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scp-cart-page-stat span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 800;
}

.scp-cart-page-stat strong {
    margin-top: 8px;
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.scp-cart-empty-state {
    background: #fff;
    border: 1px solid var(--scp-border);
    border-radius: 30px;
    padding: 60px 24px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.06);
}

.scp-cart-empty-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    font-size: 34px;
    background: #eef2ff;
    color: var(--scp-primary);
}

.scp-cart-empty-state h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-cart-empty-state p {
    max-width: 560px;
    margin: 12px auto 24px;
    color: var(--scp-muted);
    line-height: 1.9;
}

.scp-cart-empty-btn {
    display: inline-grid;
    place-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--scp-dark);
    color: #fff;
    font-weight: 900;
}

.scp-cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.scp-cart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scp-cart-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--scp-border);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.scp-cart-card-media {
    width: 100%;
    height: 140px;
    border-radius: 22px;
    background: #f8fafc;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid #eef2f7;
}

.scp-cart-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.scp-cart-card-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #e0e7ff;
    color: var(--scp-primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 950;
}

.scp-cart-card-content {
    min-width: 0;
}

.scp-cart-card-topline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.scp-cart-card-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--scp-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.scp-cart-card-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: var(--scp-muted);
    font-size: 11px;
    font-weight: 900;
}

.scp-cart-card-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 950;
    color: var(--scp-dark);
    line-height: 1.45;
}

.scp-cart-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 14px;
}

.scp-cart-card-meta span {
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 800;
}

.scp-cart-card-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 220px));
    gap: 12px;
    margin-bottom: 16px;
}

.scp-cart-price-box {
    border: 1px solid #eef2f7;
    background: #f8fafc;
    border-radius: 18px;
    padding: 12px 14px;
}

.scp-cart-price-box small {
    display: block;
    color: var(--scp-muted);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
}

.scp-cart-price-box strong {
    display: block;
    color: var(--scp-dark);
    font-size: 18px;
    font-weight: 950;
}

.scp-cart-price-note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 900;
}

.scp-cart-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
    justify-content: space-between;
}

.scp-cart-update-form {
    flex: 1;
    min-width: 280px;
}

.scp-cart-update-form label {
    display: block;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
}

.scp-cart-update-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.scp-cart-update-row input {
    width: 96px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid var(--scp-border);
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 900;
    color: var(--scp-text);
}

.scp-cart-update-row button,
.scp-cart-remove-form button {
    height: 44px;
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.scp-cart-update-row button {
    background: var(--scp-dark);
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.scp-cart-update-row button:hover {
    transform: translateY(-1px);
}

.scp-cart-remove-form button {
    background: #fee2e2;
    color: #b91c1c;
}

.scp-cart-remove-form button:hover {
    background: #fecaca;
}

.scp-cart-summary-card {
    position: sticky;
    top: 140px;
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--scp-border);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.scp-cart-summary-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

.scp-cart-summary-line span {
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 850;
}

.scp-cart-summary-line strong {
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 950;
    text-align: end;
}

.scp-cart-summary-total {
    margin-top: 14px;
    border-radius: 22px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.scp-cart-summary-total span {
    color: var(--scp-muted);
    font-size: 14px;
    font-weight: 900;
}

.scp-cart-summary-total strong {
    color: var(--scp-primary);
    font-size: 24px;
    font-weight: 950;
}

.scp-cart-checkout-button,
.scp-cart-continue-button {
    display: grid;
    place-items: center;
    min-height: 50px;
    border-radius: 18px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.scp-cart-checkout-button {
    background: linear-gradient(135deg, var(--scp-dark), #312e81);
    color: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.scp-cart-continue-button {
    background: #eef2ff;
    color: var(--scp-primary);
}

@media (max-width: 1200px) {
    .scp-cart-grid {
        grid-template-columns: 1fr;
    }

    .scp-cart-summary-card {
        position: static;
    }
}

@media (max-width: 900px) {
    .scp-cart-page-header {
        flex-direction: column;
    }

    .scp-cart-page-stat {
        width: 100%;
        min-width: 0;
    }

    .scp-cart-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .scp-cart-card-media {
        height: 110px;
    }

    .scp-cart-card-pricing {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .scp-cart-page {
        padding: 24px 0 50px;
    }

    .scp-cart-page-header {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .scp-cart-card {
        grid-template-columns: 1fr;
    }

    .scp-cart-card-media {
        height: 220px;
    }

    .scp-cart-card-pricing {
        grid-template-columns: 1fr;
    }

    .scp-cart-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .scp-cart-update-form {
        width: 100%;
        min-width: 0;
    }

    .scp-cart-update-row {
        flex-direction: column;
        align-items: stretch;
    }

    .scp-cart-update-row input,
    .scp-cart-update-row button,
    .scp-cart-remove-form button {
        width: 100%;
}
    
}


/* =========================================
   Checkout Page - Premium
========================================= */

.scp-checkout-page {
    padding: 40px 0 78px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.06), transparent 28%),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.05), transparent 30%),
        var(--scp-bg);
}

.scp-checkout-header {
    margin-bottom: 28px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #111827 0%, #312e81 55%, #6d28d9 100%);
    color: white;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.scp-checkout-badge {
    display: inline-grid;
    place-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.scp-checkout-header h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.scp-checkout-header p {
    max-width: 780px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
}

.scp-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.scp-checkout-main {
    min-width: 0;
}

.scp-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.scp-checkout-card,
.scp-checkout-summary {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.scp-checkout-card {
    padding: 24px;
}

.scp-checkout-card-head {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.scp-checkout-card-head > span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #eef2ff;
    color: var(--scp-primary);
    font-weight: 950;
}

.scp-checkout-card-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-checkout-card-head p {
    margin: 5px 0 0;
    color: var(--scp-muted);
    font-size: 13px;
    line-height: 1.7;
}

.scp-checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.scp-field.full {
    grid-column: 1 / -1;
}

.scp-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 900;
}

.scp-field input,
.scp-field select,
.scp-field textarea {
    width: 100%;
    border: 1px solid var(--scp-border);
    border-radius: 17px;
    background: #f8fafc;
    color: var(--scp-text);
    outline: 0;
    font-size: 14px;
    font-weight: 800;
}

.scp-field input,
.scp-field select {
    height: 50px;
    padding: 0 14px;
}

.scp-field textarea {
    padding: 14px;
    resize: vertical;
}

.scp-field input:focus,
.scp-field select:focus,
.scp-field textarea:focus {
    background: white;
    border-color: var(--scp-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.scp-checkout-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.scp-checkout-back,
.scp-checkout-submit {
    min-height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 950;
}

.scp-checkout-back {
    background: #eef2ff;
    color: var(--scp-primary);
}

.scp-checkout-submit {
    border: 0;
    background: linear-gradient(135deg, var(--scp-dark), #312e81);
    color: white;
    cursor: not-allowed;
    opacity: 0.85;
}

.scp-checkout-summary {
    position: sticky;
    top: 140px;
    padding: 24px;
}

.scp-checkout-summary h2 {
    margin: 0 0 18px;
    font-size: 23px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.scp-checkout-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f7;
}

.scp-checkout-item-image {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.scp-checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
}

.scp-checkout-item-info {
    min-width: 0;
}

.scp-checkout-item-info h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 950;
    color: var(--scp-dark);
    line-height: 1.4;
}

.scp-checkout-item-info span {
    display: block;
    margin-top: 4px;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 800;
}

.scp-checkout-item > strong {
    color: var(--scp-primary);
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
}

.scp-checkout-coupon {
    border-top: 1px solid #eef2f7;
    padding: 16px 0;
}

.scp-checkout-coupon-head {
    margin-bottom: 10px;
}

.scp-checkout-coupon-head strong {
    display: block;
    color: var(--scp-dark);
    font-size: 14px;
    font-weight: 950;
}

.scp-checkout-coupon-head span {
    display: block;
    margin-top: 3px;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.scp-checkout-coupon-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.scp-checkout-coupon-form input,
.scp-checkout-coupon-applied {
    min-height: 44px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.scp-checkout-coupon-form input {
    width: 100%;
    padding: 0 14px;
    color: var(--scp-dark);
    font-size: 13px;
    font-weight: 850;
    outline: none;
}

.scp-checkout-coupon-form input:focus {
    border-color: rgba(37, 99, 235, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.scp-checkout-coupon-form button,
.scp-checkout-coupon-applied button {
    min-height: 44px;
    border: 0;
    border-radius: 16px;
    padding: 0 16px;
    background: linear-gradient(135deg, var(--scp-primary), #1d4ed8);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.scp-checkout-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px 8px 14px;
}

.scp-checkout-coupon-applied span {
    display: block;
    color: var(--scp-muted);
    font-size: 11px;
    font-weight: 850;
}

.scp-checkout-coupon-applied strong {
    display: block;
    margin-top: 2px;
    color: #047857;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.03em;
}

.scp-checkout-coupon-applied button {
    background: #fee2e2;
    color: #991b1b;
    box-shadow: none;
}

.scp-checkout-summary-lines {
    border-top: 1px solid #eef2f7;
    padding-top: 10px;
}

.scp-checkout-summary-lines div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
}

.scp-checkout-summary-lines span {
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 850;
}

.scp-checkout-summary-lines strong {
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 950;
}

.scp-checkout-total {
    margin-top: 14px;
    border-radius: 22px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.scp-checkout-total span {
    color: var(--scp-muted);
    font-size: 14px;
    font-weight: 900;
}

.scp-checkout-total strong {
    color: var(--scp-primary);
    font-size: 24px;
    font-weight: 950;
}

.scp-checkout-note {
    margin-top: 14px;
    border-radius: 18px;
    padding: 13px;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .scp-checkout-grid {
        grid-template-columns: 1fr;
    }

    .scp-checkout-summary {
        position: static;
    }
}

@media (max-width: 700px) {
    .scp-checkout-header {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .scp-checkout-card,
    .scp-checkout-summary {
        padding: 18px;
        border-radius: 24px;
    }

    .scp-checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .scp-checkout-actions {
        flex-direction: column;
    }

    .scp-checkout-back,
    .scp-checkout-submit {
        width: 100%;
    }

    .scp-checkout-item {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .scp-checkout-item > strong {
        grid-column: 2;
    }

    .scp-checkout-coupon-form {
        grid-template-columns: 1fr;
    }

    .scp-checkout-coupon-form button {
        width: 100%;
    }
}

/* =========================================
   Checkout Success
========================================= */

.scp-checkout-submit {
    cursor: pointer;
    opacity: 1;
}

.scp-checkout-success-page {
    padding: 54px 0 86px;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.07), transparent 32%),
        var(--scp-bg);
}

.scp-success-card {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 34px;
    padding: 44px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}

.scp-success-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 28px;
    background: #dcfce7;
    color: #166534;
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 950;
}

.scp-success-card h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
    color: var(--scp-dark);
    letter-spacing: -0.04em;
}

.scp-success-card p {
    max-width: 620px;
    margin: 14px auto 28px;
    color: var(--scp-muted);
    line-height: 1.9;
}

.scp-success-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.scp-success-details div {
    border: 1px solid #eef2f7;
    background: #f8fafc;
    border-radius: 22px;
    padding: 16px;
}

.scp-success-details span {
    display: block;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 7px;
}

.scp-success-details strong {
    display: block;
    color: var(--scp-primary);
    font-size: 15px;
    font-weight: 950;
    word-break: break-word;
}

.scp-success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scp-success-primary,
.scp-success-secondary {
    min-height: 50px;
    border-radius: 999px;
    padding: 0 24px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 950;
}

.scp-success-primary {
    background: var(--scp-dark);
    color: white;
}

.scp-success-secondary {
    background: #eef2ff;
    color: var(--scp-primary);
}

@media (max-width: 700px) {
    .scp-success-card {
        padding: 28px 18px;
        border-radius: 26px;
    }

    .scp-success-details {
        grid-template-columns: 1fr;
    }
}

.scp-alert-error {
    margin-top: 18px;
    margin-bottom: 10px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 18px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.12);
}


/* =========================================
   Storefront Order Details Page
========================================= */

.scp-order-details-page {
    padding: 42px 0 82px;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.07), transparent 32%),
        var(--scp-bg);
}

.scp-order-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 32px;
    color: white;
    background: linear-gradient(135deg, #052e16 0%, #111827 48%, #312e81 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    margin-bottom: 24px;
}

.scp-order-badge {
    display: inline-grid;
    place-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.scp-order-hero h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.scp-order-hero p {
    margin: 12px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.85;
}

.scp-order-number-card {
    width: 260px;
    min-width: 260px;
    border-radius: 26px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scp-order-number-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 8px;
}

.scp-order-number-card strong {
    font-size: 19px;
    font-weight: 950;
    word-break: break-word;
}

.scp-order-status-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.scp-order-status-strip div {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.055);
}

.scp-order-status-strip span {
    display: block;
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 7px;
}

.scp-order-status-strip strong {
    color: var(--scp-primary);
    font-size: 17px;
    font-weight: 950;
    word-break: break-word;
}

.scp-order-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.scp-order-main {
    min-width: 0;
}

.scp-order-card,
.scp-order-summary-card {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.scp-order-card {
    padding: 22px;
    margin-bottom: 22px;
}

.scp-order-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.scp-order-card-head h2,
.scp-order-summary-card h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-order-card-head span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eef2ff;
    color: var(--scp-primary);
    font-size: 15px;
    font-weight: 950;
}

.scp-order-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.scp-order-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 210px;
    gap: 16px;
    padding: 16px;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    background: #f8fafc;
}

.scp-order-item-image {
    height: 118px;
    border-radius: 20px;
    background: white;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.scp-order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.scp-order-item-placeholder {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #e0e7ff;
    color: var(--scp-primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 950;
}

.scp-order-item-type {
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--scp-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scp-order-item-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    color: var(--scp-dark);
    line-height: 1.45;
}

.scp-order-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 8px;
}

.scp-order-item-meta span {
    color: var(--scp-muted);
    font-size: 12px;
    font-weight: 800;
}

.scp-order-item-notes {
    margin-top: 12px;
    border-radius: 16px;
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.7;
    white-space: pre-line;
}

.scp-order-digital-codes {
    margin-top: 12px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 12px;
}

.scp-order-digital-codes > strong {
    display: block;
    color: #9a3412;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 8px;
}

.scp-order-digital-codes div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-top: 1px solid #fed7aa;
}

.scp-order-digital-codes span {
    color: #7c2d12;
    font-size: 13px;
    font-weight: 950;
}

.scp-order-digital-codes small {
    color: #9a3412;
    font-size: 12px;
    font-weight: 850;
}

.scp-order-item-numbers {
    display: grid;
    gap: 10px;
    align-content: start;
}

.scp-order-item-numbers div {
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 17px;
    padding: 11px;
}

.scp-order-item-numbers span {
    display: block;
    color: var(--scp-muted);
    font-size: 11px;
    font-weight: 850;
    margin-bottom: 5px;
}

.scp-order-item-numbers strong {
    color: var(--scp-dark);
    font-size: 14px;
    font-weight: 950;
}

.scp-order-notes-text {
    margin: 0;
    color: #374151;
    line-height: 1.9;
    font-weight: 750;
}

.scp-order-sidebar {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scp-order-summary-card {
    padding: 24px;
}

.scp-order-summary-line,
.scp-order-info-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #eef2f7;
    padding: 12px 0;
}

.scp-order-summary-line span,
.scp-order-info-line span {
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 850;
}

.scp-order-summary-line strong,
.scp-order-info-line strong {
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 950;
    text-align: end;
    word-break: break-word;
}

.scp-order-summary-total {
    margin-top: 14px;
    border-radius: 22px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.scp-order-summary-total span {
    color: var(--scp-muted);
    font-size: 14px;
    font-weight: 900;
}

.scp-order-summary-total strong {
    color: var(--scp-primary);
    font-size: 24px;
    font-weight: 950;
}

.scp-order-actions {
    display: grid;
    gap: 10px;
}

.scp-order-primary-btn,
.scp-order-secondary-btn {
    min-height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 950;
}

.scp-order-primary-btn {
    background: var(--scp-dark);
    color: white;
}

.scp-order-secondary-btn {
    background: #eef2ff;
    color: var(--scp-primary);
}

@media (max-width: 1150px) {
    .scp-order-details-grid {
        grid-template-columns: 1fr;
    }

    .scp-order-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .scp-order-hero {
        flex-direction: column;
    }

    .scp-order-number-card {
        width: 100%;
        min-width: 0;
    }

    .scp-order-status-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scp-order-item {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .scp-order-item-numbers {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .scp-order-details-page {
        padding: 26px 0 58px;
    }

    .scp-order-hero {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .scp-order-status-strip {
        grid-template-columns: 1fr;
    }

    .scp-order-card,
    .scp-order-summary-card {
        padding: 18px;
        border-radius: 24px;
    }

    .scp-order-item {
        grid-template-columns: 1fr;
    }

    .scp-order-item-image {
        height: 210px;
    }

    .scp-order-item-numbers {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Order Tracking Page
========================================= */

.scp-track-page {
    padding: 44px 0 82px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(22, 163, 74, 0.07), transparent 32%),
        var(--scp-bg);
}

.scp-track-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 440px;
    gap: 26px;
    align-items: stretch;
}

.scp-track-hero {
    padding: 44px;
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #111827 0%, #312e81 52%, #052e16 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
}

.scp-track-badge {
    display: inline-grid;
    place-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 16px;
}

.scp-track-hero h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.scp-track-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
    font-size: 15px;
}

.scp-track-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
}

.scp-track-steps div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scp-track-steps strong {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--scp-primary);
    font-weight: 950;
    margin-bottom: 10px;
}

.scp-track-steps span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 850;
}

.scp-track-card {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 34px;
    padding: 30px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.scp-track-card h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 950;
    color: var(--scp-dark);
}

.scp-track-card p {
    margin: 10px 0 22px;
    color: var(--scp-muted);
    line-height: 1.8;
}

.scp-track-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scp-track-submit {
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--scp-dark), #312e81);
    color: white;
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.scp-track-error {
    margin-bottom: 16px;
    border-radius: 18px;
    padding: 13px 15px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .scp-track-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .scp-track-page {
        padding: 28px 0 58px;
    }

    .scp-track-hero,
    .scp-track-card {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .scp-track-steps {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Customer Order History
========================================= */

.scp-history-page {
    padding: 44px 0 82px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.07), transparent 32%),
        var(--scp-bg);
}

.scp-history-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch;
    padding: 36px;
    border-radius: 34px;
    color: white;
    background: linear-gradient(135deg, #111827 0%, #312e81 50%, #0f172a 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
    margin-bottom: 24px;
}

.scp-history-badge {
    display: inline-grid;
    place-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.scp-history-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.scp-history-hero p {
    margin: 14px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.85;
}

.scp-history-count-card {
    width: 220px;
    min-width: 220px;
    border-radius: 26px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scp-history-count-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 8px;
}

.scp-history-count-card strong {
    color: white;
    font-size: 42px;
    font-weight: 950;
}

.scp-history-table-card {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
    padding: 22px;
}

.scp-history-table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.scp-history-table-head h2 {
    margin: 0;
    color: var(--scp-dark);
    font-size: 24px;
    font-weight: 950;
}

.scp-history-table-head a {
    min-height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    padding: 0 15px;
    background: #eef2ff;
    color: var(--scp-primary);
    font-size: 13px;
    font-weight: 950;
}

.scp-history-table-wrap {
    overflow-x: auto;
    border-radius: 22px;
    border: 1px solid #eef2f7;
}

.scp-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: white;
}

.scp-history-table th {
    text-align: start;
    padding: 16px;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 950;
    border-bottom: 1px solid #eef2f7;
}

.scp-history-table td {
    padding: 16px;
    color: var(--scp-text);
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid #eef2f7;
}

.scp-history-table tr:last-child td {
    border-bottom: 0;
}

.scp-history-status,
.scp-history-payment {
    display: inline-grid;
    place-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 11px;
    font-size: 11px;
    font-weight: 950;
}

.scp-history-status {
    background: #eef2ff;
    color: var(--scp-primary);
}

.scp-history-payment {
    background: #ecfdf5;
    color: #166534;
}

.scp-history-view-btn {
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    padding: 0 13px;
    background: var(--scp-dark);
    color: white;
    font-size: 12px;
    font-weight: 950;
}

.scp-history-pagination {
    margin-top: 18px;
}

.scp-history-empty {
    background: white;
    border: 1px solid var(--scp-border);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
    padding: 46px 24px;
    text-align: center;
}

.scp-history-empty-icon {
    width: 76px;
    height: 76px;
    border-radius: 26px;
    background: #eef2ff;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 34px;
}

.scp-history-empty h2 {
    margin: 0;
    color: var(--scp-dark);
    font-size: 26px;
    font-weight: 950;
}

.scp-history-empty p {
    max-width: 560px;
    margin: 12px auto 22px;
    color: var(--scp-muted);
    line-height: 1.8;
}

.scp-history-empty a {
    min-height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    padding: 0 20px;
    background: var(--scp-dark);
    color: white;
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 800px) {
    .scp-history-hero {
        flex-direction: column;
        padding: 26px 18px;
        border-radius: 26px;
    }

    .scp-history-count-card {
        width: 100%;
        min-width: 0;
    }

    .scp-history-table-card {
        padding: 16px;
        border-radius: 24px;
    }

    .scp-history-table-head {
        flex-direction: column;
        align-items: stretch;
    }
}


/* =========================================
   Premium Customer Account Dashboard
========================================= */

.scp-account-page {
    padding: 44px 0 86px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 30%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05), transparent 35%),
        #07070a;
    min-height: 100vh;
}

.scp-account-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    padding: 38px;
    border-radius: 36px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(14, 14, 18, 0.92), rgba(24, 24, 28, 0.92)),
        radial-gradient(circle at 15% 15%, rgba(255, 178, 36, 0.28), transparent 35%),
        radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.26), transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.scp-account-hero::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        linear-gradient(90deg, transparent, rgba(255, 194, 71, 0.08), transparent);
    transform: rotate(-12deg);
    pointer-events: none;
}

.scp-account-hero-content,
.scp-account-profile-card {
    position: relative;
    z-index: 1;
}

.scp-account-badge {
    display: inline-grid;
    place-items: center;
    min-height: 35px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255, 184, 52, 0.14);
    border: 1px solid rgba(255, 194, 71, 0.28);
    color: #ffd27a;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 16px;
}

.scp-account-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(34px, 4.6vw, 64px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.scp-account-hero h1 span {
    background: linear-gradient(135deg, #ffffff, #ffb82e, #ff7a1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.scp-account-hero p {
    max-width: 790px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.9;
    font-size: 15px;
}

.scp-account-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.scp-account-primary-btn,
.scp-account-secondary-btn {
    min-height: 50px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 950;
}

.scp-account-primary-btn {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.30);
}

.scp-account-secondary-btn {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.scp-account-profile-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.scp-account-avatar {
    width: 82px;
    height: 82px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
    font-size: 34px;
    font-weight: 950;
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.26);
}

.scp-account-profile-card strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 6px;
}

.scp-account-profile-card span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

.scp-account-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.scp-account-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.98));
    border: 1px solid rgba(255, 237, 213, 0.9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.scp-account-stat-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.09);
    inset-inline-end: -35px;
    bottom: -40px;
}

.scp-account-stat-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: #111827;
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.scp-account-stat-card span {
    position: relative;
    z-index: 1;
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 8px;
}

.scp-account-stat-card strong {
    position: relative;
    z-index: 1;
    color: #111827;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.scp-account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.scp-account-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 237, 213, 0.8);
    border-radius: 32px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
    padding: 24px;
}

.scp-account-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.scp-account-panel-head h2 {
    margin: 0;
    color: #111827;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.scp-account-panel-head p {
    margin: 7px 0 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 13px;
    font-weight: 750;
}

.scp-account-panel-head a {
    min-height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    padding: 0 14px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 12px;
    font-weight: 950;
    border: 1px solid #fed7aa;
    white-space: nowrap;
}

.scp-account-orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scp-account-order-card {
    display: grid;
    grid-template-columns: minmax(180px, 1.1fr) repeat(3, minmax(110px, 0.7fr)) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: #fffaf3;
    border: 1px solid #ffedd5;
}

.scp-account-order-label {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 5px;
}

.scp-account-order-card strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 950;
}

.scp-account-order-card small {
    display: block;
    color: #64748b;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
}

.scp-account-order-card em {
    display: inline-grid;
    place-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 11px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.scp-account-payment-status {
    background: #ecfdf5 !important;
    color: #166534 !important;
}

.scp-account-view-order {
    min-height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    padding: 0 13px;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

.scp-account-sidebar {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.scp-account-latest-order {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scp-account-latest-order > span {
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
}

.scp-account-latest-order > strong {
    color: #111827;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.scp-account-latest-order div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.scp-account-latest-order small {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.scp-account-latest-order em {
    color: #111827;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.scp-account-latest-order a {
    margin-top: 6px;
    min-height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    font-size: 13px;
    font-weight: 950;
}

.scp-account-actions-list {
    display: grid;
    gap: 10px;
}

.scp-account-actions-list a {
    min-height: 52px;
    border-radius: 18px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #111827;
    font-size: 13px;
    font-weight: 950;
}

.scp-account-actions-list span {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: white;
}

.scp-account-empty,
.scp-account-mini-empty {
    border-radius: 24px;
    background: #fff7ed;
    border: 1px dashed #fdba74;
    padding: 26px;
    text-align: center;
}

.scp-account-empty div {
    font-size: 36px;
    margin-bottom: 10px;
}

.scp-account-empty h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 950;
}

.scp-account-empty p,
.scp-account-mini-empty {
    color: #64748b;
    line-height: 1.8;
    font-weight: 800;
}

.scp-account-empty a {
    margin-top: 14px;
    min-height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 17px;
    padding: 0 18px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

@media (max-width: 1250px) {
    .scp-account-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .scp-account-grid {
        grid-template-columns: 1fr;
    }

    .scp-account-sidebar {
        position: static;
    }
}

@media (max-width: 980px) {
    .scp-account-hero {
        grid-template-columns: 1fr;
    }

    .scp-account-order-card {
        grid-template-columns: 1fr 1fr;
    }

    .scp-account-view-order {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .scp-account-page {
        padding: 28px 0 62px;
    }

    .scp-account-hero {
        padding: 26px 18px;
        border-radius: 28px;
    }

    .scp-account-profile-card,
    .scp-account-panel {
        border-radius: 26px;
        padding: 18px;
    }

    .scp-account-stats-grid {
        grid-template-columns: 1fr;
    }

    .scp-account-order-card {
        grid-template-columns: 1fr;
    }

    .scp-account-panel-head {
        flex-direction: column;
    }
}


/* =========================================
   Customer Wishlist Page
========================================= */

.scp-wishlist-page {
    padding: 44px 0 86px;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 28%),
        radial-gradient(circle at top right, rgba(242, 201, 76, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    color: var(--scp-text);
}

.scp-wishlist-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch;
    padding: 38px;
    border-radius: 36px;
    color: var(--scp-text);
    background:
        radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.13), transparent 35%),
        radial-gradient(circle at 90% 20%, rgba(242, 201, 76, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #eff6ff 62%, #f8fafc 100%);
    border: 1px solid rgba(191, 219, 254, 0.92);
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.12);
    margin-bottom: 24px;
}

.scp-wishlist-badge {
    display: inline-grid;
    place-items: center;
    min-height: 35px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: var(--scp-primary);
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 16px;
}

.scp-wishlist-hero h1 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 62px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
    color: var(--scp-text);
}

.scp-wishlist-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--scp-muted);
    line-height: 1.9;
    font-size: 15px;
}

.scp-wishlist-count-card {
    width: 230px;
    min-width: 230px;
    border-radius: 28px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(191, 219, 254, 0.86);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.10);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scp-wishlist-count-card span {
    color: var(--scp-muted);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.scp-wishlist-count-card strong {
    color: var(--scp-primary);
    font-size: 46px;
    font-weight: 950;
}

.scp-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.scp-wishlist-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.scp-wishlist-remove-form {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    z-index: 3;
}

.scp-wishlist-remove-form button,
.scp-product-wishlist-form button {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #dbeafe, #ffffff);
    color: var(--scp-primary);
    font-size: 20px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}

.scp-wishlist-image {
    height: 240px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, #ffffff, #eff6ff);
    border-bottom: 1px solid #dbeafe;
}

.scp-wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.scp-wishlist-placeholder {
    width: 92px;
    height: 92px;
    border-radius: 30px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--scp-primary);
    font-size: 42px;
    font-weight: 950;
}

.scp-wishlist-content {
    padding: 20px;
}

.scp-wishlist-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.scp-wishlist-meta span,
.scp-wishlist-meta small {
    color: #64748b;
    font-size: 11px;
    font-weight: 950;
}

.scp-wishlist-content h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.4;
}

.scp-wishlist-content h2 a {
    color: #111827;
}

.scp-wishlist-content p {
    min-height: 48px;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 750;
}

.scp-wishlist-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.scp-wishlist-footer strong {
    color: #111827;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.scp-wishlist-footer button {
    min-height: 44px;
    border: 0;
    border-radius: 16px;
    padding: 0 15px;
    background: linear-gradient(135deg, var(--scp-primary), var(--scp-primary-hover));
    color: white;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
}

.scp-wishlist-empty {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 34px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 54px 24px;
    text-align: center;
}

.scp-wishlist-empty-icon {
    width: 88px;
    height: 88px;
    border-radius: 30px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #dbeafe, #ffffff);
    color: var(--scp-primary);
    font-size: 48px;
    font-weight: 950;
}

.scp-wishlist-empty h2 {
    margin: 0;
    color: #111827;
    font-size: 30px;
    font-weight: 950;
}

.scp-wishlist-empty p {
    max-width: 570px;
    margin: 12px auto 24px;
    color: #64748b;
    line-height: 1.8;
    font-weight: 800;
}

.scp-wishlist-empty a {
    min-height: 50px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--scp-primary), var(--scp-primary-hover));
    color: white;
    font-size: 14px;
    font-weight: 950;
}

.scp-wishlist-pagination {
    margin-top: 22px;
    color: white;
}

.scp-product-wishlist-form {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    z-index: 5;
}

.scp-product-details-wishlist-form button,
.scp-product-details-wishlist-link {
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    padding: 0 18px;
    display: inline-grid;
    place-items: center;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .scp-wishlist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .scp-wishlist-hero {
        flex-direction: column;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .scp-wishlist-count-card {
        width: 100%;
        min-width: 0;
    }

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

@media (max-width: 620px) {
    .scp-wishlist-page {
        padding: 28px 0 62px;
    }

    .scp-wishlist-grid {
        grid-template-columns: 1fr;
    }

    .scp-wishlist-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .scp-wishlist-footer button {
        width: 100%;
    }
}

/* Floating reseller application launcher and animated modal */
.scp-floating-reseller {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 94;
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #123a98 100%);
    box-shadow: 0 18px 42px rgba(30, 64, 175, .38);
    cursor: pointer;
    isolation: isolate;
    animation: scp-reseller-float 3.4s ease-in-out infinite;
}

.scp-floating-reseller:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 55px rgba(30, 64, 175, .48);
}

.scp-floating-reseller-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    color: #163b8c;
    background: #fff;
}

.scp-floating-reseller-icon svg { width: 25px; height: 25px; }

.scp-floating-reseller-label {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 900;
}

.scp-floating-reseller-ripple {
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 2px solid rgba(37, 99, 235, .42);
    border-radius: inherit;
    animation: scp-reseller-ripple 2.2s ease-out infinite;
}

.scp-reseller-modal-overlay[hidden] { display: none !important; }

.scp-reseller-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    padding: 22px;
    place-items: center;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(9px);
    animation: scp-reseller-overlay-in .2s ease-out both;
}

.scp-reseller-modal-overlay.is-closing {
    animation: scp-reseller-overlay-out .18s ease-in both;
}

.scp-reseller-modal {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 44px);
    animation: scp-reseller-modal-in .36s cubic-bezier(.2, .9, .25, 1.08) both;
}

.scp-reseller-modal-overlay.is-closing .scp-reseller-modal {
    animation: scp-reseller-modal-out .18s ease-in both;
}

.scp-reseller-modal .scp-reseller-application-card {
    max-height: calc(100vh - 44px);
}

.scp-reseller-modal .scp-reseller-application-intro,
.scp-reseller-modal .scp-reseller-application-form-wrap {
    overflow-y: auto;
}

.scp-reseller-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    background: rgba(15, 23, 42, .48);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.scp-reseller-modal-close:hover { transform: rotate(90deg); background: #dc2626; }

.scp-reseller-modal-open { overflow: hidden; }

@keyframes scp-reseller-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes scp-reseller-ripple {
    0% { opacity: .7; transform: scale(1); }
    75%, 100% { opacity: 0; transform: scale(1.18, 1.45); }
}

@keyframes scp-reseller-overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes scp-reseller-overlay-out { from { opacity: 1; } to { opacity: 0; } }

@keyframes scp-reseller-modal-in {
    from { opacity: 0; transform: translateY(35px) scale(.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scp-reseller-modal-out {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(18px) scale(.96); }
}

@media (max-width: 900px) {
    .scp-reseller-modal .scp-reseller-application-card {
        display: block;
        overflow-y: auto;
    }

    .scp-reseller-modal .scp-reseller-application-intro,
    .scp-reseller-modal .scp-reseller-application-form-wrap { overflow: visible; }

    .scp-reseller-modal .scp-reseller-application-intro { padding: 30px 52px 30px 25px; }
    .scp-reseller-modal .scp-reseller-application-benefits { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
    .scp-floating-reseller {
        right: 16px;
        bottom: 18px;
        min-height: 54px;
        padding: 6px;
    }

    .scp-floating-reseller-icon { width: 42px; height: 42px; flex-basis: 42px; }

    .scp-floating-reseller-label {
        position: absolute;
        right: 0;
        bottom: calc(100% + 9px);
        padding: 7px 11px;
        border-radius: 10px;
        color: #fff;
        background: #123a98;
        box-shadow: 0 8px 22px rgba(15, 23, 42, .2);
        font-size: 12px;
    }

    .scp-reseller-modal-overlay { padding: 10px; }
    .scp-reseller-modal { max-height: calc(100vh - 20px); }
    .scp-reseller-modal .scp-reseller-application-card { max-height: calc(100vh - 20px); }
    .scp-reseller-modal .scp-reseller-application-intro { padding: 26px 48px 24px 20px; }
    .scp-reseller-modal .scp-reseller-application-intro h2 { margin-top: 12px; font-size: 27px; }
    .scp-reseller-modal .scp-reseller-application-benefits { display: none; }
    .scp-reseller-modal .scp-reseller-application-note { margin-top: 14px; }
    .scp-reseller-modal-close { top: 10px; left: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .scp-floating-reseller,
    .scp-floating-reseller-ripple,
    .scp-reseller-modal-overlay,
    .scp-reseller-modal { animation: none !important; }
}

/* =========================================
   Product Reviews & Ratings
========================================= */

.scp-product-reviews-section {
    margin-top: 36px;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.09), transparent 30%),
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 28%),
        #ffffff;
    border: 1px solid #ffedd5;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.scp-product-reviews-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.scp-product-reviews-badge {
    display: inline-grid;
    place-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 12px;
}

.scp-product-reviews-head h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 950;
    letter-spacing: -0.045em;
}

.scp-product-reviews-head p {
    max-width: 680px;
    margin: 10px 0 0;
    color: #64748b;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 750;
}

.scp-product-rating-summary {
    min-width: 230px;
    padding: 20px;
    border-radius: 26px;
    background: #111827;
    color: white;
    display: flex;
    gap: 14px;
    align-items: center;
}

.scp-product-rating-summary > strong {
    font-size: 48px;
    font-weight: 950;
    letter-spacing: -0.07em;
    color: #facc15;
}

.scp-rating-stars {
    display: flex;
    gap: 2px;
    color: #cbd5e1;
    font-size: 20px;
    line-height: 1;
}

.scp-rating-stars.small {
    font-size: 14px;
}

.scp-rating-stars span.is-active {
    color: #facc15;
}

.scp-product-rating-summary small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 6px;
    font-size: 12px;
    font-weight: 850;
}

.scp-product-reviews-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.scp-product-review-form-card,
.scp-product-approved-reviews-card {
    border-radius: 28px;
    background: #fffaf3;
    border: 1px solid #ffedd5;
    padding: 24px;
}

.scp-product-review-form-card h3,
.scp-product-approved-reviews-card h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 950;
}

.scp-product-review-form-card p {
    margin: 10px 0 20px;
    color: #64748b;
    line-height: 1.75;
    font-size: 13px;
    font-weight: 800;
}

.scp-product-review-form {
    display: grid;
    gap: 14px;
}

.scp-review-field {
    display: grid;
    gap: 7px;
}

.scp-review-field label {
    color: #374151;
    font-size: 13px;
    font-weight: 950;
}

.scp-review-field input,
.scp-review-field textarea {
    width: 100%;
    border: 1px solid #fed7aa;
    background: white;
    border-radius: 17px;
    padding: 13px 14px;
    color: #111827;
    font-size: 14px;
    font-weight: 750;
    outline: none;
}

.scp-review-field textarea {
    resize: vertical;
}

.scp-review-rating-input {
    direction: ltr;
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.scp-review-rating-input input {
    display: none;
}

.scp-review-rating-input label {
    color: #cbd5e1;
    font-size: 30px;
    cursor: pointer;
    transition: 0.18s ease;
}

.scp-review-rating-input input:checked ~ label,
.scp-review-rating-input label:hover,
.scp-review-rating-input label:hover ~ label {
    color: #facc15;
    transform: translateY(-1px);
}

.scp-review-submit-btn {
    min-height: 50px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.scp-product-approved-reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.scp-product-approved-reviews-head span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #facc15;
    font-size: 14px;
    font-weight: 950;
}

.scp-approved-reviews-list {
    display: grid;
    gap: 12px;
}

.scp-approved-review-item {
    padding: 16px;
    border-radius: 22px;
    background: white;
    border: 1px solid #ffedd5;
}

.scp-approved-review-top {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.scp-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
    font-size: 20px;
    font-weight: 950;
}

.scp-approved-review-top strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 5px;
}

.scp-approved-review-top small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 850;
}

.scp-approved-review-item p {
    margin: 12px 0 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.85;
    font-weight: 750;
}

.scp-reviews-empty {
    text-align: center;
    border-radius: 24px;
    padding: 34px 18px;
    background: white;
    border: 1px dashed #fdba74;
}

.scp-reviews-empty div {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    background: #111827;
    color: #facc15;
    font-size: 28px;
    font-weight: 950;
}

.scp-reviews-empty h4 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 950;
}

.scp-reviews-empty p {
    max-width: 430px;
    margin: 10px auto 0;
    color: #64748b;
    line-height: 1.8;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .scp-product-reviews-head {
        flex-direction: column;
        align-items: stretch;
    }

    .scp-product-rating-summary {
        width: 100%;
    }

    .scp-product-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .scp-product-reviews-section {
        padding: 22px 16px;
        border-radius: 26px;
    }

    .scp-product-review-form-card,
    .scp-product-approved-reviews-card {
        padding: 18px;
        border-radius: 24px;
    }

    .scp-approved-review-top {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .scp-approved-review-top small {
        grid-column: 1 / -1;
    }
}


/* =========================================
   Recently Viewed Products
========================================= */

.scp-recently-viewed-section {
    margin-top: 28px;
    padding: 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.065), transparent 30%),
        radial-gradient(circle at top right, rgba(212, 162, 76, 0.055), transparent 28%),
        #ffffff;
    border: 1px solid var(--scp-border);
    box-shadow: var(--scp-shadow-sm);
}

.scp-recently-viewed-section .scp-section-heading {
    margin-bottom: 22px;
}

.scp-recently-viewed-section .scp-section-heading h2 {
    color: var(--scp-dark);
}

.scp-recently-viewed-section .scp-section-heading p {
    color: var(--scp-muted);
}

@media (max-width: 700px) {
    .scp-recently-viewed-section {
        padding: 20px 14px;
        border-radius: 24px;
    }
}

/* =========================================================
   Stage 89: SAFE Mobile / iPad Menu Patch ONLY
   لا تستبدل storefront.css بهذا الكود.
   انسخ هذا البلوك فقط إلى آخر:
   public/css/storefront/design-overrides.css
========================================================= */

/* على الكمبيوتر نخفي عناصر منيو الموبايل تماماً */
.scp-mobile-menu-toggle,
.scp-mobile-menu-head,
.scp-mobile-menu-backdrop {
    display: none !important;
}

/* Desktop: القائمة العادية تبقى طبيعية */
@media (min-width: 1025px) {
    .scp-nav[data-scp-mobile-menu],
    .scp-nav {
        position: static !important;
        inset: auto !important;
        z-index: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 22px !important;
        padding: 0 !important;
        background: transparent !important;
        border-inline: 0 !important;
        border-top: 1px solid #eef2f7 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .scp-nav .scp-mobile-menu-head {
        display: none !important;
    }

    .scp-nav a {
        width: auto !important;
        min-height: auto !important;
        display: inline-flex !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        white-space: nowrap !important;
    }

    .scp-nav a::after {
        content: none !important;
        display: none !important;
    }
}

/* Mobile + iPad: منيو جانبية احترافية */
@media (max-width: 1024px) {
    .scp-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9000 !important;
    }

    .scp-main-header {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 12px 0 !important;
    }

    .scp-logo {
        justify-content: center !important;
        text-align: center !important;
    }

    .scp-search {
        order: 2 !important;
        width: 100% !important;
        height: 46px !important;
        border-radius: 16px !important;
    }

    .scp-header-actions {
        order: 3 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .scp-header-action {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 50px !important;
        border-radius: 16px !important;
    }

    .scp-mobile-menu-toggle {
        order: 4 !important;
        width: 100% !important;
        min-height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 9px !important;
        border: 1px solid #dbeafe !important;
        border-radius: 18px !important;
        background: linear-gradient(135deg, var(--scp-dark), #172554) !important;
        color: #ffffff !important;
        box-shadow: 0 14px 32px rgba(15, 23, 42, .12) !important;
        cursor: pointer !important;
        font-family: inherit !important;
        font-weight: 950 !important;
    }

    .scp-mobile-menu-toggle span {
        width: 18px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        display: block !important;
    }

    .scp-mobile-menu-toggle small {
        font-size: 14px !important;
        color: #ffffff !important;
        font-weight: 950 !important;
    }

    body.scp-mobile-menu-open {
        overflow: hidden !important;
        height: 100dvh !important;
        touch-action: none !important;
    }

    .scp-mobile-menu-backdrop {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        z-index: 99990 !important;
        background: rgba(2, 6, 23, .68) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity .22s ease, visibility .22s ease !important;
    }

    .scp-mobile-menu-open .scp-mobile-menu-backdrop {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .scp-nav[data-scp-mobile-menu] {
        position: fixed !important;
        top: 0 !important;
        bottom: auto !important;
        inset-inline-start: 0 !important;
        inset-inline-end: auto !important;
        z-index: 99999 !important;
        width: min(88vw, 390px) !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding: 20px 18px 32px !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
        background-image:
            radial-gradient(circle at 18% 0%, rgba(37, 99, 235, .08), transparent 32%),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
        border: 0 !important;
        border-inline-end: 1px solid #e2e8f0 !important;
        box-shadow: 28px 0 80px rgba(2, 6, 23, .42) !important;
        transform: translateX(-108%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform .24s ease, opacity .24s ease, visibility .24s ease !important;
        isolation: isolate !important;
        scroll-snap-type: none !important;
    }

    html[dir="rtl"] .scp-nav[data-scp-mobile-menu] {
        inset-inline-start: auto !important;
        inset-inline-end: 0 !important;
        border-inline-end: 0 !important;
        border-inline-start: 1px solid #e2e8f0 !important;
        box-shadow: -28px 0 80px rgba(2, 6, 23, .42) !important;
        transform: translateX(108%) !important;
    }

    .scp-mobile-menu-open .scp-nav[data-scp-mobile-menu] {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .scp-nav[data-scp-mobile-menu] .scp-mobile-menu-head {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex: 0 0 auto !important;
        padding: 0 0 14px !important;
        margin: 0 0 8px !important;
        border-bottom: 1px solid #e5e7eb !important;
        background: transparent !important;
    }

    .scp-nav[data-scp-mobile-menu] .scp-mobile-menu-head strong {
        color: #0f172a !important;
        font-size: 18px !important;
        font-weight: 950 !important;
        line-height: 1.2 !important;
    }

    .scp-nav[data-scp-mobile-menu] .scp-mobile-menu-head button {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border: 0 !important;
        border-radius: 16px !important;
        background: #fee2e2 !important;
        color: #dc2626 !important;
        font-size: 26px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        display: grid !important;
        place-items: center !important;
        cursor: pointer !important;
        box-shadow: none !important;
    }

    .scp-nav[data-scp-mobile-menu] > a {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 14px !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
        border: 1px solid #e2e8f0 !important;
        background: #ffffff !important;
        color: #0f172a !important;
        font-size: 14px !important;
        font-weight: 950 !important;
        text-decoration: none !important;
        box-shadow: 0 10px 26px rgba(15, 23, 42, .06) !important;
        white-space: normal !important;
        opacity: 1 !important;
        transform: none !important;
        scroll-snap-align: none !important;
    }

    .scp-nav[data-scp-mobile-menu] > a::after {
        content: "›" !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        border-radius: 11px !important;
        display: grid !important;
        place-items: center !important;
        background: #eff6ff !important;
        color: #2563eb !important;
        font-size: 18px !important;
        font-weight: 950 !important;
    }

    html[dir="rtl"] .scp-nav[data-scp-mobile-menu] > a::after {
        content: "‹" !important;
    }

    .scp-product-card,
    .scp-product-image,
    .scp-product-body,
    .scp-product-grid,
    .scp-section,
    .scp-hero-section,
    .scp-dynamic-slider,
    .scp-dynamic-slide,
    .scp-brand-carousel {
        z-index: auto !important;
    }
}

@media (max-width: 540px) {
    .scp-header-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .scp-header-actions .scp-header-action:last-child {
        grid-column: 1 / -1 !important;
    }

    .scp-nav[data-scp-mobile-menu] {
        width: min(92vw, 350px) !important;
        padding: 18px 14px 30px !important;
    }

    .scp-nav[data-scp-mobile-menu] > a {
        min-height: 52px !important;
        font-size: 13px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 640px) {
    .scp-cookie-consent {
        inset-inline: 10px;
        bottom: 10px;
    }

    .scp-cookie-consent-inner {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 13px;
        border-radius: 16px;
    }

    .scp-cookie-consent-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 17px;
    }

    .scp-cookie-consent p {
        font-size: 12px;
        line-height: 1.65;
    }

    .scp-cookie-consent-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Privacy policy page */
.scp-policy-page {
    padding: clamp(32px, 6vw, 72px) 0;
}

.scp-policy-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: clamp(28px, 5vw, 54px);
}

.scp-policy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.scp-policy-hero h1 {
    margin: 0;
    color: #071225;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.scp-policy-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #64748b;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.9;
}

.scp-policy-hero small {
    display: inline-flex;
    margin-top: 22px;
    color: #0f172a;
    font-weight: 800;
}

.scp-policy-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 24px;
    align-items: start;
}

.scp-policy-summary-card,
.scp-policy-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.scp-policy-summary-card {
    position: sticky;
    top: 110px;
    padding: 24px;
}

.scp-policy-summary-card h2,
.scp-policy-section h2 {
    margin: 0;
    color: #071225;
    font-size: 22px;
}

.scp-policy-summary-card ul {
    display: grid;
    gap: 12px;
    margin: 18px 0 24px;
    padding: 0;
    list-style: none;
}

.scp-policy-summary-card li {
    position: relative;
    color: #475569;
    line-height: 1.75;
    padding-inline-start: 26px;
}

.scp-policy-summary-card li::before {
    content: "✓";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    color: #16a34a;
    font-weight: 900;
}

.scp-policy-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    padding: 13px 18px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.scp-policy-card {
    padding: clamp(22px, 4vw, 40px);
}

.scp-policy-section {
    padding: 0 0 26px;
    margin: 0 0 26px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.scp-policy-section:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.scp-policy-section p {
    margin: 12px 0 0;
    color: #475569;
    line-height: 2;
    font-size: 16px;
}

@media (max-width: 900px) {
    .scp-policy-layout {
        grid-template-columns: 1fr;
    }

    .scp-policy-summary-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .scp-policy-page {
        padding: 22px 0 42px;
    }

    .scp-policy-hero,
    .scp-policy-summary-card,
    .scp-policy-card {
        border-radius: 22px;
    }

    .scp-policy-hero {
        padding: 24px;
    }

    .scp-policy-card {
        padding: 22px;
    }
}
.scp-reseller-application-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.scp-reseller-application-card {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.35fr);
    border: 1px solid rgba(30, 64, 175, .12);
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 75px rgba(15, 23, 42, .12);
}

.scp-reseller-application-intro {
    position: relative;
    padding: clamp(32px, 5vw, 64px);
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(56, 189, 248, .34), transparent 36%),
        linear-gradient(145deg, #07152f 0%, #123d9b 65%, #2366dc 100%);
}

.scp-reseller-application-intro::after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    inset-inline-end: -70px;
    bottom: -75px;
    border: 35px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.scp-reseller-application-badge {
    display: inline-flex;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 800;
}

.scp-reseller-application-intro h2 {
    margin: 20px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 43px);
    line-height: 1.2;
}

.scp-reseller-application-intro > p {
    margin: 0;
    color: #dbeafe;
    line-height: 1.9;
}

.scp-reseller-application-benefits {
    display: grid;
    gap: 13px;
    margin: 28px 0;
}

.scp-reseller-application-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
}

.scp-reseller-application-benefits span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #052e16;
    background: #86efac;
}

.scp-reseller-application-note {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: 13px;
}

.scp-reseller-application-form-wrap {
    padding: clamp(28px, 4vw, 48px);
}

.scp-reseller-application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.scp-reseller-field {
    display: grid;
    gap: 7px;
}

.scp-reseller-field > span {
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.scp-reseller-field input,
.scp-reseller-field select,
.scp-reseller-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #dbe3ef;
    border-radius: 13px;
    outline: none;
    background: #f8fafc;
    color: #0f172a;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.scp-reseller-field textarea { resize: vertical; }

.scp-reseller-field input:focus,
.scp-reseller-field select:focus,
.scp-reseller-field textarea:focus {
    border-color: var(--scp-primary, #2563eb);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.scp-reseller-field small,
.scp-reseller-form-error { color: #dc2626; font-size: 12px; }

.scp-reseller-field-wide { grid-column: 1 / -1; }

.scp-reseller-terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

.scp-reseller-terms input { margin-top: 4px; }
.scp-reseller-terms a { color: var(--scp-primary, #2563eb); font-weight: 800; }

.scp-reseller-submit {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--scp-primary, #2563eb), #1744a5);
    box-shadow: 0 12px 25px rgba(37, 99, 235, .22);
    font-weight: 900;
    cursor: pointer;
}

.scp-reseller-application-success {
    display: grid;
    min-height: 310px;
    place-content: center;
    gap: 10px;
    padding: 30px;
    border: 1px solid #bbf7d0;
    border-radius: 22px;
    color: #166534;
    background: #f0fdf4;
    text-align: center;
}

.scp-reseller-application-success strong { font-size: 24px; }

.scp-reseller-application-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.scp-reseller-landing {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 72px) 0 clamp(50px, 7vw, 96px);
    background:
        radial-gradient(circle at 12% 12%, rgba(59, 130, 246, .12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 48%, #f8fafc 100%);
}

.scp-reseller-landing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
}

.scp-reseller-landing-breadcrumb a {
    color: var(--scp-primary, #2563eb);
    font-weight: 800;
}

.scp-reseller-landing-card {
    grid-template-columns: minmax(330px, .95fr) minmax(0, 1.25fr);
    box-shadow: 0 35px 90px rgba(15, 23, 42, .15);
}

.scp-reseller-landing-intro h1 {
    position: relative;
    z-index: 1;
    margin: 20px 0 12px;
    color: #fff;
    font-size: clamp(31px, 3.4vw, 48px);
    line-height: 1.18;
}

.scp-reseller-landing-intro > * {
    position: relative;
    z-index: 1;
}

.scp-reseller-landing-summary {
    display: grid;
    gap: 12px;
    margin: 28px 0 24px;
}

.scp-reseller-landing-summary h2 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 20px;
}

.scp-reseller-landing-summary div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.scp-reseller-landing-summary div span {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    place-items: center;
    border-radius: 50%;
    color: #052e16;
    background: #86efac;
}

.scp-reseller-landing-content {
    margin: 22px 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 17px;
    background: rgba(255, 255, 255, .08);
    color: #dbeafe;
    line-height: 1.85;
}

.scp-reseller-landing-content h2,
.scp-reseller-landing-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
}

.scp-reseller-landing-content p { margin: 0 0 12px; }
.scp-reseller-landing-content p:last-child { margin-bottom: 0; }

.scp-reseller-landing-form-heading {
    margin-bottom: 25px;
}

.scp-reseller-landing-form-heading span {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 12px;
    font-weight: 900;
}

.scp-reseller-landing-form-heading h2 {
    margin: 12px 0 7px;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 33px);
}

.scp-reseller-landing-form-heading p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .scp-reseller-application-card { grid-template-columns: 1fr; }
    .scp-reseller-landing-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .scp-reseller-application-card { border-radius: 22px; }
    .scp-reseller-application-form { grid-template-columns: 1fr; }
    .scp-reseller-field-wide { grid-column: auto; }
    .scp-reseller-application-intro,
    .scp-reseller-application-form-wrap { padding: 25px 20px; }
    .scp-reseller-landing { padding-top: 20px; }
    .scp-reseller-landing-breadcrumb { margin-bottom: 14px; }
    .scp-reseller-landing-intro h1 { font-size: 31px; }
    .scp-reseller-landing-content { padding: 15px; }
}

.scp-catalog-infinite-scroll a,
.scp-catalog-infinite-scroll button {
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #eff6ff;
    color: #1d4ed8;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.scp-catalog-infinite-scroll [hidden] {
    display: none !important;
}

.scp-catalog-infinite-scroll.has-error {
    color: #b91c1c;
}
