/* =========================================================
   C4 SMP WEBSHOP - Modern ฟ้า-ขาว (Sky Blue & White) Theme
   ========================================================= */

:root {
    --primary-sky: #0284c7;
    --primary-sky-light: #38bdf8;
    --primary-sky-lighter: #bae6fd;
    --primary-sky-dark: #0369a1;
    --primary-sky-glow: rgba(56, 189, 248, 0.4);

    --accent-gold: #f59e0b;
    --accent-emerald: #10b981;
    --accent-rose: #f43f5e;
    --accent-purple: #8b5cf6;

    --bg-main: #0b1329;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-hover: rgba(30, 41, 59, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-active: rgba(56, 189, 248, 0.15);

    --border-glass: rgba(255, 255, 255, 0.12);
    --border-sky: rgba(56, 189, 248, 0.35);
    --border-sky-bright: #38bdf8;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sky: 0 10px 30px -10px rgba(56, 189, 248, 0.3);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.3);

    --mc-font: 'Prompt', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--mc-font);
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Atmosphere */
.bg-atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #0c1938 45%, #050b18 100%);
}

.cloud {
    position: absolute;
    width: 600px;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cloud-1 {
    top: 10%;
    left: -100px;
    animation: floatCloud1 25s infinite alternate ease-in-out;
}

.cloud-2 {
    top: 50%;
    right: -150px;
    animation: floatCloud2 30s infinite alternate ease-in-out;
}

@keyframes floatCloud1 {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(60px) translateX(80px); }
}

@keyframes floatCloud2 {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-80px) translateX(-90px); }
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(11, 19, 41, 0.85);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-logo {
    transform: scale(1.08) rotate(3deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.brand-subtitle {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-sky-light);
}

/* Nav Menu Buttons */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    position: relative;
}

.nav-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.nav-btn:hover {
    color: #fff;
    background: var(--bg-glass);
    border-color: var(--border-glass);
}

.nav-btn:hover svg {
    transform: translateY(-2px);
}

.nav-btn.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.3) 0%, rgba(56, 189, 248, 0.15) 100%);
    border-color: var(--border-sky);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}

.admin-btn {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
    color: var(--accent-gold) !important;
}

.admin-btn:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.3) !important;
}

.badge-pending {
    background: var(--accent-rose);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* User Pill & Auth Button */
.user-pill-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-discord-login {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-discord-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.user-profile-pill {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.45rem 0.85rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.user-avatar-wrap {
    position: relative;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary-sky-light);
}

.user-role-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 4px;
}

.user-info-text {
    display: flex;
    flex-direction: column;
}

.user-name-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.user-display-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.user-ign-tag {
    font-size: 0.72rem;
    color: var(--primary-sky-light);
    background: rgba(56, 189, 248, 0.15);
    padding: 1px 6px;
    border-radius: 4px;
}

.user-balances {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.points-tag {
    color: #38bdf8;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.btn-icon-logout, .btn-icon-link {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.btn-icon-logout:hover {
    color: var(--accent-rose);
    background: rgba(244, 63, 94, 0.15);
}

.btn-icon-link:hover {
    color: var(--primary-sky-light);
    background: rgba(56, 189, 248, 0.15);
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem 1.5rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.25) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(8, 14, 29, 0.95) 100%);
    border: 1px solid var(--border-sky);
    box-shadow: var(--shadow-sky);
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-full);
    color: var(--primary-sky-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.9rem;
    color: #ffffff;
}

.highlight-blue {
    background: linear-gradient(90deg, #38bdf8 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.stat-box svg {
    width: 24px;
    height: 24px;
    color: var(--primary-sky-light);
}

.stat-box div {
    display: flex;
    flex-direction: column;
}

.stat-box strong {
    font-size: 0.95rem;
    color: #fff;
}

.stat-box span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.search-wrap {
    position: relative;
    width: 300px;
}

.search-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    width: 18px;
    height: 18px;
}

.search-wrap input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.6rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.25s ease;
}

.search-wrap input:focus {
    outline: none;
    border-color: var(--primary-sky-light);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

/* Item Card */
.item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-sky-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-sky);
    box-shadow: 0 12px 30px -5px rgba(56, 189, 248, 0.25);
    background: var(--bg-card-hover);
}

.item-card:hover::before {
    opacity: 1;
}

.item-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary-sky-light);
    border: 1px solid var(--border-sky);
}

.item-badge-protect {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border-color: rgba(16, 185, 129, 0.35);
}

.item-img-wrap {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-sm);
}

.item-img {
    max-width: 96px;
    max-height: 96px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.item-card:hover .item-img {
    transform: scale(1.15) rotate(-3deg);
}

.item-info {
    margin-bottom: 1rem;
}

.item-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-stock-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-glass);
}

.item-price {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-sky-light);
    line-height: 1;
}

.price-unit {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.btn-buy {
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-sky) 0%, var(--primary-sky-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
    filter: brightness(1.1);
}

.btn-buy:disabled {
    background: var(--border-glass);
    color: var(--text-dim);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Section: Top-up */
.topup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sky);
    backdrop-filter: blur(16px);
}

.topup-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.topup-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.topup-header h2 svg {
    color: var(--primary-sky-light);
}

.topup-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.topup-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: center;
}

.payment-info-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-frame {
    position: relative;
    padding: 14px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.qr-img {
    width: 200px;
    height: 200px;
    display: block;
    object-fit: contain;
}

.qr-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #003764;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.account-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
}

.detail-row span {
    color: var(--text-muted);
}

.rate-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

/* Upload Slip Dropzone */
.upload-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dropzone {
    border: 2px dashed var(--border-sky);
    border-radius: var(--radius-lg);
    background: rgba(56, 189, 248, 0.03);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropzone:hover, .dropzone.dragover {
    background: rgba(56, 189, 248, 0.08);
    border-color: var(--primary-sky-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.15);
}

.dropzone-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem auto;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-sky-light);
}

.dropzone-icon svg {
    width: 32px;
    height: 32px;
}

.dropzone-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.dropzone-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.slip-preview-box {
    position: relative;
    max-width: 260px;
    margin: 0 auto;
}

.slip-preview-box img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
}

.btn-cancel-slip {
    margin-top: 0.75rem;
    background: rgba(244, 63, 94, 0.2);
    color: var(--accent-rose);
    border: 1px solid rgba(244, 63, 94, 0.4);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-cancel-slip:hover {
    background: rgba(244, 63, 94, 0.3);
}

.upload-actions {
    display: flex;
}

.btn-submit-topup {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: inherit;
}

.btn-submit-topup:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-submit-topup:disabled {
    background: var(--border-glass);
    color: var(--text-dim);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.slip-alert-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slip-alert-note svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* History & Tables */
.history-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.history-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.data-table th {
    padding: 0.85rem 1rem;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.data-table tr:hover td {
    background: rgba(56, 189, 248, 0.03);
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-status-delivered {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-status-failed {
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent-rose);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.badge-status-full-inventory {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.35);
}

.badge-status-cancelled {
    background: rgba(244, 63, 94, 0.15);
    color: #fda4af;
    border: 1px solid rgba(244, 63, 94, 0.35);
}

/* Delivery Table Actions & Filters */
.deliveries-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.filter-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.filter-pill.active {
    background: rgba(56, 189, 248, 0.2);
    border-color: var(--border-sky);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

.tbl-actions-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.btn-tbl-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-tbl-action:active {
    transform: scale(0.95);
}

.btn-tbl-edit {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.35);
    color: var(--primary-sky-light);
}

.btn-tbl-edit:hover {
    background: rgba(56, 189, 248, 0.25);
    border-color: var(--border-sky-bright);
    color: #fff;
}

.btn-tbl-cancel {
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.35);
    color: #fda4af;
}

.btn-tbl-cancel:hover {
    background: rgba(244, 63, 94, 0.25);
    border-color: #f43f5e;
    color: #fff;
}

.tbl-static-tag {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-style: italic;
}

/* Admin Section */
.admin-section {
    background: var(--bg-card);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.admin-header h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.admin-tab-btn.active {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--accent-gold);
    color: #fff;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-md);
    color: #bae6fd;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.notice-box svg {
    color: var(--primary-sky-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pending-item-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: #0d1730;
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-sky);
    overflow: hidden;
    animation: scaleUp 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-lg {
    max-width: 780px;
}

@keyframes scaleUp {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.modal-header h3 svg {
    color: var(--primary-sky-light);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.2);
}

/* Purchase Modal Inner */
.purchase-item-summary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.purchase-item-img {
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.purchase-item-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.purchase-item-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.purchase-price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 0.4rem;
}

.purchase-price-tag .price-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-sky-light);
}

.purchase-price-tag .price-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 1.25rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-sky-light);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ign-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0 0.75rem;
}

.ign-input-wrap:focus-within {
    border-color: var(--primary-sky-light);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.player-head-preview {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    image-rendering: pixelated;
    margin-right: 0.6rem;
}

.ign-input-wrap input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.75rem 0;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
}

.ign-input-wrap input:focus {
    outline: none;
}

/* Bedrock Switch Toggle */
.bedrock-toggle-wrap {
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    user-select: none;
}

.switch-label input {
    display: none;
}

.switch-slider {
    position: relative;
    width: 46px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.switch-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.switch-label input:checked + .switch-slider {
    background: var(--primary-sky-light);
}

.switch-label input:checked + .switch-slider::before {
    transform: translateX(22px);
    background: #034870;
}

.switch-text {
    display: flex;
    flex-direction: column;
}

.switch-text strong {
    font-size: 0.92rem;
    color: #fff;
}

.switch-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.quantity-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-picker button {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-picker button:hover {
    background: var(--primary-sky);
    border-color: var(--primary-sky-light);
}

.quantity-picker input {
    width: 80px;
    text-align: center;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.total-summary-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(56, 189, 248, 0.05) 100%);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.total-summary-box span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.total-summary-box strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-sky-light);
}

/* Quick ID button */
.login-quick-options {
    margin-top: 0.75rem;
}

.btn-quick-id {
    width: 100%;
    padding: 0.65rem 1rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-quick-id:hover {
    background: rgba(245, 158, 11, 0.22);
}

/* Discord Guild Warning */
.modal-warning-icon {
    width: 68px;
    height: 68px;
    margin: 0.5rem auto 1rem auto;
    background: rgba(244, 63, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rose);
}

.modal-warning-icon svg {
    width: 36px;
    height: 36px;
}

.btn-discord-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    background: #5865F2;
    color: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.2s;
}

.btn-discord-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

.modal-actions-center {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

/* Texture Picker */
.texture-picker-controls {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.btn-group {
    display: flex;
    gap: 0.35rem;
    background: rgba(15, 23, 42, 0.8);
    padding: 3px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: all 0.2s;
}

.filter-btn.active {
    background: var(--primary-sky);
    color: #fff;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 0.75rem;
    max-height: 420px;
    overflow-y: auto;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
}

.texture-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.texture-item:hover {
    border-color: var(--primary-sky-light);
    transform: scale(1.08);
    background: rgba(56, 189, 248, 0.15);
}

.texture-item img {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
    object-fit: contain;
}

.texture-item span {
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Link PIN */
.pin-code-display {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: var(--primary-sky-light);
    margin: 1.5rem 0 1rem 0;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.pin-command-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.pin-command-copy:hover {
    background: rgba(56, 189, 248, 0.1);
}

.pin-command-copy code {
    font-size: 1.1rem;
    color: #fff;
    font-family: monospace;
}

.pin-command-copy svg {
    color: var(--primary-sky-light);
    width: 18px;
    height: 18px;
}

/* Common Buttons & Utilities */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, var(--primary-sky) 0%, var(--primary-sky-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(56, 189, 248, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent-rose);
    border: 1px solid rgba(244, 63, 94, 0.4);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-danger:hover {
    background: rgba(244, 63, 94, 0.25);
}

.hidden {
    display: none !important;
}

.text-center { text-align: center; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }

/* Edit modal preview */
.edit-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.edit-preview-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.edit-preview-img-wrap img {
    width: 80px;
    height: 80px;
    image-rendering: pixelated;
    object-fit: contain;
}

.btn-choose-texture {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid var(--border-sky);
    border-radius: var(--radius-sm);
    color: var(--primary-sky-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: inherit;
}

.btn-choose-texture:hover {
    background: rgba(56, 189, 248, 0.25);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: #0d1730;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.92rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    animation: toastSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 380px;
}

@keyframes toastSlide {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-success {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, #0d1730 60%);
}

.toast-error {
    border-color: rgba(244, 63, 94, 0.5);
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, #0d1730 60%);
}

.toast-info {
    border-color: rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, #0d1730 60%);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .topup-grid {
        grid-template-columns: 1fr;
    }
    .edit-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem;
    }
}

/* Auth Modal Tabs & Modern Form Styles */
.auth-modal-header {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    gap: 1rem;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
}

.auth-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.15rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.auth-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.auth-tab-btn.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.35) 0%, rgba(56, 189, 248, 0.15) 100%);
    border-color: var(--border-sky);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.25);
}

.helper-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =========================================================
   Mobile UI Elements - Base Styles (Desktop Defaults)
   ========================================================= */
.mobile-nav-actions {
    display: none;
}

.mobile-category-bar {
    display: none;
}

.mobile-drawer-backdrop {
    display: none;
}

.mobile-drawer {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

.modal-drag-handle {
    display: none;
}

/* Payment Helper Actions (Desktop & Mobile) */
.payment-action-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1rem;
}

.btn-copy-pp, .btn-save-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-copy-pp:hover, .btn-save-qr:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--border-sky);
    color: #fff;
}

.btn-copy-pp:active, .btn-save-qr:active {
    transform: scale(0.97);
}

.input-with-action {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.input-with-action input {
    flex: 1;
    min-width: 0;
}

.btn-paste-voucher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 1.15rem;
    background: rgba(244, 63, 94, 0.18);
    border: 1px solid rgba(244, 63, 94, 0.4);
    border-radius: var(--radius-md);
    color: #fda4af;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: all 0.2s ease;
}

.btn-paste-voucher:hover {
    background: rgba(244, 63, 94, 0.3);
    border-color: rgba(244, 63, 94, 0.7);
    color: #fff;
}

.btn-paste-voucher:active {
    transform: scale(0.97);
}

/* =========================================================
   Mobile UI Responsive Layout (<= 768px)
   ========================================================= */
@media (max-width: 768px) {
    /* Navbar Responsive Adjustments */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0.35rem 0;
    }

    .nav-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.5rem 1rem !important;
        gap: 0.5rem !important;
    }

    .nav-menu {
        display: none !important;
    }

    .user-pill-container {
        display: none !important;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-title {
        font-size: 1.15rem;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }

    /* Mobile Header Action Group */
    .mobile-nav-actions {
        display: flex !important;
        align-items: center;
        gap: 0.6rem;
    }

    .mobile-points-badge {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 0.38rem 0.8rem;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(56, 189, 248, 0.15) 100%);
        border: 1px solid rgba(245, 158, 11, 0.4);
        border-radius: var(--radius-full);
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent-gold);
        cursor: pointer;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
        transition: transform 0.2s ease;
    }

    .mobile-points-badge:active {
        transform: scale(0.95);
    }

    .mobile-points-badge i {
        width: 14px;
        height: 14px;
        color: var(--accent-gold);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--border-glass);
        color: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-menu-btn:active {
        background: rgba(56, 189, 248, 0.2);
        border-color: var(--border-sky);
        transform: scale(0.95);
    }

    .mobile-menu-btn i {
        width: 20px;
        height: 20px;
    }

    /* Horizontal Category Quick-Chips Bar */
    .mobile-category-bar {
        display: block !important;
        position: sticky;
        top: 56px;
        z-index: 95;
        background: rgba(11, 19, 41, 0.94);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-glass);
        padding: 0.5rem 0.75rem;
    }

    .mobile-chips-scroll {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        padding: 2px 0;
    }

    .mobile-chips-scroll::-webkit-scrollbar {
        display: none;
    }

    .chip-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0.42rem 0.85rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-full);
        color: var(--text-muted);
        font-size: 0.82rem;
        font-weight: 500;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
        font-family: inherit;
        position: relative;
    }

    .chip-btn i {
        width: 14px;
        height: 14px;
    }

    .chip-btn.active {
        background: linear-gradient(135deg, rgba(2, 132, 199, 0.35) 0%, rgba(56, 189, 248, 0.2) 100%);
        border-color: var(--border-sky);
        color: #fff;
        box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
        font-weight: 600;
    }

    .chip-btn.active i {
        color: var(--primary-sky-light);
    }

    .chip-btn .badge-pending {
        position: absolute;
        top: -4px;
        right: -4px;
        font-size: 0.65rem;
        padding: 1px 5px;
    }

    /* Fixed Mobile Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(11, 19, 41, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-glass);
        padding-top: 0.35rem;
        padding-bottom: calc(0.35rem + env(safe-area-inset-bottom));
        box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.6);
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    }

    /* Auto-hide bottom navigation when modal is open to prevent blocking buttons */
    body.modal-open .mobile-bottom-nav,
    body:has(.modal-backdrop:not(.hidden)) .mobile-bottom-nav {
        transform: translateY(120%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        background: transparent;
        border: none;
        color: var(--text-dim);
        font-size: 0.68rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 4px 0;
        font-family: inherit;
    }

    .bottom-nav-item i {
        width: 19px;
        height: 19px;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .bottom-nav-item:active {
        transform: scale(0.92);
    }

    .bottom-nav-item.active {
        color: var(--primary-sky-light);
        font-weight: 600;
    }

    .bottom-nav-item.active i {
        color: var(--primary-sky-light);
        transform: translateY(-1px);
        filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.6));
    }

    /* Elevated Center Top-up Button */
    .bottom-nav-topup .topup-icon-bubble {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -14px;
        box-shadow: 0 4px 16px rgba(56, 189, 248, 0.5);
        border: 3px solid #0b1329;
        transition: all 0.2s ease;
    }

    .bottom-nav-topup .topup-icon-bubble i {
        width: 20px;
        height: 20px;
        color: #fff;
    }

    .bottom-nav-topup:active .topup-icon-bubble {
        transform: scale(0.9);
        box-shadow: 0 2px 8px rgba(56, 189, 248, 0.4);
    }

    .bottom-nav-topup.active .topup-icon-bubble {
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.85);
        background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    }

    .bnav-user-avatar-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
    }

    .bnav-user-avatar {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid var(--primary-sky-light);
    }

    /* Mobile Slide-in Drawer */
    .mobile-drawer-backdrop {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1050;
        opacity: 1;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-drawer-backdrop.hidden {
        opacity: 0;
        pointer-events: none;
        display: none !important;
    }

    .mobile-drawer {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 86vw;
        height: 100vh;
        height: 100dvh;
        background: #0d1730;
        border-left: 1px solid var(--border-sky);
        z-index: 1060;
        flex-direction: column;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 1.25rem 1rem calc(2rem + env(safe-area-inset-bottom)) 1rem;
    }

    .mobile-drawer.open {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-glass);
        margin-bottom: 1rem;
    }

    .drawer-close-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        color: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .drawer-close-btn:active {
        background: rgba(244, 63, 94, 0.2);
        border-color: rgba(244, 63, 94, 0.4);
        transform: scale(0.92);
    }

    .drawer-close-btn i {
        width: 18px;
        height: 18px;
    }

    /* Drawer User Profile Section */
    .drawer-user-section {
        margin-bottom: 1.25rem;
    }

    .drawer-user-card {
        background: rgba(15, 23, 42, 0.85);
        border: 1px solid var(--border-sky);
        border-radius: var(--radius-lg);
        padding: 1rem;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    }

    .drawer-user-profile-top {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .drawer-avatar-wrap {
        position: relative;
    }

    .drawer-avatar {
        width: 46px;
        height: 46px;
        border-radius: var(--radius-md);
        border: 2px solid var(--border-sky-bright);
        box-shadow: 0 0 10px var(--primary-sky-glow);
    }

    .drawer-role-badge {
        position: absolute;
        bottom: -6px;
        right: -6px;
        font-size: 0.62rem;
        padding: 1px 6px;
        border-radius: var(--radius-full);
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: #fff;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }

    .drawer-user-details {
        flex: 1;
        min-width: 0;
    }

    .drawer-username {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .drawer-ign-badge {
        display: inline-block;
        font-size: 0.75rem;
        color: var(--primary-sky-light);
        margin-top: 2px;
    }

    .drawer-balances {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 0.85rem;
    }

    .drawer-points-pill, .drawer-coins-pill {
        flex: 1;
        padding: 0.45rem 0.65rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: 0.82rem;
        font-weight: 700;
    }

    .drawer-points-pill {
        color: var(--accent-gold);
        border-color: rgba(245, 158, 11, 0.3);
        background: rgba(245, 158, 11, 0.08);
    }

    .drawer-coins-pill {
        color: #38bdf8;
        border-color: rgba(56, 189, 248, 0.3);
        background: rgba(56, 189, 248, 0.08);
    }

    .drawer-user-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .btn-drawer-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0.5rem;
        font-size: 0.78rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--border-glass);
        color: #fff;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.2s ease;
    }

    .btn-drawer-action:active {
        transform: scale(0.95);
    }

    .btn-drawer-logout {
        color: #fda4af;
        border-color: rgba(244, 63, 94, 0.3);
        background: rgba(244, 63, 94, 0.1);
    }

    .drawer-guest-box {
        background: rgba(15, 23, 42, 0.7);
        border: 1px dashed var(--border-glass);
        border-radius: var(--radius-lg);
        padding: 1.25rem 1rem;
        text-align: center;
    }

    .drawer-guest-box p {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0.85rem;
    }

    .drawer-guest-box .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Drawer Nav Menu */
    .drawer-nav {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }

    .drawer-nav-group-title {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--text-dim);
        padding: 0.25rem 0.5rem;
    }

    .drawer-nav-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.7rem 0.85rem;
        background: transparent;
        border: 1px solid transparent;
        border-radius: var(--radius-md);
        color: var(--text-muted);
        font-size: 0.92rem;
        font-weight: 500;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
        transition: all 0.2s ease;
        position: relative;
    }

    .drawer-nav-btn:active {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(3px);
    }

    .drawer-nav-btn.active {
        background: linear-gradient(135deg, rgba(2, 132, 199, 0.3) 0%, rgba(56, 189, 248, 0.15) 100%);
        border-color: var(--border-sky);
        color: #fff;
        font-weight: 600;
    }

    .drawer-nav-btn i {
        width: 18px;
        height: 18px;
    }

    .drawer-nav-btn .badge-pending {
        margin-left: auto;
    }

    /* Drawer Server Card */
    .drawer-server-card {
        margin-top: auto;
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        padding: 0.85rem;
    }

    .server-card-header {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary-sky-light);
        margin-bottom: 0.5rem;
    }

    .server-card-header i {
        width: 14px;
        height: 14px;
    }

    .server-ip-copy {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-sm);
        padding: 0.5rem 0.65rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .server-ip-copy:active {
        background: rgba(56, 189, 248, 0.15);
        border-color: var(--border-sky);
    }

    .server-ip-info {
        display: flex;
        flex-direction: column;
    }

    .server-label {
        font-size: 0.65rem;
        color: var(--text-dim);
    }

    .server-ip-text {
        font-size: 0.85rem;
        color: #fff;
        letter-spacing: 0.3px;
    }

    .server-port-text {
        font-size: 0.7rem;
        color: var(--accent-gold);
    }

    .btn-copy-mini {
        background: transparent;
        border: none;
        color: var(--primary-sky-light);
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
    }

    .btn-copy-mini i {
        width: 16px;
        height: 16px;
    }

    .drawer-community-links {
        margin-top: 0.65rem;
    }

    .drawer-btn-discord {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        padding: 0.55rem;
        background: #5865f2;
        color: #fff;
        text-decoration: none;
        border-radius: var(--radius-sm);
        font-size: 0.82rem;
        font-weight: 600;
        transition: background 0.2s ease;
    }

    .drawer-btn-discord:active {
        background: #4752c4;
        transform: scale(0.98);
    }

    .drawer-btn-discord i {
        width: 16px;
        height: 16px;
    }

    /* Main Content Padding for Bottom Nav (Ample clearance for last product cards) */
    .main-content {
        padding-bottom: calc(130px + env(safe-area-inset-bottom, 24px)) !important;
    }

    /* Toast Notification Positioning */
    .toast-container {
        bottom: calc(72px + env(safe-area-inset-bottom)) !important;
        right: 14px !important;
        left: 14px !important;
        max-width: calc(100% - 28px) !important;
    }

    .toast {
        max-width: 100% !important;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    /* Section Headers */
    .section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .search-wrap {
        width: 100%;
    }

    .search-wrap input {
        width: 100%;
    }
}

/* =========================================================
   Mobile UI Responsive Layout (<= 640px)
   ========================================================= */
@media (max-width: 640px) {
    /* 2-Column Product Grid */
    .items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        margin-bottom: 2rem !important;
    }

    .item-card {
        padding: 0.75rem !important;
        border-radius: var(--radius-md) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .item-img-wrap {
        height: 85px !important;
        margin-bottom: 0.4rem !important;
    }

    .item-img {
        max-height: 56px !important;
        max-width: 56px !important;
        image-rendering: pixelated !important;
    }

    .item-badge {
        font-size: 0.62rem !important;
        padding: 1px 5px !important;
    }

    .item-name {
        font-size: 0.88rem !important;
        min-height: auto !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .item-desc {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.4rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .item-price-tag {
        padding: 0.3rem 0.45rem !important;
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }

    .price-amount {
        font-size: 0.95rem !important;
    }

    .item-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        padding-top: 0.5rem !important;
        margin-top: auto !important;
    }

    .item-price {
        flex-direction: row !important;
        align-items: baseline !important;
        justify-content: space-between !important;
    }

    .btn-buy,
    .btn-buy-item {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.6rem 0.5rem !important;
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        min-height: 44px !important;
        border-radius: var(--radius-md) !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* Mobile Bottom-Sheet Modals */
    .modal-backdrop {
        align-items: flex-end !important;
        padding: 0 !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        z-index: 5000 !important;
    }

    .modal-box {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        max-height: 88vh !important;
        max-height: 88dvh !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        padding: 0.85rem 1.15rem 0 1.15rem !important;
        animation: sheetSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        position: relative !important;
        z-index: 5001 !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(56, 189, 248, 0.25) !important;
    }

    @keyframes sheetSlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .modal-drag-handle {
        display: block !important;
        width: 42px;
        height: 4px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.3);
        margin: 0 auto 0.75rem auto;
        flex-shrink: 0 !important;
    }

    .modal-header {
        padding: 0.25rem 0 0.75rem 0 !important;
        flex-shrink: 0 !important;
    }

    .modal-body {
        padding: 0.5rem 0 0.75rem 0 !important;
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-height: none !important;
    }

    .modal-footer {
        flex-shrink: 0 !important;
        position: sticky !important;
        bottom: 0 !important;
        background: #0d1730 !important;
        border-top: 1px solid var(--border-glass) !important;
        padding: 0.85rem 0 calc(1.25rem + env(safe-area-inset-bottom, 16px)) 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.6rem !important;
        z-index: 10 !important;
        margin: 0 !important;
    }

    .modal-footer button {
        width: 100% !important;
        justify-content: center !important;
        min-height: 48px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        border-radius: var(--radius-md) !important;
    }

    /* iOS Safari Auto-Zoom Fix */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Topup Grid Responsive */
    .topup-card {
        padding: 1.25rem 1rem !important;
    }

    .topup-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .payment-action-btns {
        grid-template-columns: 1fr !important;
    }

    .dropzone {
        padding: 1.5rem 1rem !important;
    }

    .angpao-card-box {
        padding: 1.25rem 1rem !important;
    }
}
