/* Category Dropdown (Glass Style - Compact) */
.category-dropdown-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 20px rgba(100, 180, 255, 0.12);
    animation: dropdownGlow 3s ease-in-out infinite;
}

@keyframes dropdownGlow {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 15px rgba(100, 180, 255, 0.12);
    }

    50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 25px rgba(100, 180, 255, 0.25);
    }
}

.category-dropdown-btn:hover,
.category-dropdown-btn:focus {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(100, 180, 255, 0.3);
}

.category-dropdown-menu {
    background: linear-gradient(135deg, rgba(8, 16, 32, 0.95) 0%, rgba(4, 10, 25, 0.98) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    padding: 6px;
    margin-top: 6px !important;
    min-width: 160px;
}

.category-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s ease;
    margin: 2px 0;
}

.category-dropdown-menu .dropdown-item:hover,
.category-dropdown-menu .dropdown-item:focus {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #fff;
}

.category-dropdown-menu .dropdown-item.active {
    background: linear-gradient(135deg, rgba(100, 180, 255, 0.25) 0%, rgba(80, 150, 255, 0.35) 100%);
    color: #fff;
}

#searchForm {
    position: relative;
}

.search-wrap {
    position: relative;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    background: #0a1931;
    border: 1px solid #2a528a;
    border-radius: .5rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
    display: none;
    max-height: 360px;
    overflow-y: auto;
    z-index: 2000;
}

.search-results div {
    padding: 8px;
    cursor: pointer;
}

.search-results div:hover {
    background-color: rgba(6, 79, 118, 0.9);
}

.search-results a,
.search-results .item {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: .75rem;
    padding: .5rem .75rem;
}

.search-results .item:hover,
.search-results .item.active {
    background: #03314e;
    color: #fff;
}

.search-results img,
.search-results .item img {
    width: 28px;
    height: 28px;
    margin-right: 1em;
    object-fit: cover;
    border-radius: 4px;
}

.search-results .empty,
.search-results .loading,
.search-results .more {
    padding: .6rem .75rem;
    color: #9fb3c8;
    border-top: 1px solid rgba(42, 82, 138, .3);
}

.search-results .empty {
    border-top: none;
}

.search-results mark {
    background: #215b8a;
    color: #fff;
    border-radius: 3px;
    padding: 0 .15rem;
}

@media (max-width: 768px) {
    .search-results {
        width: 100%;
        left: 0;
        transform: none;
    }
}

@media (min-width: 769px) {
    .search-results {
        width: 200%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.select2-container {
    width: 100% !important;
    box-sizing: border-box;
}

.select2-container--default .select2-selection--single,
.select2-container--classic .select2-selection--single {
    background-color: #0b274e !important;
    border: 1px solid #2a528a !important;
    border-radius: 4px !important;
    height: 38px !important;
    display: flex;
    align-items: center;
    padding: 0 .75rem !important;
    color: whitesmoke;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--classic.select2-container--open .select2-selection--single {
    border-color: #00c2ff !important;
    box-shadow: 0 0 0 3px rgba(0, 194, 255, .15);
    outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

.select2-container--default .select2-dropdown,
.select2-container--classic .select2-dropdown {
    background-color: #0a1931 !important;
    border: 1px solid #2a528a !important;
    color: whitesmoke !important;
}

.select2-results,
.select2-results__options {
    background-color: #0a1931 !important;
    color: whitesmoke !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--classic .select2-search--dropdown .select2-search__field {
    background-color: #0b274e !important;
    border: 1px solid #2a528a !important;
    color: whitesmoke !important;
    outline: none !important;
}

.select2-container--default .select2-results__option--highlighted,
.select2-container--classic .select2-results__option--highlighted,
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--classic .select2-results__option[aria-selected="true"] {
    background-color: #1679AB !important;
    color: #fff !important;
}

.select2-container--default .select2-selection__rendered {
    color: whitesmoke !important;
    line-height: 36px !important;
    padding-right: 2rem !important;
}

.select2-container--default .select2-selection__placeholder {
    color: #b3c0d1 !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #0f213f !important;
    border-color: #2a528a !important;
    color: #7f8ea3 !important;
}

#loading {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999999;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #0a1931;
}

.dropdown-menu>li>a:focus {
    color: #fff;
    background-color: #3abaf4;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    background-color: #03314e;
}

@media screen and (min-width: 700px) {
    .nav-link.active {
        padding: 0.5rem 1rem;
        background-color: #053e6a75;
        border-radius: 10px;
    }
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    -webkit-appearance: none;
    box-shadow: none;
}

a#navbarDropdown.nav-link.dropdown-toggle:active,
a#navbarDropdown.nav-link.dropdown-toggle:focus {
    outline: 0;
}

.navbar {
    z-index: 80;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.34);
}

.bg-dark-blue {
    background-color: #070F2B;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 60, 128, 0.397) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(21, 88, 83, 0.219) 0%, transparent 40%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Gradient Blob di Belakang Konten User biar Glassmorphism Kelihatan */
.bg-dark-blue::before {
    content: "";
    position: fixed;
    top: -200px;
    left: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 3, 82, 0.26) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: drift 20s infinite alternate ease-in-out;
}

.bg-dark-blue::after {
    content: "";
    position: fixed;
    bottom: -200px;
    right: -100px;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(7, 41, 68, 0.301) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }

    100% {
        transform: translateY(50px) translateX(100px) scale(1.1);
    }
}

/* Efek Kaca (Glassmorphism) untuk KARTU (Card) di Halaman User */
.card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 1;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 37, 68, 0.4) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(83, 92, 145, 0.3) !important;
    border-radius: inherit !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    z-index: -1;
}

.card-body,
.card-header,
.card-footer {
    position: relative;
    z-index: 2;
    background: transparent !important;
}

/* Biarkan Tabel Default Transparan, tapi biarkan table-dark tetap gelap */
.table:not(.table-dark),
table:not(.table-dark),
.table:not(.table-dark) th,
.table:not(.table-dark) td,
.table:not(.table-dark) thead th,
.table:not(.table-dark) tbody+tbody,
.table-responsive:not(.table-dark),
.table:not(.table-dark)> :not(caption)>*>* {
    background-color: transparent !important;
    background: transparent !important;
    color: whitesmoke !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.table-hover tbody tr:hover,
.table-hover tbody tr:hover>* {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Category dropdown mobile spacing */
.category-dropdown {
    padding-left: 10px;
    padding-right: 10px;
}

.bg-black-custom {
    background-color: rgba(0, 0, 0, .2);
}

.bg-blue-custom {
    background-color: rgba(8, 18, 40, 0.95);
}

/* Glass Morphism - Product Cards (Apple Style) */
.card.bg-blue-custom {
    background: linear-gradient(135deg, rgba(20, 30, 60, 0.6) 0%, rgba(10, 20, 45, 0.7) 100%);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card.bg-blue-custom:hover {
    background: linear-gradient(135deg, rgba(25, 40, 75, 0.7) 0%, rgba(15, 28, 55, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.btn-primary-custom {
    color: #fff;
    background-color: rgba(0, 109, 181, 1);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: rgba(0, 109, 181, 0.4);
    color: #fff;
}

/* Print Invoice Button - Tanpa efek hover */
.btn-print-invoice {
    color: #fff !important;
    background-color: #3B82F6 !important;
    border-radius: 10px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
}

.btn-print-invoice:hover,
.btn-print-invoice:focus,
.btn-print-invoice:active {
    background-color: #3B82F6 !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.btn-warning-custom {
    color: #fff;
    background-color: rgba(244, 167, 58, 1);
}

.btn-warning-custom:hover,
.btn-warning-custom:focus {
    background-color: rgba(244, 167, 58, 0.6);
    color: #fff;
}

/* Invoice Action Buttons - Glass Effect */
.btn-action-email {
    color: #fff;
    background: linear-gradient(135deg, rgba(42, 82, 138, 0.6) 0%, rgba(30, 60, 110, 0.7) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-action-email:hover,
.btn-action-email:focus {
    background: linear-gradient(135deg, rgba(42, 82, 138, 0.8) 0%, rgba(30, 60, 110, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    color: #fff;
}

.btn-action-username {
    color: #fff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(37, 99, 235, 0.7) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-action-username:hover,
.btn-action-username:focus {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    color: #fff;
}

.btn-warning {
    color: #fff;
    background-color: #f4a73a;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #f4a73a;
    color: #fff;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #dc3545;
    color: #fff;
}

.btn-success {
    color: #fff;
    background-color: #23b370;
    border-color: #23b370;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #23b370;
    border-color: #23b370;
    color: #fff;
}

a.card {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.logo-navbar {
    width: auto;
    height: 40px;
    text-decoration: none;
}

.nav-item {
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-item.active {
    color: #fff !important;
    font-weight: bold;
}

.navbar-brand {
    padding-right: 3rem;
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.title-section {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.title-section::before {
    content: '';
    border-radius: 5px;
    height: 8px;
    width: 30px;
    background-color: #3abaf4;
    display: inline-block;
    float: left;
    margin-top: 12px;
    margin-right: 15px;
}

.list-category {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.card-category {
    display: flex;
    font-size: 14px;
    flex-direction: row;
    margin: 5px;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-category img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 25px;
    margin-right: 0.5rem;
}

.card-category:hover {
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff;
}

.list-game {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.card-game {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 20px;
    margin-bottom: 20px;
    width: 330px;
    font-size: 14px;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-game img {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    margin-right: 1rem;
}

.card-game:hover {
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff;
}

.list-question {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.icon-question {
    width: 50px;
    height: 50px;
    display: flex;
    color: #b3b3b3;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.34);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.question {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.search-button {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    color: #fff;
}

.search-button svg {
    margin-right: 0.2rem;
}

.feather-16 {
    width: 16px;
    height: 16px;
}

.feather-24 {
    width: 24px;
    height: 24px;
}

.feather-32 {
    width: 32px;
    height: 32px;
}

.btn-bantuan {
    display: flex;
    align-items: center;
    border-radius: 0 0.2rem 0.2rem 0;
}

.form-control {
    background-color: #0b274e;
    border: 1px solid #2a528a;
    color: #fff;
}

.form-control:focus {
    background-color: #0b274e;
    border: 1px solid #2a528a;
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.678);
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #0b274e;
    border: 1px solid #2a528a;
    color: rgba(255, 255, 255, 0.89);
}

.carousel,
.slide,
.carousel .carousel-inner,
.carousel .carousel-item,
.carousel .carousel-item img,
.carousel .carousel-control {
    border-radius: 0.5rem;
    overflow: hidden;
}

.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    width: 45px;
    height: 45px;
    bottom: 140px;
    left: 10px;
    color: #fff;
    background: #5865f2;
    border-radius: 10px;
    text-align: center;
    font-size: 30px;
    z-index: 99999;
}

.fab-icon-holder:hover {
    opacity: 0.8;
}

.fab-icon-holder i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 25px;
    color: #ffffff;
}

.fab-options {
    list-style-type: none;
    margin: 0;
    position: absolute;
    bottom: 48px;
    left: -37px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: 85% bottom;
}

.fab:hover+.fab-options,
.fab-options:hover {
    opacity: 1;
    transform: scale(1);
}

.fab-options li {
    display: flex;
    justify-content: flex-start;
    padding: 5px;
}

.fab-label {
    padding: 2px 5px;
    align-self: center;
    user-select: none;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    background: #666666;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-left: 10px;
}

.slider-range {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #0b274e;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 12px;
}

.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #407bcc;
    cursor: pointer;
    border-radius: 1rem;
}

.slider-range::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #407bcc;
    cursor: pointer;
}

.bg-primary-custom {
    color: #fff;
    box-shadow: inset 0 0 0 9999px #2A528A !important;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #0a1c3c;
    color: #fff;
}

.table> :not(caption)>*>* {
    padding: 1rem 1rem;
    background-color: #002a50;
    border-bottom-style: none;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-style: none;
}

.text-primary-custom {
    color: #2A528A;
}

.page-link {
    color: #fff;
    background-color: #0b274e;
    border: 1px solid #2A528A;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.page-item .page-link:hover,
.page-item .page-link:focus,
.page-item.active .page-link {
    color: #fff;
    background-color: #2A528A;
    border-color: #2A528A;
}

.page-item .page-link:focus {
    box-shadow: 0 0 0 .25rem rgba(42, 82, 138, .25);
}

.input-group-text {
    color: #fff;
    background-color: #2A528A;
    border: 1px solid #2A528A;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #2A528A;
}

.apidoc-pills .nav-link.active {
    background-color: #2A528A;
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0b274e inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff !important;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-menu>li>a {
    color: #fff;
}

.dropdown-menu>li>a:hover {
    color: #fff;
    background-color: #03314e;
}

a {
    text-decoration: none;
}

.navcustom {
    transition: all ease-out 1s;
}

.darkBGH {
    background-color: #0c234a;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #1F2544;
}

::-webkit-scrollbar-thumb {
    background-color: #02021c;
}

::-webkit-scrollbar-track-piece:horizontal {
    background-color: rgba(8, 8, 46, 0.4);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group input[type="radio"] {
    display: none;
}

.list-group input[type="radio"]+.list-group-item {
    text-align: center;
    cursor: pointer;
    background-color: #022957;
    color: #2a528a;
    font-size: 12px;
    border-radius: 10px !important;
}

.list-group input[type="radio"]:hover+.list-group-item {
    color: #ef222243;
    overflow: hidden;
    background-color: rgba(3, 120, 159, 0.4);
}

.list-group input[type="radio"]:hover+label>.row>.col>.row>.nama-layanan-form,
.list-group input[type="radio"]:hover+label>.row>.col>.row>.nominal-price,
.list-group input[type="radio"]:checked+label>.row>.col>.row>.nama-layanan-form,
.list-group input[type="radio"]:checked+label>.row>.col>.row>.nominal-price {
    color: #ffffff;
    font-style: italic;
}

.list-group-item {
    user-select: none;
    border-radius: 10px !important;
}

.product-name-form,
.stock-name-form,
.instant-name-form {
    color: #ffffff;
    text-align: left;
}

.instant-name-form {
    font-size: 13px;
}

.nominal-price {
    font-size: 12px;
    text-align: left;
}

.list-group input[type="radio"]:checked+.list-group-item {
    color: #ef222243;
    font-size: 12px;
    overflow: hidden;
    background-color: rgba(3, 120, 159, 0.4);
}

.child-box {
    margin-bottom: 18px;
    border-radius: 7px !important;
    background-color: #2a528a;
}

.child-box .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 15px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    cursor: pointer;
    position: relative;
}

.child-box .header .left {
    display: flex;
    align-items: center;
}

.child-box .button-action-payment {
    padding: 15px;
    display: none;
}

.list-group1 input[type="radio"] {
    display: none;
}

.list-group1 input[type="radio"]+.list-group-item {
    text-align: center;
    cursor: pointer;
    border-color: transparent;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 5px 10px 0 rgb(0 0 0 / 19%);
    font-size: 12px;
    border-radius: 10px;
    background: rgb(208, 208, 208);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.list-group1 input[type="radio"]:checked+.list-group-item {
    background-color: rgba(3, 120, 159, 0.4);
    color: #fff;
    font-size: 12px;
    display: block;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.child-box .short-payment-support-info {
    background-color: #0b274e;
    padding: 11px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.child-box .short-payment-support-info img {
    height: 13px;
    margin-right: 7px;
}

.border-gradient {
    animation: mymove 4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
    border-radius: 10px;
}

@keyframes mymove {

    0%,
    20%,
    80%,
    100% {
        border-radius: 10px;
        border: 1px solid;
        border-image: linear-gradient(45deg, #038fe1, #077ac6, #0766ac, #055392, #024179) 1;
    }

    40%,
    60% {
        border-radius: 10px;
        border: 1px solid;
        border-image: linear-gradient(45deg, cyan, darkcyan, darkgreen, darkblue) 1;
    }
}

.swiper {
    width: 100%;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 80%;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    right: 10px;
    padding: 30px;
    color: #fff !important;
    fill: black !important;
    stroke: black !important;
    border-radius: 100px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /*background-color: #3abaf4;*/
    right: 10px;
    padding: 13px;
    color: #fff !important;
    fill: black !important;
    stroke: black !important;
    border-radius: 100px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #01070a6e;
}

.swiper-pagination-bullet-active {
    background-color: #2A528A;
}

.nav-tab {
    background-color: #a44006;
    border-radius: 0.25rem;
    color: white !important;
}

.stiki {
    z-index: 4;
    position: sticky;
    top: 5rem;
    transition: all ease-out 1s;
}

.imgstyle {
    transition: transform .2s;
    position: relative;
    margin-top: -35%;
    max-width: 70%;
    max-height: 178px;
    background-position: center center;
    background-repeat: no-repeat;
}

.zoomIMG {
    transition: transform .4s;
}

.zoomIMG:hover {
    transform: scale(1.13);
}

.darkBG {
    background-color: rgba(5, 47, 92, 1);
    border-radius: 0.5rem;
}

/* ===== Single Page Checkout Layout ===== */
.order-checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

.order-products-col {
    min-width: 0;
}

.order-sidebar {
    position: sticky;
    top: 100px;
}

.order-sidebar-card {
    background: linear-gradient(135deg, rgba(42, 82, 138, 0.8) 0%, rgba(13, 34, 66, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.order-sidebar-card .section-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-sidebar-card .section-title i {
    color: #00cfe8;
}

.order-sidebar-card .form-group {
    margin-bottom: 1rem;
}

.order-sidebar-card .form-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.order-sidebar-card .form-control {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
}

.order-sidebar-card .form-control:focus {
    background: rgba(0, 0, 0, 0.35);
    border-color: #00cfe8;
    box-shadow: 0 0 0 2px rgba(0, 207, 232, 0.15);
}

.order-summary-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.order-summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.order-summary-row .label {
    color: rgba(255, 255, 255, 0.7);
}

.order-summary-row .value {
    color: #fff;
    font-weight: 600;
}

.order-summary-row.total .value {
    color: #28c76f;
    font-size: 1.15rem;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #28c76f 0%, #1e9d5a 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 199, 111, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 199, 111, 0.4);
    background: linear-gradient(135deg, #32d977 0%, #28c76f 100%);
}

.btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-reorder {
    background: rgba(115, 103, 240, 0.15);
    border: 1px solid rgba(115, 103, 240, 0.3);
    color: #a29bfe;
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-reorder:hover {
    background: rgba(115, 103, 240, 0.25);
    color: #fff;
    border-color: rgba(115, 103, 240, 0.5);
}

.btn-reorder i {
    font-size: 0.75rem;
}

/* Payment method compact in sidebar */
.payment-compact-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 0.5rem;
}

.payment-compact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    margin-bottom: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-compact-item:hover {
    background: rgba(0, 207, 232, 0.1);
    border-color: rgba(0, 207, 232, 0.3);
}

.payment-compact-item.selected {
    background: rgba(0, 207, 232, 0.15);
    border-color: #00cfe8;
}

.payment-compact-item img {
    width: 28px;
    height: 20px;
    object-fit: contain;
    background: #fff;
    border-radius: 3px;
    padding: 2px;
}

.payment-compact-item .payment-name {
    font-size: 0.8rem;
    color: #fff;
    flex: 1;
}

.payment-compact-item .payment-fee {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Mobile */
@media (max-width: 991px) {
    .order-checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .order-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 576px) {
    .order-sidebar-card {
        padding: 4vw;
    }

    .order-summary-box {
        padding: 3vw;
    }
}