/**
 * Frontend CSS — WP PPOB Manager v3.0.0
 *
 * Konsolidasi SEMUA inline CSS dari view-dashboard-user.php + existing frontend.css.
 * Design tokens mengikuti branding Woodmart child theme:
 *   - Primary: #5F56C6 (ungu)
 *   - Font: Lexend (Google Fonts)
 *   - Prefix semua handle: wppob-* (hindari obfuscation)
 *
 * @package WP_PPOB_Manager
 * @since   3.0.0
 */

/* ============================================================================
 * DESIGN TOKENS (CSS Custom Properties / Variabel Kustom)
 * ============================================================================ */
:root {
    --wppob-primary: #5F56C6;
    --wppob-primary-hover: #564EB4;
    --wppob-primary-light: #8F88D7;
    --wppob-primary-bg: #F0F0FF;
    --wppob-success: #25d366;
    --wppob-success-hover: #21bd5b;
    --wppob-success-bg: #d4edda;
    --wppob-success-border: #c3e6cb;
    --wppob-success-text: #155724;
    --wppob-error: #e74c3c;
    --wppob-error-bg: #f8d7da;
    --wppob-error-border: #f5c6cb;
    --wppob-error-text: #721c24;
    --wppob-warning: #f39c12;
    --wppob-info: #3498db;
    --wppob-info-bg: #eaf2fa;
    --wppob-info-border: #b3d1ee;
    --wppob-info-text: #2c5a89;
    --wppob-text: #333;
    --wppob-text-muted: #555;
    --wppob-text-light: #888;
    --wppob-bg: #fff;
    --wppob-bg-light: #f8f9fa;
    --wppob-bg-hover: #f0f0f1;
    --wppob-border: #ddd;
    --wppob-border-light: #eee;
    --wppob-radius: 10px;
    --wppob-radius-sm: 5px;
    --wppob-radius-lg: 15px;
    --wppob-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --wppob-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
    --wppob-transition: 0.2s ease-in-out;
    --wppob-font: 'Lexend', Arial, Helvetica, sans-serif;
    --wppob-font-mono: 'Courier New', Courier, monospace;
    --wppob-z-overlay: 9998;
    --wppob-z-sidebar: 9999;
    --wppob-z-modal: 10000;
}

/* ============================================================================
 * LAYOUT / STRUKTUR UTAMA
 * ============================================================================ */
.wppob-frontend-wrap {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
    font-family: var(--wppob-font);
    color: var(--wppob-text);
}

/* ============================================================================
 * KATEGORI GRID (Tata Letak)
 * ============================================================================ */
.wppob-category-grid {
    display: grid !important;
    gap: 20px;
    margin-bottom: 35px;
    padding: 10px 4px !important;
    overflow: visible !important;
}

.wppob-category-item {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    text-align: center;
    padding: 24px 20px;
    text-decoration: none !important;
    color: #1e293b;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wppob-category-item:hover {
    box-shadow: 0 12px 25px rgba(95, 86, 198, 0.12);
    border-color: rgba(95, 86, 198, 0.3);
}

.wppob-category-item img {
    margin-bottom: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.wppob-category-item:hover img {
    transform: scale(1.08);
}

.wppob-category-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* ============================================================================
 * PRODUK GRID & LIST
 * ============================================================================ */
.wppob-product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    padding: 10px 4px !important;
    overflow: visible !important;
}

.wppob-product-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
}

.wppob-product-item:hover {
    box-shadow: 0 12px 28px rgba(95, 86, 198, 0.1);
    border-color: rgba(95, 86, 198, 0.25);
}

.wppob-product-item.selected {
    border-color: var(--wppob-primary);
    background-color: #faf5ff;
    box-shadow: 0 0 0 2px var(--wppob-primary), 0 8px 24px rgba(95, 86, 198, 0.12);
}

.wppob-product-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 12px;
    width: 100%;
}

.wppob-product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.wppob-product-item:hover .wppob-product-img {
    transform: scale(1.05);
}

.wppob-product-placeholder-img {
    background: linear-gradient(135deg, #e0e7ff 0%, #f5f3ff 100%);
    color: var(--wppob-primary);
    font-size: 24px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.wppob-lightning-icon {
    font-size: 24px;
    line-height: 1;
}

.wppob-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-top: auto;
}

.wppob-product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.wppob-product-price {
    font-size: 15px;
    color: var(--wppob-primary);
    font-weight: 700;
    margin-top: 4px;
}

/* Tampilan Mode List (Daftar Kebawah) */
.wppob-product-list .wppob-product-item {
    display: flex;
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 15px 20px;
    min-height: unset;
}

.wppob-product-list .wppob-product-img-wrapper {
    margin-right: 15px;
    margin-bottom: 0;
    height: 50px;
    width: 50px;
}

.wppob-product-list .wppob-product-info {
    flex-grow: 1;
    align-items: flex-start;
    margin-top: 0;
    gap: 2px;
}

.wppob-product-list .wppob-product-name {
    height: auto;
    text-align: left;
    -webkit-line-clamp: 1;
}

/* ============================================================================
 * FORMULIR PEMBELIAN
 * ============================================================================ */
.wppob-purchase-form {
    margin-top: 25px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.wppob-form-group {
    margin-bottom: 20px;
}

.wppob-form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.wppob-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.wppob-form-group input:focus {
    border-color: var(--wppob-primary);
    box-shadow: 0 0 0 3px rgba(95, 86, 198, 0.15);
    outline: none;
}

/* Detail & Tombol Beli / Submit */
.wppob-purchase-form {
    max-width: 600px;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.wppob-purchase-form h4#wppob-selected-product-name {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.wppob-purchase-form p#wppob-selected-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--wppob-primary);
    margin-bottom: 24px;
    text-align: center;
}

#wppob-purchase-details {
    margin-top: 20px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

#wppob-purchase-details p {
    margin: 0 0 10px;
}

#wppob-purchase-details p:last-child {
    margin-bottom: 0;
}

#wppob-submit-purchase {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    background-color: var(--wppob-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(95, 86, 198, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#wppob-submit-purchase:disabled {
    background-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

#wppob-submit-purchase:hover:not(:disabled) {
    background-color: var(--wppob-primary-hover) !important;
    box-shadow: 0 6px 16px rgba(95, 86, 198, 0.25) !important;
}

/* ============================================================================
 * NOTIFIKASI & FEEDBACK
 * ============================================================================ */
#wppob-notification-area {
    margin-top: 15px;
}

.wppob-notice {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: var(--wppob-radius-sm);
}

.wppob-notice-success {
    color: var(--wppob-success-text);
    background-color: var(--wppob-success-bg);
    border-color: var(--wppob-success-border);
}

.wppob-notice-error {
    color: var(--wppob-error-text);
    background-color: var(--wppob-error-bg);
    border-color: var(--wppob-error-border);
}

.wppob-notice-error strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.wppob-notice-error p {
    margin-top: 5px;
    margin-bottom: 15px;
}

.wppob-notice-error a.button,
.wppob-notice-error .button {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--wppob-primary);
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--wppob-radius-sm);
    margin-right: 10px;
    border: none !important;
    cursor: pointer;
}

.wppob-notice-error a.button:hover {
    background-color: var(--wppob-primary-hover);
}

/* ============================================================================
 * DASHBOARD HEADER (Tampilan Pengguna)
 * ============================================================================ */
.wppob-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.wppob-hamburger {
    font-size: 14px;
    cursor: pointer;
    padding: 10px 18px;
    background: rgba(95, 86, 198, 0.08);
    color: var(--wppob-primary);
    border-radius: 8px;
    border: none;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wppob-hamburger:hover {
    background: rgba(95, 86, 198, 0.15);
}

/* ============================================================================
 * SIDEBAR MENU (Tampilan Navigasi Seluler / Drawer)
 * ============================================================================ */
.wppob-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: var(--wppob-z-overlay);
    display: none;
    transition: opacity 0.3s;
}

.wppob-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--wppob-bg);
    z-index: var(--wppob-z-sidebar);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.08);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.wppob-sidebar.active {
    right: 0;
}

.wppob-sidebar-overlay.active {
    display: block;
}

.wppob-sidebar-header {
    padding: 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-span: space-between;
    justify-content: space-between;
    align-items: center;
}

.wppob-sidebar-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.wppob-close-sidebar {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
    color: #64748b;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.wppob-close-sidebar:hover {
    color: #1e293b;
}

/* Profil Card di dalam Sidebar */
.wppob-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.wppob-sidebar-profile .profile-avatar img {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    display: block;
}

.wppob-sidebar-profile .profile-info {
    display: flex;
    flex-direction: column;
}

.wppob-sidebar-profile .profile-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 14.5px;
    line-height: 1.3;
}

.wppob-sidebar-profile .profile-role {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 2px;
}

.wppob-sidebar-profile .profile-balance {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wppob-primary);
    margin-top: 4px;
}

.wppob-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 15px;
    overflow-y: auto;
    gap: 4px;
}

.wppob-sidebar-nav a {
    padding: 12px 16px;
    text-decoration: none !important;
    color: #475569;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
    border-bottom: none;
}

.wppob-sidebar-nav a:hover {
    background-color: #f1f5f9;
    color: var(--wppob-primary);
}

.wppob-sidebar-nav a.active {
    background-color: rgba(95, 86, 198, 0.08) !important;
    color: var(--wppob-primary) !important;
    font-weight: 600;
    border-left: 4px solid var(--wppob-primary);
    border-radius: 0 8px 8px 0;
}

.wppob-user-dashboard-content {
    width: 100%;
}

/* ============================================================================
 * DASHBOARD NAV TABS (Navigasi Atas)
 * ============================================================================ */
.wppob-user-dashboard-nav {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--wppob-border);
}

.wppob-user-dashboard-nav a {
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-bottom: none;
    color: var(--wppob-primary);
    margin-bottom: -1px;
    background-color: transparent;
    transition: background-color var(--wppob-transition), border-color var(--wppob-transition);
}

.wppob-user-dashboard-nav a:hover {
    background-color: var(--wppob-bg-hover);
}

.wppob-user-dashboard-nav a.active {
    background-color: var(--wppob-bg);
    border-color: var(--wppob-border);
    border-bottom: 1px solid var(--wppob-bg);
    color: var(--wppob-text);
    font-weight: bold;
}

/* ============================================================================
 * TOP UP & METODE PEMBAYARAN (Payment Gateways)
 * ============================================================================ */
.wppob-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.wppob-payment-method {
    border: 1px solid var(--wppob-border);
    border-radius: var(--wppob-radius);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--wppob-transition), box-shadow var(--wppob-transition);
    background-color: var(--wppob-bg);
}

.wppob-payment-method.selected {
    border-color: var(--wppob-primary);
    box-shadow: 0 0 8px rgba(95, 86, 198, 0.4);
}

.wppob-payment-method:hover {
    border-color: #999;
}

.wppob-payment-method img {
    max-height: 40px;
    max-width: 100%;
    margin-bottom: 5px;
}

.wppob-payment-method span {
    font-weight: 500;
}

/* ============================================================================
 * STRUK / NOTA PEMBELIAN (Receipt)
 * ============================================================================ */
.wppob-receipt-wrap {
    max-width: 450px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid var(--wppob-border);
    border-radius: var(--wppob-radius);
    font-family: var(--wppob-font-mono);
    background: var(--wppob-bg);
}

.wppob-receipt-header {
    text-align: center;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.wppob-receipt-header h2 {
    margin: 0 0 5px;
    font-size: 22px;
}

.wppob-receipt-header p {
    margin: 0;
    color: var(--wppob-text-muted);
}

.wppob-receipt-table {
    width: 100%;
    border-collapse: collapse;
}

.wppob-receipt-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--wppob-border-light);
}

.wppob-receipt-table td:last-child {
    text-align: right;
}

.wppob-receipt-sn {
    text-align: center;
}

.wppob-receipt-sn .sn-title {
    font-size: 14px;
    margin-top: 15px;
    color: var(--wppob-text-muted);
}

.wppob-receipt-sn .sn-content {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px;
    background: var(--wppob-bg-light);
    border: 1px solid var(--wppob-border-light);
    margin-top: 5px;
    word-break: break-all;
}

.wppob-receipt-footer {
    text-align: center;
}

.wppob-receipt-footer td {
    border-bottom: none;
    padding-top: 20px;
    color: var(--wppob-text-muted);
}

.wppob-receipt-actions {
    margin-top: 25px;
    text-align: center;
}

.wppob-receipt-actions .button {
    margin: 0 5px;
}

/* ============================================================================
 * STATUS TRANSAKSI REAL-TIME (Polling)
 * ============================================================================ */
#wppob-realtime-status {
    margin-top: 15px;
    padding: 15px;
    border-radius: var(--wppob-radius-sm);
    text-align: center;
}

.wppob-status-polling {
    background-color: var(--wppob-info-bg);
    border: 1px solid var(--wppob-info-border);
    color: var(--wppob-info-text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: var(--wppob-radius-sm);
}

.wppob-status-polling .spinner {
    margin-right: 8px;
    float: none;
}

.wppob-status-final-success {
    background-color: var(--wppob-success-bg);
    border-color: var(--wppob-success-border);
    color: var(--wppob-success-text);
    padding: 15px;
    border-radius: var(--wppob-radius-sm);
}

.wppob-status-final-success p {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0 10px;
}

.wppob-status-final-error {
    background-color: var(--wppob-error-bg);
    border-color: var(--wppob-error-border);
    color: var(--wppob-error-text);
    padding: 15px;
    border-radius: var(--wppob-radius-sm);
}

/* ============================================================================
 * MODAL DIALOG INPUT PIN
 * ============================================================================ */
#wppob-pin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: var(--wppob-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
}

#wppob-pin-modal-content {
    background: var(--wppob-bg);
    padding: 25px;
    border-radius: var(--wppob-radius);
    width: 90%;
    max-width: 350px;
    text-align: center;
}

#wppob-pin-input {
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    letter-spacing: 10px;
    border: 1px solid var(--wppob-border);
    border-radius: 5px;
    margin: 10px 0;
}

.wppob-pin-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.wppob-pin-modal-actions button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: var(--wppob-bg-hover);
    cursor: pointer;
}

.wppob-pin-modal-actions .button-primary {
    background: var(--wppob-primary);
    color: white;
    border-color: var(--wppob-primary);
}

/* ============================================================================
 * KALENDER ABSENSI / CHECK-IN HARIAN
 * ============================================================================ */
.wppob-calendar-wrapper {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 24px;
    border-radius: 16px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.wppob-calendar-wrapper:hover {
    border-color: rgba(95, 86, 198, 0.3);
    box-shadow: 0 8px 24px rgba(95, 86, 198, 0.08);
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.calendar-controls button {
    background: var(--wppob-bg-hover);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: var(--wppob-radius-sm);
}

.wppob-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.cal-header {
    font-size: 12px;
    color: var(--wppob-text-light);
    margin-bottom: 5px;
}

.cal-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--wppob-bg-light);
    cursor: pointer;
    font-size: 14px;
    position: relative;
    transition: var(--wppob-transition);
}

.cal-day:hover {
    background: #e5e5e5;
}

.cal-day.checked {
    background: var(--wppob-success-bg);
    color: var(--wppob-success-text);
    border: 1px solid var(--wppob-success-border);
    font-weight: bold;
}

.cal-day .check-mark {
    font-size: 10px;
    position: absolute;
    bottom: 2px;
    right: 2px;
}

.calendar-legend {
    margin-top: 15px;
    font-size: 12px;
    display: flex;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #eee;
    border-radius: 50%;
    margin-right: 5px;
}

.dot.check {
    background: var(--wppob-success-bg);
    border: 1px solid var(--wppob-success-border);
}

/* Tampilan Grid Jam untuk Absen / Check-in Per Jam (Hourly) */
.hourly-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.hour-box {
    background: var(--wppob-bg-light);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--wppob-border);
}

.hour-box.done {
    background: #cce5ff;
    color: #004085;
    border-color: #b8daff;
}

.hour-box .time {
    display: block;
    font-size: 12px;
    font-weight: bold;
}

.hour-box .status {
    display: block;
    font-size: 14px;
    margin-top: 2px;
}

/* Tampilan Modal Dialog Generik */
.wppob-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--wppob-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wppob-modal-content {
    background: var(--wppob-bg);
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: var(--wppob-radius);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* ============================================================================
 * GAYA KETIKA DICETAK (Print Styles untuk Struk Pembelian)
 * ============================================================================ */
@media print {
    body * {
        visibility: hidden;
    }

    header,
    footer,
    nav,
    aside,
    .sidebar,
    .entry-header,
    .page-header,
    .site-header,
    .site-footer {
        display: none !important;
    }

    .wppob-receipt-wrap,
    .wppob-receipt-wrap * {
        visibility: visible;
    }

    .wppob-receipt-wrap {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        padding: 5mm;
        width: 100%;
        max-width: 80mm;
        border: none;
        box-shadow: none;
        font-size: 10pt;
        line-height: 1.4;
        color: #000;
    }

    .wppob-receipt-actions {
        display: none;
    }

    .wppob-receipt-wrap img {
        max-width: 100%;
    }

    .wppob-receipt-table td {
        padding: 4px 0;
    }

    .wppob-receipt-sn .sn-content {
        padding: 8px;
        font-size: 12pt;
    }
}

/* ============================================================================
 * BANNER PENGUMUMAN (Announcement Bar)
 * ============================================================================ */
.wppob-announcement {
    padding: 12px 40px 12px 15px;
    border-radius: var(--wppob-radius);
    margin-bottom: 20px;
    position: relative;
    animation: wppob-slideDown 0.3s ease-out;
}

.wppob-announcement-info {
    background: var(--wppob-info-bg);
    border: 1px solid var(--wppob-info-border);
    color: var(--wppob-info-text);
}

.wppob-announcement-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.wppob-announcement-error {
    background: var(--wppob-error-bg);
    border: 1px solid var(--wppob-error-border);
    color: var(--wppob-error-text);
}

.wppob-dismiss-announcement {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
}

.wppob-dismiss-announcement:hover {
    opacity: 1;
}

/* ============================================================================
 * PENYARING & PENCARIAN TRANSAKSI
 * ============================================================================ */
.wppob-txn-filters {
    margin-bottom: 25px;
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.wppob-filter-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.wppob-search-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.wppob-search-input:focus {
    border-color: var(--wppob-primary);
    box-shadow: 0 0 0 3px rgba(95, 86, 198, 0.15);
    outline: none;
}

.wppob-status-filter {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    min-width: 150px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.wppob-status-filter:focus {
    border-color: var(--wppob-primary);
    box-shadow: 0 0 0 3px rgba(95, 86, 198, 0.15);
    outline: none;
}

.wppob-btn-reset {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.wppob-btn-reset:hover {
    background: #e2e8f0 !important;
    color: #1e293b !important;
}

/* ============================================================================
 * LENCANA STATUS (Status Badges)
 * ============================================================================ */
.wppob-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.wppob-status-badge.status-success {
    background: var(--wppob-success-bg);
    color: var(--wppob-success-text);
}

.wppob-status-badge.status-failed,
.wppob-status-badge.status-retried {
    background: var(--wppob-error-bg);
    color: var(--wppob-error-text);
}

.wppob-status-badge.status-processing {
    background: var(--wppob-info-bg);
    color: var(--wppob-info-text);
}

.wppob-status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* ============================================================================
 * TOMBOL FAVORIT
 * ============================================================================ */
.wppob-product-item {
    position: relative;
}

.wppob-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 22px !important;
    cursor: pointer;
    color: #cbd5e1 !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color var(--wppob-transition), transform var(--wppob-transition);
    z-index: 2;
    outline: none !important;
}

.wppob-favorite-btn:hover {
    transform: scale(1.15);
    color: #fbbf24 !important;
}

.wppob-favorite-btn.is-favorite {
    color: #fbbf24 !important;
    text-shadow: 0 0 4px rgba(251,191,36,0.2);
}

/* ============================================================================
 * TOMBOL ULANGI & CEK STATUS
 * ============================================================================ */
.wppob-retry-btn {
    font-size: 12px !important;
    padding: 4px 10px !important;
    background: var(--wppob-primary) !important;
    color: #fff !important;
    border-color: var(--wppob-primary) !important;
}

.wppob-retry-btn:hover {
    background: var(--wppob-primary-hover) !important;
}

.wppob-check-status-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px;
    vertical-align: middle;
}

.wppob-check-status-btn.spinning {
    animation: wppob-spin 1s linear infinite;
}

.wppob-btn-sm {
    font-size: 12px;
    padding: 3px 8px;
    color: var(--wppob-primary);
    text-decoration: none;
}

.wppob-btn-sm:hover {
    text-decoration: underline;
}

/* ============================================================================
 * PEMBAGIAN HALAMAN (Pagination)
 * ============================================================================ */
.wppob-pagination {
    margin-top: 20px;
    text-align: center;
}

.wppob-pagination .page-numbers {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    border: 1px solid var(--wppob-border);
    border-radius: var(--wppob-radius-sm);
    text-decoration: none;
    color: var(--wppob-text);
    transition: background var(--wppob-transition);
}

.wppob-pagination .page-numbers.current {
    background: var(--wppob-primary);
    color: #fff;
    border-color: var(--wppob-primary);
}

.wppob-pagination .page-numbers:hover:not(.current) {
    background: var(--wppob-bg-light);
}

/* ============================================================================
 * KELAS UTILITY & HELPER
 * ============================================================================ */
.wppob-text-success {
    color: var(--wppob-success) !important;
}

.wppob-text-danger {
    color: var(--wppob-error) !important;
}

.wppob-text-muted {
    color: var(--wppob-text-muted) !important;
}

.wppob-btn-full {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    margin-top: 10px;
}

.wppob-notification-area {
    margin-top: 15px;
}

.wppob-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.wppob-card:hover {
    border-color: rgba(95, 86, 198, 0.3);
    box-shadow: 0 8px 24px rgba(95, 86, 198, 0.08);
}

.wppob-form-inner {
    margin-top: 20px;
}

.wppob-add-bank-toggle {
    margin-top: 20px;
}

.wppob-add-bank-toggle summary {
    cursor: pointer;
    color: var(--wppob-primary);
    font-weight: 600;
    font-size: 14px;
    user-select: none;
    outline: none;
    transition: color 0.2s ease;
}

.wppob-add-bank-toggle summary:hover {
    color: var(--wppob-primary-hover);
}

/* KOTAK INFORMASI REFERRAL */
.wppob-referral-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.wppob-referral-box:hover {
    border-color: rgba(95, 86, 198, 0.3);
    box-shadow: 0 8px 24px rgba(95, 86, 198, 0.08);
}

.wppob-referral-link-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    font-size: 13.5px;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wppob-referral-link-input:hover {
    border-color: var(--wppob-primary);
    background: #ffffff;
}

.wppob-referral-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.wppob-stat-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wppob-stat-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.wppob-stat-card .stat-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--wppob-primary);
    line-height: 1.2;
}

.wppob-stat-card .stat-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
}

/* Daftar Rekening Tersimpan */
.wppob-saved-banks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wppob-saved-banks-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--wppob-border-light);
}

.wppob-saved-banks-list li:last-child {
    border-bottom: none;
}

/* Shimmer Saldo */
.wppob-balance-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--wppob-primary);
}

/* Kartu Misi Harian */
.wppob-mission-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.wppob-mission-card:hover {
    border-color: rgba(95, 86, 198, 0.3);
    box-shadow: 0 8px 24px rgba(95, 86, 198, 0.08);
}

/* ============================================================================
 * ANIMASI (Kustom Keyframes)
 * ============================================================================ */
@keyframes wppob-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wppob-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================================================
 * RESPONSIF — MOBILE FIRST (Kecocokan Layar Seluler)
 * ============================================================================ */
@media (max-width: 768px) {
    .wppob-frontend-wrap {
        padding: 10px;
        margin: 10px auto;
    }

    .wppob-dashboard-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .wppob-category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .wppob-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wppob-filter-row {
        flex-direction: column;
    }

    .wppob-search-input,
    .wppob-status-filter {
        width: 100%;
        min-width: unset;
    }

    .wppob-referral-stats {
        flex-direction: column;
    }

    .wppob-mission-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .wppob-payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .wppob-receipt-wrap {
        margin: 15px auto;
        padding: 15px;
    }

    .hourly-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Scroll otomatis tabel pada seluler */
    .shop_table_responsive {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wppob-sidebar {
        width: 85%;
        right: -85%;
    }
}

@media (max-width: 480px) {
    .wppob-category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .wppob-product-grid {
        grid-template-columns: 1fr;
    }

    .wppob-calendar-wrapper {
        max-width: 100%;
    }

    .cal-day {
        height: 34px;
        font-size: 12px;
    }

    .wppob-pagination .page-numbers {
        padding: 4px 8px;
        font-size: 12px;
    }

    .hourly-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Custom Header & Footer untuk Struk */
.wppob-receipt-custom-header {
    text-align: center;
    margin-bottom: 15px;
    white-space: pre-wrap;
    font-weight: bold;
    border-bottom: 1px solid var(--wppob-border-light, #eee);
    padding-bottom: 10px;
}

.wppob-receipt-custom-footer {
    text-align: center;
    margin-top: 15px;
    white-space: pre-wrap;
    color: var(--wppob-text-muted, #555);
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

/* ============================================================================
 * PRINT MEDIA STYLES & PRINT BUTTON
 * ============================================================================ */
.wppob-print-btn {
    background-color: var(--wppob-success, #25d366) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--wppob-radius-sm, 5px) !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-left: 5px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wppob-print-btn:hover {
    background-color: var(--wppob-success-hover, #21bd5b) !important;
}

.wppob-print-btn .dashicons {
    margin-right: 6px;
}

/* Tombol Premium Unduh TXT (Format Thermal) */
.wppob-download-txt-btn {
    background-color: #0f766e !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--wppob-radius-sm, 5px) !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-left: 5px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out !important;
}

.wppob-download-txt-btn:hover {
    background-color: #0d9488 !important;
}

.wppob-download-txt-btn .dashicons {
    margin-right: 6px;
}

/* Tombol Premium Unduh CSV (Format Data) */
.wppob-download-csv-btn {
    background-color: #1e3a8a !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--wppob-radius-sm, 5px) !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-left: 5px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out !important;
}

.wppob-download-csv-btn:hover {
    background-color: #2563eb !important;
}

.wppob-download-csv-btn .dashicons {
    margin-right: 6px;
}

@media print {
    body * {
        visibility: hidden;
    }

    .wppob-receipt-wrap,
    .wppob-receipt-wrap * {
        visibility: visible;
    }

    .wppob-receipt-wrap {
        position: absolute;
        left: 0;
        top: 0;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        font-size: 14px;
        line-height: 1.4;
    }

    .wppob-receipt-footer,
    .wppob-receipt-footer *,
    .wppob-print-btn,
    .wppob-download-txt-btn,
    .wppob-download-csv-btn,
    .wppob-receipt-actions,
    .wppob-receipt-actions * {
        display: none !important;
    }
}

/* ============================================================================
 * OVERRIDE DI ATAS TEMA (Theme-agnostic CSS overrides)
 * ============================================================================ */
.wppob-frontend-wrap button[type="submit"],
.wppob-frontend-wrap button.button-primary,
.wppob-frontend-wrap .button.button-primary,
.wppob-frontend-wrap #wppob-submit-topup,
.wppob-frontend-wrap #wppob-submit-transfer,
.wppob-frontend-wrap #wppob-submit-purchase {
    background-color: var(--wppob-primary) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(95, 86, 198, 0.15) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    height: auto !important;
    line-height: 1.4 !important;
}

.wppob-frontend-wrap button[type="submit"]:hover,
.wppob-frontend-wrap button.button-primary:hover,
.wppob-frontend-wrap .button.button-primary:hover,
.wppob-frontend-wrap #wppob-submit-topup:hover,
.wppob-frontend-wrap #wppob-submit-transfer:hover,
.wppob-frontend-wrap #wppob-submit-purchase:hover:not(:disabled) {
    background-color: var(--wppob-primary-hover) !important;
    box-shadow: 0 6px 16px rgba(95, 86, 198, 0.25) !important;
}

.wppob-frontend-wrap input[type="text"],
.wppob-frontend-wrap input[type="number"],
.wppob-frontend-wrap input[type="password"],
.wppob-frontend-wrap select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02) !important;
    color: #1e293b !important;
    height: auto !important;
}

.wppob-frontend-wrap input:focus,
.wppob-frontend-wrap select:focus {
    border-color: var(--wppob-primary) !important;
    box-shadow: 0 0 0 3px rgba(95, 86, 198, 0.15) !important;
    outline: none !important;
}

.wppob-frontend-wrap select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

/* Struk / Nota Pembelian Premium */
.wppob-receipt-wrap {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
    border-radius: 16px !important;
    font-family: var(--wppob-font-mono) !important;
    color: #1e293b !important;
}

.wppob-receipt-sn .sn-content {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    color: var(--wppob-primary) !important;
}

/* ============================================================================
 * WOODMART THEME STYLE OVERRIDES & MICRO-INTERACTIONS
 * ============================================================================ */

/* Favorite Button Styling */
.wppob-favorite-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: transparent !important;
    border: none !important;
    font-size: 20px !important;
    color: #cbd5e1 !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
    z-index: 10 !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}

.wppob-favorite-btn:hover {
    color: #f59e0b !important;
    transform: scale(1.15) !important;
    background: transparent !important;
}

.wppob-favorite-btn.is-favorite {
    color: #f59e0b !important;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.3) !important;
}

/* Kembali Button Styling */
.wppob-back-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 18px !important;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px !important;
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 25px !important;
    height: auto !important;
    line-height: 1.4 !important;
}

.wppob-back-button:hover {
    background-color: var(--wppob-primary-bg) !important;
    border-color: var(--wppob-primary-light) !important;
    color: var(--wppob-primary) !important;
}

.wppob-back-button svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
    transition: transform 0.25s ease !important;
}

.wppob-back-button:hover svg {
    transform: translateX(-3px) !important;
}

/* Secondary / Standard Button Styling */
.wppob-frontend-wrap button:not([type="submit"]):not(.button-primary):not(.wppob-favorite-btn),
.wppob-frontend-wrap .button:not(.button-primary):not(.wppob-favorite-btn) {
    background-color: #ffffff !important;
    color: #475569 !important;
    border: 1px solid #cbd5e1 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    height: auto !important;
    line-height: 1.4 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.wppob-frontend-wrap button:not([type="submit"]):not(.button-primary):not(.wppob-favorite-btn):hover,
.wppob-frontend-wrap .button:not(.button-primary):not(.wppob-favorite-btn):hover {
    background-color: #f8fafc !important;
    border-color: #94a3b8 !important;
    color: #0f172a !important;
}

/* Specific button colors overrides */
.wppob-frontend-wrap .wppob-btn-reset {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #475569 !important;
}

.wppob-frontend-wrap .wppob-btn-reset:hover {
    background-color: #e2e8f0 !important;
    color: #1e293b !important;
}

.wppob-frontend-wrap .wppob-delete-bank-btn {
    background-color: #fff1f2 !important;
    border-color: #fecdd3 !important;
    color: #be123c !important;
}

.wppob-frontend-wrap .wppob-delete-bank-btn:hover {
    background-color: #ffe4e6 !important;
    color: #9f1239 !important;
}

/* Receipt Footer Layout */
.wppob-receipt-footer {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    margin-top: 30px !important;
}

.wppob-receipt-footer .wppob-back-button {
    margin-bottom: 0 !important;
}