body.bg-background {
    max-width: none !important;
    margin: 0 auto;
    background-color: hsl(var(--background));
    background-image:
        radial-gradient(ellipse 90% 60% at 50% -30%, hsl(var(--primary) / 0.18), transparent 70%),
        radial-gradient(ellipse 50% 40% at 100% 10%, hsl(var(--primary) / 0.06), transparent),
        radial-gradient(ellipse 40% 30% at 0% 20%, hsl(var(--primary) / 0.05), transparent);
    background-attachment: fixed;
}

header.sticky,
.site-header {
    border-bottom: 1px solid hsl(var(--border) / 0.35);
    box-shadow: 0 4px 24px hsl(0 0% 0% / 0.22);
    background: hsl(var(--secondary) / 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header__top {
    border-bottom: 1px solid hsl(var(--border) / 0.2);
}

.site-header__top-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4rem;
}

.site-header__brand-link {
    display: block;
    outline: none;
}

.site-header__search {
    position: relative;
    flex: 1;
    max-width: 28rem;
    margin: 0 auto;
}

.site-header__search-wrap {
    position: relative;
}

.site-header__search-input {
    display: block;
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem 0 2.5rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--input) / 0.75);
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header__search-input::placeholder {
    color: hsl(var(--foreground) / 0.45);
}

.site-header__search-input:focus {
    outline: none;
    border-color: hsl(var(--primary) / 0.55);
    background: hsl(var(--input) / 0.95);
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.12);
}

.site-header__search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    transform: translateY(-50%);
    color: hsl(var(--foreground) / 0.45);
    pointer-events: none;
}

.site-header__search-results {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 50;
    max-height: 24rem;
    overflow-y: auto;
    border-radius: 0.85rem;
    border: 1px solid hsl(var(--border) / 0.4);
    background: hsl(var(--secondary) / 0.98);
    box-shadow: 0 12px 32px hsl(0 0% 0% / 0.28);
}

.site-header__search-results-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem;
}

.site-header__search-mobile {
    position: relative;
    padding: 0.65rem 1rem 0.85rem;
    border-bottom: 1px solid hsl(var(--border) / 0.2);
}

.site-header__search-results--mobile {
    position: absolute;
    top: calc(100% - 0.25rem);
    left: 1rem;
    right: 1rem;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: auto;
}

@media (max-width: 767px) {
    .site-header__top-inner.container {
        padding-right: 0.5rem;
    }

    .site-header__actions .site-header__icon-btn--mobile-only:last-child {
        margin-right: -0.25rem;
    }
}

.site-header__icon-btn,
.site-header__locale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.35);
    color: hsl(var(--foreground));
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.site-header__icon-btn {
    width: 2.25rem;
    padding: 0;
}

.site-header__icon-btn--mobile-only {
    display: inline-flex;
}

@media (min-width: 768px) {
    .site-header__icon-btn--mobile-only {
        display: none !important;
    }
}

.site-header__locale {
    padding: 0 0.7rem 0 0.55rem;
}

.site-header__locale img,
.site-header__locale .legacy-id-flag {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    object-fit: cover;
}

.site-header__icon-btn:hover,
.site-header__locale:hover {
    background: hsl(var(--muted) / 0.55);
    border-color: hsl(var(--primary) / 0.35);
}

.site-header__nav {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.75rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.site-header__nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.site-header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.72);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__nav-link:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--muted) / 0.45);
}

.site-header__nav-link.is-active {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.12);
}

.site-header__nav-link .iconly svg {
    width: 1.05rem;
    height: 1.05rem;
}

.site-header__auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.site-header__auth-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 0.65rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.85);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-header__auth-link:hover {
    background: hsl(var(--muted) / 0.45);
}

.site-header__auth-link--primary {
    border-color: hsl(var(--primary) / 0.45);
    background: hsl(var(--primary) / 0.14);
    color: hsl(var(--primary));
}

.site-header__auth-link--primary:hover {
    background: hsl(var(--primary) / 0.22);
}

.site-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: min(8.5rem, 40vw);
}

.site-header__brand--drawer {
    max-width: 7.5rem;
}

.site-header__logo {
    display: block;
    height: 1.875rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.site-header__logo--drawer {
    height: 2.5rem;
}

@media (min-width: 1024px) {
    .site-header__brand {
        max-width: 12rem;
    }

    .site-header__logo {
        height: 2.5rem;
    }
}

.container {
    max-width: 80rem;
}

.bg-title-product {
    background-color: hsl(var(--popular-background)) !important;
    background-image: var(--popular-image), url('/img/card/bg-title-product.svg') !important;
    background-repeat: no-repeat, repeat-x !important;
    background-position: center, top !important;
    background-size: cover, clamp(40em, 80rem, 80em) auto !important;
    border: 1px solid hsl(var(--border) / 0.4);
}

a.bg-title-product {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.bg-title-product:hover {
    transform: translateY(-2px);
    border-color: hsl(var(--primary) / 0.6);
    box-shadow: 0 12px 32px hsl(var(--primary) / 0.15);
}

#popular-cards-container li a {
    min-height: 5.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

#cards-container .group > div {
    border: 1px solid hsl(var(--border) / 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#cards-container .group:hover > div {
    border-color: hsl(var(--primary) / 0.7);
    box-shadow: 0 16px 40px hsl(var(--primary) / 0.12);
}

.tab {
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.tab.active {
    background: hsl(var(--muted)) !important;
    color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary) / 0.55) !important;
    box-shadow: none;
}

.tab:not(.active):hover {
    background: hsl(var(--accent) / 0.8);
    border-color: hsl(var(--border) / 0.5);
}

.tab.active:hover,
.tab.active:focus,
.tab.active:focus-visible {
    background: hsl(var(--muted)) !important;
    color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary) / 0.55) !important;
}

.skeleton-banner {
    background: linear-gradient(90deg, hsl(var(--muted)) 25%, hsl(var(--accent)) 50%, hsl(var(--muted)) 75%) !important;
    background-size: 200% 100% !important;
    animation: lapak-shimmer 1.5s infinite !important;
}

@keyframes lapak-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.swiper-slide img.rounded-3xl {
    border: 1px solid hsl(var(--border) / 0.3);
    box-shadow: 0 20px 50px hsl(0 0% 0% / 0.35);
}

section.relative.flex.items-center.overflow-hidden {
    min-height: auto !important;
}

@media (min-width: 1024px) {
    section.relative.flex.items-center.overflow-hidden {
        min-height: 22rem !important;
    }
}
h3.text-lg.font-semibold.uppercase {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h3.text-lg.font-semibold.uppercase::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, hsl(var(--primary) / 0.5), transparent);
    margin-left: 0.75rem;
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid hsl(var(--border) / 0.35);
    background:
        radial-gradient(ellipse 70% 50% at 50% 100%, hsl(var(--primary) / 0.06), transparent 70%),
        hsl(var(--secondary) / 0.95);
}

.site-footer__inner {
    padding: 2.5rem 1rem 1.5rem;
}

@media (min-width: 768px) {
    .site-footer__inner {
        padding: 3rem 1.25rem 1.75rem;
    }
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.35fr 1fr 0.85fr 0.85fr;
        gap: 2rem;
    }
}

.site-footer__brand-link {
    display: inline-block;
    margin-bottom: 0.85rem;
}

.site-footer__logo {
    display: block;
    height: 2.5rem;
    width: auto;
    max-width: 10rem;
    object-fit: contain;
}

.site-footer__desc {
    margin: 0 0 1.25rem;
    max-width: 22rem;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: hsl(var(--foreground) / 0.72);
}

.site-footer__payments {
    padding: 1rem;
    border-radius: 0.85rem;
    border: 1px solid hsl(var(--border) / 0.4);
    background: hsl(var(--muted) / 0.65);
}

.site-footer__payments-title {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.site-footer__payment-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.site-footer__payment-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: hsl(var(--secondary));
    background: #fff;
}

.site-footer__payment-more {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-decoration: none;
}

.site-footer__payment-more:hover {
    text-decoration: underline;
}

.site-footer__heading {
    margin: 0 0 0.85rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.site-footer__heading--spaced {
    margin-top: 1.5rem;
}

.site-footer__wa-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border) / 0.45);
    background: hsl(var(--muted) / 0.55);
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.site-footer__wa-btn:hover {
    border-color: hsl(var(--primary) / 0.45);
    background: hsl(var(--accent));
}

.site-footer__wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    color: #fff;
    background: #22c55e;
    flex-shrink: 0;
}

.site-footer__wa-text {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
}

.site-footer__wa-chevron {
    flex-shrink: 0;
    color: hsl(var(--foreground) / 0.45);
}

.site-footer__contact-list {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.site-footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: hsl(var(--foreground) / 0.7);
}

.site-footer__contact-list svg {
    flex-shrink: 0;
    color: hsl(var(--foreground) / 0.45);
}

.site-footer__contact-list a {
    color: inherit;
    text-decoration: none;
}

.site-footer__contact-list a:hover {
    color: hsl(var(--primary));
}

.site-footer__guarantee-title {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.site-footer__guarantee-text {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    line-height: 1.55;
    color: hsl(var(--foreground) / 0.62);
}

.site-footer__guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
}

.site-footer__guarantee-badge svg {
    color: #4ade80;
}

.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.site-footer__links a {
    font-size: 0.8125rem;
    color: hsl(var(--foreground) / 0.68);
    text-decoration: none;
    transition: color 0.15s;
}

.site-footer__links a:hover {
    color: hsl(var(--primary));
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s, opacity 0.15s;
}

.site-footer__social:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.site-footer__social--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.site-footer__social--tt {
    background: #111;
    border: 1px solid hsl(var(--border) / 0.4);
}

.site-footer__social--wa {
    background: #22c55e;
}

.site-footer__security {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding: 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border) / 0.4);
    background: hsl(var(--muted) / 0.45);
}

.site-footer__security svg {
    flex-shrink: 0;
    color: #4ade80;
}

.site-footer__security strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.site-footer__security span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    color: hsl(var(--foreground) / 0.55);
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px dashed hsl(var(--border) / 0.45);
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer__bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: left;
    }
}

.site-footer__copyright {
    margin: 0;
    font-size: 0.75rem;
    color: hsl(var(--foreground) / 0.55);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

.site-footer__legal a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-decoration: none;
}

.site-footer__legal a:hover {
    text-decoration: underline;
}

.site-footer__locale {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border) / 0.4);
    background: hsl(var(--muted) / 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.75);
}

.site-footer__locale .legacy-id-flag {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    object-fit: cover;
}

.legacy-id-flag--rect {
    display: block;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px hsl(var(--border) / 0.35);
}

.legacy-id-flag--circle {
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.legacy-phone-input {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.legacy-phone-input__prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 0.65rem;
    border: 1px solid hsl(var(--border) / 0.5);
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
    background: hsl(var(--muted) / 0.45);
}

.legacy-phone-input__prefix .legacy-id-flag--rect {
    width: 1.25rem;
    height: auto;
    aspect-ratio: 3 / 2;
}

.legacy-phone-input__field {
    min-width: 0;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.site-footer__fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    color: #fff;
    background: #22c55e;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.site-footer__fab:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45);
}

.site-footer__fab--custom {
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.site-footer__fab--custom:hover {
    box-shadow: none;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.site-footer__fab-icon {
    display: block;
    width: 1.625rem;
    height: 1.625rem;
    flex-shrink: 0;
}

.site-footer__fab-icon--custom {
    width: 100%;
    height: 100%;
    max-width: 4.5rem;
    max-height: 4.5rem;
    object-fit: contain;
    object-position: center;
}

.legal-page {
    padding-bottom: 3rem;
}

.legal-page__hero {
    padding: 2.5rem 0 1.75rem;
    border-bottom: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--secondary) / 0.45);
}

.legal-page__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: hsl(var(--primary));
}

.legal-page__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: hsl(var(--foreground));
}

.legal-page__meta {
    margin: 0.65rem 0 0;
    font-size: 0.8125rem;
    color: hsl(var(--foreground) / 0.55);
}

.legal-page__body {
    padding-top: 2rem;
}

.legal-page__content {
    max-width: 48rem;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.4);
    background: hsl(var(--muted) / 0.45);
    color: hsl(var(--foreground) / 0.88);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.legal-page__content h2 {
    margin: 1.75rem 0 0.65rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.legal-page__content h2:first-child {
    margin-top: 0;
}

.legal-page__content p {
    margin: 0 0 0.85rem;
}

.legal-page__content ul,
.legal-page__content ol {
    margin: 0 0 0.85rem;
    padding-left: 1.25rem;
}

.legal-page__content li {
    margin-bottom: 0.35rem;
}

.legal-page__content a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

@media (max-width: 639px) {
    .legal-page__hero {
        padding: 2rem 0 1.25rem;
    }

    .legal-page__content {
        padding: 1.1rem;
    }
}

@media (min-width: 768px) {
    .site-footer__fab {
        right: max(1.5rem, env(safe-area-inset-right, 0px));
        bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    }

    .site-footer__fab--custom {
        width: 5rem;
        height: 5rem;
    }

    .site-footer__fab-icon--custom {
        max-width: 5rem;
        max-height: 5rem;
    }
}

@media (max-width: 767px) {
    .site-footer__fab--custom {
        width: 4.75rem;
        height: 4.75rem;
    }

    .site-footer__fab-icon--custom {
        max-width: 4.75rem;
        max-height: 4.75rem;
    }
}

input#searchInputDesktop,
input#searchInputMobile {
    background: hsl(var(--input) / 0.9) !important;
    color: hsl(var(--foreground)) !important;
}

input#searchInputDesktop::placeholder,
input#searchInputMobile::placeholder {
    color: hsl(var(--muted-foreground) / 0.75) !important;
}

.bg-button-gradient-theme {
    background-color: hsl(var(--primary)) !important;
    background-image: none !important;
    background-size: auto !important;
    background-position: initial !important;
}

.bg-button-gradient-theme::before,
.bg-button-gradient-theme:before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

.bg-button-gradient-theme:hover {
    background-color: hsl(var(--primary) / 0.9) !important;
    background-image: none !important;
}

.hero-banner-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero top row: banner + flash sale side-by-side on desktop */
.hero-top-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem 0;
}

.hero-fs-sidebar {
    flex-direction: column;
}

@media (min-width: 1024px) {
    .hero-banner-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 20rem;
        gap: 1.25rem;
        align-items: stretch;
        padding-top: 0.75rem;
    }

    .hero-top-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 22rem;
        gap: 1.25rem;
        align-items: stretch;
        padding: 0.75rem 0 0;
    }

    .hero-fs-sidebar {
        min-width: 0;
    }
}

.hero-banner-main {
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.hero-banner-main .swiper-wrapper {
    align-items: stretch;
}

.hero-banner-slide {
    width: 100% !important;
    height: auto;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.hero-banner-slide__frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background: hsl(var(--muted) / 0.12);
    line-height: 0;
}

.hero-banner-slide__frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1024px) {
    .hero-banner-main {
        border-radius: 1rem;
    }

    .hero-banner-slide__frame {
        border-radius: 1rem;
    }

    .hero-banner-slide__frame img {
        border-radius: 1rem;
    }

    .hero-banner-main .swiper-button-prev,
    .hero-banner-main .swiper-button-next {
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    .hero-banner-main .swiper-button-prev {
        left: 0.75rem;
    }

    .hero-banner-main .swiper-button-next {
        right: 0.75rem;
    }

    .hero-banner-main .swiper-pagination {
        bottom: 0.65rem !important;
    }
}

.hero-side-card {
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 11rem;
    padding: 1.25rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border) / 0.45);
    background:
        linear-gradient(135deg, hsl(var(--primary) / 0.22) 0%, hsl(var(--secondary) / 0.95) 55%, hsl(var(--background) / 0.98) 100%);
    box-shadow: 0 12px 32px hsl(0 0% 0% / 0.22);
}

.hero-side-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-card-image);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 92%;
    opacity: 0.95;
    pointer-events: none;
}

.hero-side-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, hsl(var(--background) / 0.92) 0%, hsl(var(--background) / 0.55) 45%, transparent 72%);
    pointer-events: none;
}

.hero-side-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 68%;
}

.hero-side-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: hsl(var(--foreground));
}

.hero-side-card__text {
    font-size: 0.72rem;
    line-height: 1.45;
    color: hsl(var(--muted-foreground));
}

.hero-side-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    width: fit-content;
    padding: 0.45rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    background-color: hsl(var(--primary));
    background-image: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-side-card__btn:hover {
    background-color: hsl(var(--primary) / 0.9);
    transform: translateY(-1px);
}

.game-deskripsi__card,
.game-rating-card,
.game-reviews-list {
    background: hsl(var(--card) / 0.45);
}

.game-deskripsi__toggle,
.game-reviews-list > .px-4 {
    background: hsl(var(--card) / 0.65);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.game-deskripsi__toggle:hover {
    background: hsl(var(--card) / 0.8);
}

.game-deskripsi__chevron {
    transition: transform 0.25s ease;
    transform: rotate(180deg);
}

.game-deskripsi__toggle[aria-expanded="false"] .game-deskripsi__chevron {
    transform: rotate(0deg);
}

.game-deskripsi__toggle[aria-expanded="false"] {
    border-bottom-color: transparent;
}

.game-deskripsi__body {
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
    max-height: 2000px;
    opacity: 1;
    overflow: hidden;
    white-space: pre-line;
}

.game-deskripsi__body.is-collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
}

.game-deskripsi__body p {
    margin-bottom: 0.75rem;
}

.game-deskripsi__body p:last-child {
    margin-bottom: 0;
}

.game-stars {
    display: inline-flex;
    gap: 0.1rem;
    line-height: 1;
}

.game-stars__icon {
    color: hsl(var(--muted-foreground) / 0.35);
    font-size: 1.1rem;
}

.game-stars__icon--filled {
    color: #f5c518;
}

.game-stars--sm .game-stars__icon {
    font-size: 0.85rem;
}

.game-rating-card__score {
    color: hsl(var(--foreground));
}

.game-reviews-list__scroll {
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--primary) / 0.4) transparent;
}

.game-review-item {
    background: hsl(var(--background) / 0.35);
}

.review-star-btn {
    border: none;
    background: transparent;
    color: hsl(var(--muted-foreground) / 0.35);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.15rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.review-star-btn:hover,
.review-star-btn.is-active {
    color: #f5c518;
    transform: scale(1.05);
}

.txn-page {
    padding-bottom: 3rem;
}

.txn-hero {
    padding: 2.5rem 0 1.5rem;
}

.txn-hero__inner {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .txn-hero__inner {
        grid-template-columns: 1fr 1.1fr;
        align-items: center;
        gap: 2rem;
    }
}

.txn-hero__copy h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: hsl(var(--foreground));
}

.txn-hero__copy p {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
    max-width: 36rem;
}

.txn-search-card {
    border: 1px solid hsl(var(--border) / 0.35);
    border-radius: 1rem;
    background: hsl(var(--card) / 0.55);
    padding: 1.25rem;
    box-shadow: 0 12px 40px hsl(var(--background) / 0.35);
}

.txn-search-card h2 {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.txn-search-card > p {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: hsl(var(--muted-foreground));
}

.txn-search-card__field {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .txn-search-card__field {
        flex-direction: row;
    }
}

.txn-search-card__input {
    flex: 1;
    height: 2.75rem;
    border-radius: 0.65rem;
    border: 1px solid hsl(var(--border) / 0.45);
    background: hsl(var(--input));
    color: hsl(var(--foreground));
    padding: 0 0.9rem;
    font-size: 0.875rem;
}

.txn-search-card__input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 1px hsl(var(--primary) / 0.35);
}

.txn-search-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding: 0 1.1rem;
    border: none;
    border-radius: 0.65rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.txn-search-card__btn:hover {
    background: hsl(var(--primary) / 0.9);
    transform: translateY(-1px);
}

.txn-recent {
    padding-top: 2rem;
}

.txn-recent__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.txn-recent__head h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.txn-recent__head p {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
}

.txn-recent__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #86efac;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.txn-recent__live::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #22c55e;
}

.txn-recent__live.is-pulse::before {
    animation: txn-live-pulse 0.6s ease;
}

@keyframes txn-live-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.65; }
}

.txn-cards-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .txn-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .txn-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.txn-cards-empty {
    grid-column: 1 / -1;
    border: 1px dashed hsl(var(--border) / 0.45);
    border-radius: 1rem;
    background: hsl(var(--card) / 0.35);
    padding: 3rem 1.5rem;
    text-align: center;
    color: hsl(var(--muted-foreground));
}

.txn-cards-empty svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    opacity: 0.7;
}

.txn-cards-empty h3 {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.txn-cards-empty p {
    margin-top: 0.35rem;
    font-size: 0.85rem;
}

.txn-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.5);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.txn-card:hover {
    border-color: hsl(var(--primary) / 0.45);
    background: hsl(var(--card) / 0.72);
    transform: translateY(-2px);
}

.txn-card__top {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.txn-card__thumb {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.65rem;
    overflow: hidden;
    flex-shrink: 0;
    background: hsl(var(--muted) / 0.35);
}

.txn-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txn-card__info {
    min-width: 0;
    flex: 1;
}

.txn-card__game {
    font-size: 0.95rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.txn-card__product {
    margin-top: 0.2rem;
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.txn-card__invoice {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: hsl(var(--primary));
}

.txn-card__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid hsl(var(--border) / 0.25);
}

.txn-card__meta-left,
.txn-card__meta-right {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.txn-card__meta-right {
    align-items: flex-end;
    text-align: right;
}

.txn-card__date {
    font-size: 0.72rem;
    color: hsl(var(--muted-foreground));
}

.txn-card__total {
    font-size: 0.9rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.txn-card__cta {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: hsl(var(--primary));
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.txn-card:hover .txn-card__cta {
    opacity: 1;
    transform: translateY(0);
}

.txn-status,
.txn-pay {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.15rem 0.5rem;
    border-radius: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.txn-status--success { background: #d1fae5; color: #065f46; }
.txn-status--process { background: #e9d5ff; color: #6b21a8; }
.txn-status--pending { background: #fef08a; color: #854d0e; }
.txn-status--failed { background: #fecdd3; color: #9f1239; }

.txn-pay--paid { background: rgba(34, 197, 94, 0.15); color: #86efac; }
.txn-pay--unpaid { background: rgba(244, 63, 94, 0.15); color: #fda4af; }

.invoice-status-banner {
    border-bottom: 1px solid hsl(var(--border) / 0.25);
}

.account-target-history {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed hsl(var(--border) / 0.35);
}

.account-target-history__label {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.account-target-history__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.account-target-history__item {
    border: 1px solid hsl(var(--border) / 0.45);
    background: hsl(var(--muted) / 0.45);
    color: hsl(var(--foreground));
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.account-target-history__item:hover {
    border-color: hsl(var(--primary) / 0.65);
    background: hsl(var(--primary) / 0.12);
}

.account-target-history__item:active {
    transform: scale(0.98);
}

.invoice-status-banner__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 0;
}

.invoice-status-banner__content {
    flex: 1;
    min-width: 0;
}

.invoice-status-banner__refresh {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.invoice-status-banner__refresh:hover {
    background: rgba(255, 255, 255, 0.14);
}

.invoice-status-banner__refresh:active {
    transform: scale(0.96);
}

.invoice-status-banner__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.invoice-status-banner__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.invoice-status-banner__message {
    margin-top: 0.2rem;
    font-size: 0.82rem;
    opacity: 0.9;
}

.invoice-status-banner--success {
    background: rgba(34, 197, 94, 0.1);
    color: #bbf7d0;
}

.invoice-status-banner--success .invoice-status-banner__icon {
    background: rgba(34, 197, 94, 0.18);
}

.invoice-status-banner--process {
    background: rgba(59, 130, 246, 0.1);
    color: #bfdbfe;
}

.invoice-status-banner--process .invoice-status-banner__icon {
    background: rgba(59, 130, 246, 0.18);
}

.invoice-status-banner--pending {
    background: rgba(234, 179, 8, 0.1);
    color: #fde68a;
}

.invoice-status-banner--pending .invoice-status-banner__icon {
    background: rgba(234, 179, 8, 0.18);
}

.invoice-status-banner--failed {
    background: rgba(244, 63, 94, 0.1);
    color: #fecdd3;
}

.invoice-status-banner--failed .invoice-status-banner__icon {
    background: rgba(244, 63, 94, 0.18);
}

.invoice-timeline {
    position: relative;
    padding-bottom: 0.25rem;
}

.invoice-timeline__track {
    position: absolute;
    top: 1rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: hsl(var(--muted));
    border-radius: 999px;
    z-index: 0;
}

.invoice-timeline__track-fill {
    height: 100%;
    background: hsl(var(--success));
    border-radius: 999px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.invoice-timeline__track-fill--failed {
    background: hsl(var(--destructive));
}

.invoice-timeline__steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.invoice-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
}

.invoice-timeline__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid hsl(var(--border) / 0.6);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    flex-shrink: 0;
}

.invoice-timeline__step--done .invoice-timeline__dot {
    border-color: transparent;
    background: hsl(var(--success));
    color: hsl(var(--success-foreground));
}

.invoice-timeline__step--active .invoice-timeline__dot {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.invoice-timeline__step--failed .invoice-timeline__dot {
    border-color: transparent;
    background: hsl(var(--destructive));
    color: hsl(var(--destructive-foreground));
}

.invoice-timeline__text {
    margin-top: 0.65rem;
    width: 100%;
    min-width: 0;
    padding: 0 0.15rem;
}

.invoice-timeline__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    color: hsl(var(--foreground));
    word-break: break-word;
}

.invoice-timeline__step--done .invoice-timeline__label {
    color: hsl(var(--success));
}

.invoice-timeline__step--failed .invoice-timeline__label {
    color: hsl(var(--destructive));
}

.invoice-timeline__desc {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.68rem;
    line-height: 1.35;
    color: hsl(var(--muted-foreground));
    word-break: break-word;
}

@media (max-width: 639px) {
    .invoice-timeline__track {
        left: 8%;
        right: 8%;
    }

    .invoice-timeline__label {
        font-size: 0.7rem;
    }

    .invoice-timeline__desc {
        font-size: 0.62rem;
    }
}

.invoice-detail-rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.invoice-detail-row {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    align-items: start;
    gap: 0.35rem 0.75rem;
}

@media (min-width: 768px) {
    .invoice-detail-rows .invoice-detail-row {
        grid-template-columns: 9rem 1fr;
        gap: 1rem;
    }
}

.invoice-detail-row dt,
.invoice-detail-row__label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.invoice-detail-row dd,
.invoice-detail-row__value {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    word-break: break-word;
    min-width: 0;
}

.invoice-detail-row__value--message {
    font-weight: 500;
    line-height: 1.45;
}

.swal2-container {
    background: rgba(0, 0, 0, 0.68) !important;
    backdrop-filter: blur(4px);
}

.order-swal.swal2-popup,
.my-custom-alert.swal2-popup {
    width: min(100% - 2rem, 24rem);
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.order-swal .swal2-title,
.my-custom-alert .swal2-title {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    padding: 0;
}

.order-swal .swal2-html-container,
.my-custom-alert .swal2-html-container {
    margin: 0.65rem 0 0;
    padding: 0;
    color: hsl(var(--foreground));
    text-align: left;
}

.order-swal__summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border) / 0.28);
    background: hsl(var(--muted) / 0.5);
}

.order-swal__row {
    display: grid;
    grid-template-columns: 5.25rem 1fr;
    gap: 0.35rem 0.65rem;
    align-items: start;
    font-size: 0.8rem;
    line-height: 1.35;
}

.order-swal__label {
    color: hsl(var(--muted-foreground));
}

.order-swal__value {
    color: hsl(var(--foreground));
    font-weight: 600;
    word-break: break-word;
}

.order-swal .swal2-icon,
.my-custom-alert .swal2-icon {
    margin: 0.15rem auto 0.35rem;
    border-width: 2px;
    transform: scale(0.88);
    transform-origin: center center;
}

.order-swal .swal2-icon.swal2-success,
.my-custom-alert .swal2-icon.swal2-success {
    border-color: hsl(var(--success));
    color: hsl(var(--success));
}

.order-swal .swal2-icon.swal2-success .swal2-success-ring,
.my-custom-alert .swal2-icon.swal2-success .swal2-success-ring {
    border-color: hsl(var(--success) / 0.35);
}

.order-swal .swal2-icon.swal2-success .swal2-success-fix,
.my-custom-alert .swal2-icon.swal2-success .swal2-success-fix {
    background-color: hsl(var(--card));
}

.order-swal .swal2-icon.swal2-error,
.my-custom-alert .swal2-icon.swal2-error {
    border-color: hsl(var(--destructive));
    color: hsl(var(--destructive));
}

.order-swal .swal2-icon.swal2-warning,
.my-custom-alert .swal2-icon.swal2-warning {
    border-color: hsl(var(--warning));
    color: hsl(var(--warning));
}

.order-swal .swal2-actions,
.my-custom-alert .swal2-actions {
    width: 100%;
    gap: 0.6rem;
    margin: 0.9rem 0 0;
    padding: 0;
}

.order-swal__btn {
    flex: 1;
    margin: 0 !important;
    padding: 0.58rem 0.85rem;
    border-radius: 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: none !important;
}

.order-swal__btn--confirm {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.order-swal__btn--cancel {
    background: hsl(var(--destructive));
    color: hsl(var(--destructive-foreground));
}

.order-swal--loading .swal2-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.order-swal--loading .swal2-loader {
    border-color: hsl(var(--primary) / 0.25);
    border-right-color: hsl(var(--primary));
}

.service-page {
    padding-bottom: 3rem;
}

.service-page__hero {
    padding: 2.25rem 0 1.75rem;
    border-bottom: 1px solid hsl(var(--border) / 0.35);
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, hsl(var(--primary) / 0.08), transparent 55%),
        hsl(var(--secondary) / 0.45);
}

.service-page__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: hsl(var(--primary));
}

.service-page__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: hsl(var(--foreground));
}

.service-page__desc {
    margin: 0.75rem 0 0;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: hsl(var(--foreground) / 0.65);
}

.service-page__body {
    padding: 1.5rem 0 0;
}

.service-page__layout {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .service-page__layout {
        grid-template-columns: minmax(15rem, 17.5rem) minmax(0, 1fr);
        gap: 1.5rem;
    }
}

.service-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .service-page__sidebar {
        position: sticky;
        top: 5.5rem;
        max-height: calc(100vh - 6.5rem);
        overflow: auto;
        padding-right: 0.25rem;
    }
}

.service-page__filter-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.8);
}

.service-page__select {
    display: block;
    width: 100%;
    appearance: none;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border) / 0.45);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E") no-repeat right 0.75rem center / 1rem,
        hsl(var(--input) / 0.9);
    padding: 0.65rem 2.25rem 0.65rem 0.85rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

.service-page__select:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.service-page__games {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .service-page__games {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .service-page__games {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-page__game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem;
    border-radius: 0.9rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.45);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.service-page__game:hover {
    border-color: hsl(var(--primary) / 0.45);
    background: hsl(var(--card) / 0.7);
    transform: translateY(-1px);
}

.service-page__game.is-active {
    border-color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
    box-shadow: 0 0 0 1px hsl(var(--primary) / 0.35);
}

.service-page__game-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 0.65rem;
    overflow: hidden;
    background: hsl(var(--muted) / 0.45);
}

.service-page__game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page__game-name {
    width: 100%;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.25;
    color: hsl(var(--foreground) / 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-page__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.4);
}

.service-page__active-game {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.service-page__active-hint {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    color: hsl(var(--foreground) / 0.55);
}

.service-page__count {
    flex-shrink: 0;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border) / 0.4);
    background: hsl(var(--muted) / 0.45);
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.75);
    white-space: nowrap;
}

.service-page__table-card {
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.35);
    overflow: hidden;
}

.service-page__table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.service-page__table {
    width: 100%;
    min-width: 52rem;
    border-collapse: collapse;
}

.service-page__table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 0.85rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
    color: hsl(var(--foreground) / 0.65);
    background: hsl(var(--muted) / 0.85);
    border-bottom: 1px solid hsl(var(--border) / 0.35);
    white-space: nowrap;
}

.service-page__table tbody td {
    padding: 0.8rem 1rem;
    font-size: 0.8125rem;
    color: hsl(var(--foreground) / 0.9);
    border-bottom: 1px solid hsl(var(--border) / 0.2);
    vertical-align: middle;
}

.service-page__table tbody tr:hover td {
    background: hsl(var(--muted) / 0.25);
}

.service-page__table tbody tr:last-child td {
    border-bottom: none;
}

.service-page__service-name {
    max-width: 14rem;
    font-weight: 600;
}

.service-page__price {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.service-page__enterprise-hidden {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    border-radius: 999px;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    font-weight: 800;
}

.service-page__enterprise-note {
    display: inline-block;
    max-width: 10rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    line-height: 1.2;
    vertical-align: middle;
}

.service-page__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-page__badge--active {
    background: hsl(152 76% 36% / 0.18);
    color: hsl(152 70% 72%);
    border: 1px solid hsl(152 70% 45% / 0.35);
}

.service-page__badge--inactive {
    background: hsl(0 72% 51% / 0.15);
    color: hsl(0 80% 75%);
    border: 1px solid hsl(0 70% 50% / 0.3);
}

.service-page__empty {
    padding: 3rem 1.25rem !important;
    text-align: center;
}

.service-page__empty svg {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto;
    color: hsl(var(--foreground) / 0.35);
}

.service-page__empty h3 {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.service-page__empty p {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: hsl(var(--foreground) / 0.55);
}

@media (max-width: 767px) {
    .service-page__hero {
        padding: 1.75rem 0 1.25rem;
    }

    .service-page__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-page__count {
        align-self: flex-start;
    }
}

.contact-page {
    padding-bottom: 3rem;
}

.contact-page__hero {
    padding: 2.25rem 0 1.75rem;
    border-bottom: 1px solid hsl(var(--border) / 0.35);
    background:
        radial-gradient(ellipse 80% 60% at 80% 0%, hsl(var(--primary) / 0.08), transparent 55%),
        hsl(var(--secondary) / 0.45);
}

.contact-page__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: hsl(var(--primary));
}

.contact-page__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: hsl(var(--foreground));
}

.contact-page__desc {
    margin: 0.75rem 0 0;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: hsl(var(--foreground) / 0.65);
}

.contact-page__body {
    padding: 1.5rem 0 0;
}

.contact-page__layout {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-page__layout {
        grid-template-columns: minmax(16rem, 20rem) minmax(0, 1fr);
        gap: 1.5rem;
    }
}

.contact-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .contact-page__sidebar {
        position: sticky;
        top: 5.5rem;
    }
}

.contact-page__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.45);
}

.contact-page__brand img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-page__brand-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.contact-page__brand-tagline {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    color: hsl(var(--foreground) / 0.55);
}

.contact-page__channels {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-page__channel {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.4);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

a.contact-page__channel:hover {
    border-color: hsl(var(--primary) / 0.45);
    background: hsl(var(--card) / 0.65);
    transform: translateY(-1px);
}

.contact-page__channel--wa:hover {
    border-color: hsl(152 70% 45% / 0.45);
}

.contact-page__channel--static {
    cursor: default;
}

.contact-page__channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: hsl(var(--muted) / 0.55);
    color: hsl(var(--primary));
    flex-shrink: 0;
}

.contact-page__channel--wa .contact-page__channel-icon {
    color: hsl(152 70% 55%);
}

.contact-page__channel-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.contact-page__channel-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.contact-page__channel-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.5);
}

.contact-page__channel-value {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
    color: hsl(var(--foreground) / 0.9);
    word-break: break-word;
}

.contact-page__socials {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.35);
}

.contact-page__socials-label {
    margin: 0 0 0.55rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: hsl(var(--foreground) / 0.5);
}

.contact-page__socials-row {
    gap: 0.65rem;
}

.contact-page__main {
    min-width: 0;
}

.contact-page__form-card {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.35);
    background: hsl(var(--card) / 0.35);
}

@media (min-width: 768px) {
    .contact-page__form-card {
        padding: 1.5rem;
    }
}

.contact-page__form-head {
    margin-bottom: 1.25rem;
}

.contact-page__form-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.contact-page__form-desc {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: hsl(var(--foreground) / 0.6);
}

.contact-page__form {
    display: grid;
    gap: 1rem;
}

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

    .contact-page__field--full,
    .contact-page__submit {
        grid-column: 1 / -1;
    }
}

.contact-page__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-page__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.85);
}

.contact-page__input,
.contact-page__textarea {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border) / 0.45);
    background: hsl(var(--input) / 0.9);
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

.contact-page__input:focus,
.contact-page__textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.contact-page__textarea {
    resize: vertical;
    min-height: 7rem;
}

.contact-page__phone {
    display: flex;
    align-items: stretch;
}

.contact-page__phone-prefix {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.75rem;
    border: 1px solid hsl(var(--border) / 0.45);
    border-right: none;
    border-radius: 0.75rem 0 0 0.75rem;
    background: hsl(var(--muted) / 0.45);
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.75);
    white-space: nowrap;
}

.contact-page__phone-prefix .legacy-id-flag--rect {
    width: 1.1rem;
    height: auto;
    aspect-ratio: 3 / 2;
}

.contact-page__input--phone {
    border-radius: 0 0.75rem 0.75rem 0;
}

.contact-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-page__submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.contact-page__submit svg {
    width: 1.1rem;
    height: 1.1rem;
}

@media (max-width: 767px) {
    .contact-page__hero {
        padding: 1.75rem 0 1.25rem;
    }
}

.buy-paket-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.buy-paket-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 999px;
    background: hsl(var(--muted) / 0.35);
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.buy-paket-tab:hover {
    color: hsl(var(--foreground));
    border-color: hsl(var(--primary) / 0.45);
}

.buy-paket-tab.is-active {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 8px 24px hsl(var(--primary) / 0.25);
}

.buy-paket-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.buy-paket-title__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
    border-radius: 0.375rem;
    object-fit: contain;
}

.buy-paket-section.is-hidden {
    display: none !important;
}

.buy-paket-section + .buy-paket-section {
    margin-top: 0.25rem;
}

.buy-instant-badge {
    display: block;
    width: auto;
    height: 0.875rem;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
}
