/* ============================================
   POP HOSTING PREMIUM — WHMCS Template
   Design System CSS (2026)
   
   Paleta consistente com o site pophosting.com.br
   Logo: branco/azul → fundos escuros para contraste
   ============================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
    /* Brand — consistente com pop-modern.css do site */
    --pop-primary: #0a1e3d;
    --pop-primary-mid: #0d3068;
    --pop-primary-light: #1354a5;
    --pop-accent: #1062fe;
    --pop-accent-hover: #0948b3;
    --pop-accent-light: rgba(16, 98, 254, 0.08);
    --pop-accent-glow: rgba(16, 98, 254, 0.2);

    --pop-green: #00c9a7;
    --pop-green-hover: #00a88a;
    --pop-green-light: rgba(0, 201, 167, 0.08);
    --pop-green-glow: rgba(0, 201, 167, 0.25);

    /* Status */
    --pop-success: #10b981;
    --pop-warning: #f59e0b;
    --pop-danger: #ef4444;
    --pop-info: #3b82f6;

    /* Neutros */
    --pop-text: #1a202c;
    --pop-text-secondary: #4a5568;
    --pop-text-muted: #718096;
    --pop-text-light: #a0aec0;
    --pop-bg: #f7f8fc;
    --pop-bg-alt: #eef1f8;
    --pop-white: #ffffff;
    --pop-border: #e2e8f0;
    --pop-border-light: #edf2f7;
    --pop-dark: #0a1e3d;
    --pop-dark-mid: #0d3068;

    /* Sombras */
    --pop-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --pop-shadow-sm: 0 2px 8px rgba(10, 30, 61, 0.06);
    --pop-shadow-md: 0 8px 24px rgba(10, 30, 61, 0.08);
    --pop-shadow-lg: 0 16px 48px rgba(10, 30, 61, 0.10);
    --pop-shadow-xl: 0 24px 56px rgba(10, 30, 61, 0.14);
    --pop-shadow-green: 0 4px 16px rgba(0, 201, 167, 0.3);
    --pop-shadow-accent: 0 4px 16px rgba(16, 98, 254, 0.3);

    /* Raios */
    --pop-radius-sm: 8px;
    --pop-radius: 12px;
    --pop-radius-lg: 16px;
    --pop-radius-xl: 20px;
    --pop-radius-pill: 50px;

    /* Transições */
    --pop-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pop-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --pop-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Global Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--pop-text);
    background: var(--pop-bg);
    line-height: 1.6;
    font-size: 15px;
}

/* Override WHMCS default body wrapper */
.tt-body-wrapper {
    background: var(--pop-bg) !important;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--pop-text);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    color: var(--pop-text-secondary);
    line-height: 1.7;
}

a {
    color: var(--pop-accent);
    text-decoration: none;
    transition: var(--pop-transition-fast);
}

a:hover {
    color: var(--pop-accent-hover);
    text-decoration: none;
}

/* ─── Focus Styles ─── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--pop-accent);
    outline-offset: 2px;
}

/* =============================================
   TOP BAR — Slim Dark Header
   ============================================= */
.pop-topbar {
    background: linear-gradient(135deg, var(--pop-primary) 0%, var(--pop-primary-mid) 100%);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.pop-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    max-width: 100%;
}

.pop-topbar-logo img {
    height: 32px;
    width: auto;
}

.pop-topbar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 1.5rem;
}

.pop-topbar-breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.pop-topbar-breadcrumb a:hover {
    color: rgba(255,255,255,0.9);
}

.pop-topbar-breadcrumb .sep {
    opacity: 0.3;
}

.pop-topbar-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pop-mobile-toggle {
    color: #fff !important;
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
}

.pop-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
}

.pop-mobile-link:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* =============================================
   ICON SIDEBAR — HOOST-style Fixed Left Nav
   ============================================= */
.hoost-style-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 90px;
    height: 100vh;
    background: var(--pop-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1040;
    border-right: none;
    padding: 1.5rem 0;
    box-shadow: 4px 0 15px rgba(16, 98, 254, 0.2);
}

.hoost-style-sidebar .sidebar-top,
.hoost-style-sidebar .sidebar-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hoost-style-sidebar .sidebar-logo {
    display: block;
    margin-bottom: 2rem;
    transition: transform 0.2s;
    background: #fff;
    border-radius: 8px;
    padding: 2px;
}
.hoost-style-sidebar .sidebar-logo img {
    height: 34px;
    width: auto;
    border-radius: 6px;
}
.hoost-style-sidebar .sidebar-logo:hover {
    transform: scale(1.05);
}

.hoost-style-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.pop-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 74px;
    padding: 0.8rem 0;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pop-sidebar-item i {
    font-size: 1.4rem;
    transition: all 0.2s ease;
}

.pop-sidebar-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.pop-sidebar-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.pop-sidebar-item.active::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
}

.hoost-style-sidebar .help-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}
.hoost-style-sidebar .help-text {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.hoost-style-sidebar .help-icon {
    width: 42px;
    height: 42px;
    background: #ffb822; /* Yellow-orange color for help bubble */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(255, 184, 34, 0.3);
}
.hoost-style-sidebar .help-icon:hover {
    transform: scale(1.1);
    color: #fff;
}
.hoost-style-sidebar .logout-btn {
    margin-top: 0.5rem;
    opacity: 0.8;
}
.hoost-style-sidebar .logout-btn:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

/* ── Layout with sidebar offset ── */
.pop-has-sidebar {
    padding-top: 1.5rem;
}

body.tt-body-wrapper {
    background: repeating-linear-gradient(
        90deg,
        #ffffff,
        #ffffff 4px,
        #f8fafc 4px,
        #f8fafc 8px
    );
    min-height: 100vh;
}

@media (min-width: 992px) {
    .pop-has-sidebar {
        margin-left: 90px;
    }
    .pop-footer-with-sidebar {
        margin-left: 90px;
    }
    .pop-topbar-inner {
        padding-left: 96px;
    }
}

/* ── Main content area (replaces old WHMCS sidebar layout) ── */
.pop-main-content {
    max-width: 100%;
}

/* Hide old WHMCS sidebar when icon sidebar is active */
.pop-has-sidebar .sidebar {
    display: none !important;
}

.pop-has-sidebar .col-lg-3:has(.sidebar) {
    display: none !important;
}

.pop-has-sidebar .col-lg-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* ── Order Form Header (Minimalista) — kept from old design ── */
.pop-header {
    background: linear-gradient(135deg, var(--pop-primary) 0%, var(--pop-primary-mid) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pop-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
}

.pop-header-logo img {
    height: 40px;
    width: auto;
}

.pop-header-orderform {
    background: linear-gradient(135deg, var(--pop-primary) 0%, var(--pop-primary-mid) 100%);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pop-header-orderform .pop-header-inner {
    padding: 1rem 1.5rem;
}

.pop-header-motivational {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.pop-header-motivational .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pop-green);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── User dropdown (used in topbar) ── */
.pop-user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.75rem;
    color: var(--pop-white);
    cursor: pointer;
    border-radius: var(--pop-radius-sm);
    transition: var(--pop-transition);
}

.pop-user-menu:hover {
    background: rgba(255, 255, 255, 0.08);
}

.pop-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--pop-white);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--pop-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--pop-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    line-height: 1.5;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary — Blue CTA */
.btn-primary,
.btn-pop-primary,
.primary-solid-btn {
    background: linear-gradient(135deg, var(--pop-accent) 0%, var(--pop-accent-hover) 100%) !important;
    color: var(--pop-white) !important;
    border: none !important;
    box-shadow: var(--pop-shadow-accent);
}

.btn-primary:hover,
.btn-pop-primary:hover,
.primary-solid-btn:hover {
    box-shadow: 0 6px 24px rgba(16, 98, 254, 0.4) !important;
    filter: brightness(1.05);
    color: var(--pop-white) !important;
}

/* Secondary — Accent Blue */
.btn-pop-secondary {
    background: linear-gradient(135deg, var(--pop-accent) 0%, var(--pop-accent-hover) 100%);
    color: var(--pop-white);
    box-shadow: var(--pop-shadow-accent);
}

.btn-pop-secondary:hover {
    box-shadow: 0 6px 24px rgba(16, 98, 254, 0.4);
    filter: brightness(1.05);
    color: var(--pop-white);
}

/* Outline */
.btn-pop-outline,
.secondary-outline-btn,
.outline-btn {
    background: transparent !important;
    color: var(--pop-accent) !important;
    border: 2px solid var(--pop-border) !important;
}

.btn-pop-outline:hover,
.secondary-outline-btn:hover,
.outline-btn:hover {
    border-color: var(--pop-accent) !important;
    background: var(--pop-accent-light) !important;
}

/* Danger */
.btn-danger {
    background: linear-gradient(135deg, var(--pop-danger), #dc2626) !important;
    color: var(--pop-white) !important;
    border: none !important;
}

/* Success */
.btn-success {
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-accent-hover)) !important;
    color: var(--pop-white) !important;
    border: none !important;
    box-shadow: var(--pop-shadow-accent);
}

/* Large CTA */
.btn-pop-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--pop-radius);
}

/* Complete Order — special */
.btn-complete-order {
    background: linear-gradient(135deg, var(--pop-accent) 0%, var(--pop-accent-hover) 100%);
    color: var(--pop-white);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--pop-radius);
    width: 100%;
    box-shadow: var(--pop-shadow-accent);
    position: relative;
    overflow: hidden;
}

.btn-complete-order::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-complete-order:hover {
    box-shadow: 0 8px 32px rgba(0, 201, 167, 0.45);
    transform: translateY(-2px);
    color: var(--pop-white);
}

/* =============================================
   CARDS
   ============================================= */
.pop-card {
    background: var(--pop-white);
    border: 1px solid var(--pop-border);
    border-radius: var(--pop-radius-lg);
    padding: 1.75rem;
    transition: var(--pop-transition);
}

.pop-card:hover {
    box-shadow: var(--pop-shadow-md);
}

.pop-card-elevated {
    box-shadow: var(--pop-shadow-sm);
    border: 1px solid var(--pop-border-light);
}

.pop-card-elevated:hover {
    transform: translateY(-4px);
    box-shadow: var(--pop-shadow-lg);
}

/* WHMCS card overrides */
.card {
    border: 1px solid var(--pop-border) !important;
    border-radius: var(--pop-radius) !important;
    box-shadow: var(--pop-shadow-xs) !important;
    overflow: hidden;
    transition: var(--pop-transition);
}

.card:hover {
    box-shadow: var(--pop-shadow-md) !important;
}

.card-header {
    background: var(--pop-white) !important;
    border-bottom: 1px solid var(--pop-border-light) !important;
    padding: 1rem 1.25rem !important;
    font-weight: 600 !important;
}

.card-body {
    padding: 1.25rem !important;
}

/* =============================================
   STAT CARDS (Dashboard)
   ============================================= */
.pop-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .pop-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .pop-stat-grid { grid-template-columns: 1fr; }
}

.pop-stat-card {
    background: var(--pop-white);
    border: 1px solid var(--pop-border-light);
    border-radius: var(--pop-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--pop-transition);
    text-decoration: none;
    color: inherit;
}

.pop-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pop-shadow-lg);
    text-decoration: none;
    color: inherit;
    border-color: var(--pop-accent);
}

.pop-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--pop-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pop-stat-icon.blue {
    background: linear-gradient(135deg, rgba(16, 98, 254, 0.1), rgba(16, 98, 254, 0.05));
    color: var(--pop-accent);
}

.pop-stat-icon.green {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1), rgba(0, 201, 167, 0.05));
    color: var(--pop-green);
}

.pop-stat-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: var(--pop-danger);
}

.pop-stat-icon.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: var(--pop-warning);
}

.pop-stat-info .stat {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pop-text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pop-stat-info .title {
    font-size: 0.8rem;
    color: var(--pop-text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Override existing tile styles */
.tiles .tile,
.tt-single-box {
    background: var(--pop-white) !important;
    border: 1px solid var(--pop-border-light) !important;
    border-radius: var(--pop-radius-lg) !important;
    transition: var(--pop-transition) !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.tiles .tile:hover,
.tt-single-box:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--pop-shadow-lg) !important;
    border-color: var(--pop-accent) !important;
}

/* =============================================
   SERVICE CARDS (Client Area Products)
   ============================================= */
.pop-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.pop-service-card {
    background: var(--pop-white);
    border: 1px solid var(--pop-border);
    border-radius: var(--pop-radius-lg);
    padding: 1.5rem;
    transition: var(--pop-transition);
    position: relative;
    overflow: hidden;
}

.pop-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pop-shadow-lg);
    border-color: var(--pop-accent);
}

.pop-service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pop-service-card-header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.pop-service-card-header .domain {
    font-size: 0.85rem;
    color: var(--pop-text-muted);
    margin-top: 0.25rem;
}

.pop-service-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--pop-text-secondary);
}

.pop-service-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pop-service-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pop-border-light);
    opacity: 0;
    transform: translateY(4px);
    transition: var(--pop-transition);
}

.pop-service-card:hover .pop-service-card-actions {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   STATUS BADGES
   ============================================= */
.pop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--pop-radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pop-badge-active,
.status-active,
.badge-success {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--pop-success) !important;
}

.pop-badge-pending,
.status-pending,
.badge-warning {
    background: rgba(245, 158, 11, 0.1) !important;
    color: var(--pop-warning) !important;
}

.pop-badge-suspended,
.status-suspended,
.badge-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    color: var(--pop-danger) !important;
}

.pop-badge-cancelled,
.status-cancelled {
    background: rgba(113, 128, 150, 0.1) !important;
    color: var(--pop-text-muted) !important;
}

.pop-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* =============================================
   FORMS
   ============================================= */
.form-control {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    padding: 0.7rem 1rem !important;
    border: 2px solid var(--pop-border) !important;
    border-radius: var(--pop-radius-sm) !important;
    background: var(--pop-white) !important;
    color: var(--pop-text) !important;
    transition: var(--pop-transition-fast) !important;
    height: auto !important; /* Fix cropped text in selects */
}

.form-control:focus {
    border-color: var(--pop-accent) !important;
    box-shadow: 0 0 0 3px var(--pop-accent-glow) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--pop-text-light) !important;
}

label,
.form-control-label {
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    color: var(--pop-text) !important;
    margin-bottom: 0.4rem !important;
}

.input-group-text,
.input-group-addon {
    background: var(--pop-bg) !important;
    border: 2px solid var(--pop-border) !important;
    border-radius: var(--pop-radius-sm) !important;
    color: var(--pop-text-muted) !important;
    font-size: 0.85rem !important;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='%23718096' d='M4.427 6.427l3.396 3.396a.25.25 0 00.354 0l3.396-3.396A.25.25 0 0011.396 6H4.604a.25.25 0 00-.177.427z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px !important;
    padding-right: 2.5rem !important;
}

/* =============================================
   TABS — Modern Style
   ============================================= */
.nav-tabs {
    border-bottom: 2px solid var(--pop-border-light) !important;
    gap: 0.25rem;
}

.nav-tabs .nav-link {
    border: none !important;
    border-bottom: 3px solid transparent !important;
    padding: 0.75rem 1.25rem !important;
    color: var(--pop-text-muted) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: var(--pop-transition) !important;
    border-radius: var(--pop-radius-sm) var(--pop-radius-sm) 0 0 !important;
    background: transparent !important;
}

.nav-tabs .nav-link:hover {
    color: var(--pop-accent) !important;
    background: var(--pop-accent-light) !important;
    border-bottom-color: transparent !important;
}

.nav-tabs .nav-link.active {
    color: var(--pop-accent) !important;
    border-bottom-color: var(--pop-accent) !important;
    background: transparent !important;
}

.nav-tabs .nav-link i {
    margin-right: 0.4rem;
}

/* Tab content */
.tab-content {
    border: none !important;
    background: transparent !important;
}

.product-details-tab-container {
    border: 1px solid var(--pop-border-light) !important;
    border-top: none !important;
    border-radius: 0 0 var(--pop-radius) var(--pop-radius) !important;
    padding: 1.5rem !important;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
    border-radius: var(--pop-radius) !important;
    border: none !important;
    font-size: 0.9rem !important;
    padding: 1rem 1.25rem !important;
    font-weight: 500 !important;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08) !important;
    color: #065f46 !important;
    border-left: 4px solid var(--pop-success) !important;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08) !important;
    color: #92400e !important;
    border-left: 4px solid var(--pop-warning) !important;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08) !important;
    color: #991b1b !important;
    border-left: 4px solid var(--pop-danger) !important;
}

.alert-info {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #1e40af !important;
    border-left: 4px solid var(--pop-info) !important;
}

/* =============================================
   PRODUCT DETAILS — Enhanced Management
   ============================================= */
.pop-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--pop-border-light);
}

.pop-product-header-info h2 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
}

.pop-product-header-info .domain-display {
    font-size: 0.9rem;
    color: var(--pop-text-muted);
}

.pop-product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Module Client Area — Highlighted Management Panel */
.module-client-area {
    background: var(--pop-bg) !important;
    border: 2px solid var(--pop-accent) !important;
    border-radius: var(--pop-radius-lg) !important;
    padding: 2rem !important;
    position: relative;
}

.module-client-area::before {
    content: '🛠️ Painel de Gerenciamento';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--pop-accent);
    color: var(--pop-white);
    padding: 0.25rem 1rem;
    border-radius: var(--pop-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Info rows in product details */
.product-details .row {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--pop-border-light);
}

.product-details .row:last-child {
    border-bottom: none;
}

/* Product status styling */
.product-status {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--pop-radius-lg);
    background: var(--pop-bg);
}

.product-status .fa-stack {
    margin-bottom: 0.75rem;
}

.product-status-text {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: var(--pop-radius-pill);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-status-active .product-status-text {
    background: rgba(16, 185, 129, 0.1);
    color: var(--pop-success);
}

.product-status-suspended .product-status-text {
    background: rgba(239, 68, 68, 0.1);
    color: var(--pop-danger);
}

.product-status-pending .product-status-text {
    background: rgba(245, 158, 11, 0.1);
    color: var(--pop-warning);
}

/* Product action buttons */
.product-actions-wrapper .btn {
    margin-bottom: 0.5rem;
    border-radius: var(--pop-radius-sm) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0.6rem 1rem !important;
}

/* =============================================
   UPTIME ROBOT WIDGET
   ============================================= */
.pop-uptime-widget {
    background: var(--pop-white);
    border: 1px solid var(--pop-border);
    border-radius: var(--pop-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pop-uptime-widget h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pop-uptime-monitor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--pop-border-light);
}

.pop-uptime-monitor:last-child {
    border-bottom: none;
}

.pop-uptime-monitor-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pop-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pop-uptime-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pop-uptime-status.online {
    background: var(--pop-success);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.pop-uptime-status.offline {
    background: var(--pop-danger);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.pop-uptime-status.paused {
    background: var(--pop-warning);
}

.pop-uptime-percent {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pop-success);
}

.pop-uptime-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--pop-border-light);
    overflow: hidden;
    width: 80px;
    margin-left: 0.75rem;
}

.pop-uptime-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--pop-green), var(--pop-success));
    transition: width 0.6s ease;
}

/* =============================================
   FOOTER — Compact Premium
   ============================================= */
.pop-footer {
    background: linear-gradient(135deg, var(--pop-primary) 0%, var(--pop-primary-mid) 100%);
    padding: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pop-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pop-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.pop-footer-logo img {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

.pop-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pop-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--pop-transition-fast);
}

.pop-footer-links a:hover {
    color: var(--pop-white);
}

.pop-footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Order form footer — minimal */
.pop-footer-minimal {
    background: transparent;
    padding: 2rem 0;
    text-align: center;
}

.pop-footer-minimal p {
    color: var(--pop-text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* =============================================
   WHATSAPP HELP LINK
   ============================================= */
.pop-help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pop-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--pop-transition);
    text-decoration: none;
}

.pop-help-link:hover {
    color: var(--pop-green);
    text-decoration: none;
}

.pop-help-link i,
.pop-help-link .whatsapp-icon {
    color: #25d366;
    font-size: 1.1rem;
}

/* =============================================
   SECURITY BADGE
   ============================================= */
.pop-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--pop-text-muted);
    text-align: center;
}

.pop-security-badge i {
    color: var(--pop-green);
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.tt-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--pop-primary) 0%, var(--pop-primary-mid) 50%, var(--pop-primary-light) 100%) !important;
    padding: 2rem;
}

.tt-form-wrap {
    width: 100%;
    max-width: 960px;
}

.tt-form-container {
    display: flex !important;
    background: var(--pop-white);
    border-radius: var(--pop-radius-xl) !important;
    overflow: hidden;
    box-shadow: var(--pop-shadow-xl);
    min-height: 560px;
}

.tt-form-content {
    flex: 1;
    padding: 2.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tt-login-registration-testimonial {
    flex: 0 0 45%;
    border-radius: 0 !important;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

@media (max-width: 767px) {
    .tt-form-container {
        flex-direction: column;
    }
    .tt-login-registration-testimonial {
        min-height: 200px;
    }
}

/* =============================================
   SIDEBAR — Client Area
   ============================================= */
.sidebar {
    background: var(--pop-white);
    border: 1px solid var(--pop-border-light);
    border-radius: var(--pop-radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar .list-group-item {
    border: none !important;
    border-radius: var(--pop-radius-sm) !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--pop-text-secondary) !important;
    transition: var(--pop-transition-fast) !important;
}

.sidebar .list-group-item:hover {
    background: var(--pop-accent-light) !important;
    color: var(--pop-accent) !important;
}

.sidebar .list-group-item.active {
    background: var(--pop-accent) !important;
    color: var(--pop-white) !important;
}

/* =============================================
   MODALS
   ============================================= */
.modal-content {
    border: none !important;
    border-radius: var(--pop-radius-lg) !important;
    box-shadow: var(--pop-shadow-xl) !important;
    overflow: hidden;
}

.modal-header {
    background: var(--pop-white) !important;
    border-bottom: 1px solid var(--pop-border-light) !important;
    padding: 1.25rem 1.5rem !important;
}

.modal-title {
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.modal-body {
    padding: 1.5rem !important;
}

.modal-footer {
    border-top: 1px solid var(--pop-border-light) !important;
    padding: 1rem 1.5rem !important;
}

/* =============================================
   TABLE OVERRIDES
   ============================================= */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: var(--pop-bg) !important;
    border: none !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--pop-text-muted) !important;
    padding: 0.75rem 1rem !important;
}

.table tbody td {
    border-top: 1px solid var(--pop-border-light) !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.9rem !important;
    vertical-align: middle !important;
}

.table tbody tr:hover {
    background: var(--pop-accent-light) !important;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination .page-link {
    border: 1px solid var(--pop-border) !important;
    color: var(--pop-text-secondary) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border-radius: var(--pop-radius-sm) !important;
    margin: 0 2px !important;
    padding: 0.5rem 0.85rem !important;
    transition: var(--pop-transition-fast) !important;
}

.pagination .page-link:hover {
    background: var(--pop-accent) !important;
    border-color: var(--pop-accent) !important;
    color: var(--pop-white) !important;
}

.pagination .page-item.active .page-link {
    background: var(--pop-accent) !important;
    border-color: var(--pop-accent) !important;
    color: var(--pop-white) !important;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumb {
    background: transparent !important;
    padding: 0.5rem 0 !important;
    margin-bottom: 1.5rem !important;
}

.breadcrumb-item a {
    color: var(--pop-text-muted) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

.breadcrumb-item.active {
    color: var(--pop-text) !important;
    font-weight: 600 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›' !important;
    color: var(--pop-text-light) !important;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease forwards;
}

.animate-slideDown {
    animation: slideDown 0.3s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }

    .pop-header-inner {
        padding: 0.75rem 1rem;
    }

    .pop-navbar {
        display: none;
    }

    .pop-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .pop-service-grid {
        grid-template-columns: 1fr;
    }

    .pop-footer-top {
        flex-direction: column;
        text-align: center;
    }

    .pop-footer-links {
        justify-content: center;
    }

    .btn-pop-lg {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

/* =============================================
   MAIN CONTENT — Remove sidebar in order forms
   ============================================= */
#main-body {
    padding-top: 0;
}

.primary-content {
    max-width: 100%;
}

/* Welcome bar */
.pop-welcome {
    margin-bottom: 1.5rem;
}

.pop-welcome h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.pop-welcome p {
    color: var(--pop-text-muted);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

/* Quick actions */
.pop-quick-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pop-quick-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--pop-white);
    border: 1px solid var(--pop-border);
    border-radius: var(--pop-radius-pill);
    color: var(--pop-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--pop-transition);
    text-decoration: none;
    cursor: pointer;
}

.pop-quick-action:hover {
    border-color: var(--pop-accent);
    color: var(--pop-accent);
    background: var(--pop-accent-light);
    text-decoration: none;
}

.pop-quick-action i {
    font-size: 0.9rem;
}

/* =============================================
   PAYMENT METHOD ICONS (Checkout)
   ============================================= */
.pop-payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--pop-border);
    border-radius: var(--pop-radius);
    cursor: pointer;
    transition: var(--pop-transition);
    margin-bottom: 0.5rem;
}

.pop-payment-method:hover {
    border-color: var(--pop-accent);
}

.pop-payment-method.selected {
    border-color: var(--pop-accent);
    background: var(--pop-accent-light);
}

.pop-payment-method-icon {
    width: 36px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-payment-method-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pop-text);
    flex: 1;
}

/* Override WHMCS payment gateway list */
.payment-geteways-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-geteways-list label.radio-inline {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--pop-border);
    border-radius: var(--pop-radius);
    margin: 0 !important;
    transition: var(--pop-transition);
    cursor: pointer;
    font-weight: 600 !important;
}

.payment-geteways-list label.radio-inline:hover {
    border-color: var(--pop-accent);
}

.payment-geteways-list input[type="radio"]:checked + span,
.payment-geteways-list input[type="radio"]:checked ~ * {
    color: var(--pop-accent);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-pop-accent { color: var(--pop-accent) !important; }
.text-pop-green { color: var(--pop-green) !important; }
.text-pop-muted { color: var(--pop-text-muted) !important; }
.bg-pop-light { background: var(--pop-bg) !important; }
.bg-pop-white { background: var(--pop-white) !important; }
.border-pop { border-color: var(--pop-border) !important; }
.shadow-pop-sm { box-shadow: var(--pop-shadow-sm) !important; }
.shadow-pop-md { box-shadow: var(--pop-shadow-md) !important; }
.radius-pop { border-radius: var(--pop-radius) !important; }
.radius-pop-lg { border-radius: var(--pop-radius-lg) !important; }
.fw-800 { font-weight: 800 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }
.fs-sm { font-size: 0.85rem !important; }
.fs-xs { font-size: 0.75rem !important; }
.ls-tight { letter-spacing: -0.02em !important; }

/* =============================================
   PRODUCT DETAILS — Premium Card Layout
   ============================================= */
.product-details .product-status {
    text-align: center;
    padding: 2rem 1rem;
}

.product-details .product-status .product-icon {
    margin-bottom: 0.5rem;
}

.product-details .product-status .product-icon h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pop-text);
    margin: 0.75rem 0 0.15rem;
}

.product-details .product-status .product-icon h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pop-text-muted);
    margin: 0;
}

.product-details .product-status .fa-stack {
    font-size: 2rem;
}

.product-details .product-status .fa-stack .fa-circle {
    color: var(--pop-accent) !important;
}

.product-details .product-status .fa-stack .fa-inverse {
    color: var(--pop-white) !important;
}

.product-details .product-status .product-status-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--pop-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

.product-status-active .product-status-text {
    background: rgba(16, 185, 129, 0.1);
    color: var(--pop-success);
}

.product-status-pending .product-status-text {
    background: rgba(245, 158, 11, 0.1);
    color: var(--pop-warning);
}

.product-status-suspended .product-status-text {
    background: rgba(239, 68, 68, 0.1);
    color: var(--pop-danger);
}

.product-status-terminated .product-status-text,
.product-status-cancelled .product-status-text {
    background: rgba(113, 128, 150, 0.1);
    color: var(--pop-text-muted);
}

/* Product details info rows */
.product-details .row > .col-md-6 > h4 {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pop-text-muted) !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}

.product-details .row > .col-md-6 > p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pop-text);
    margin-bottom: 1rem;
}

/* Product actions */
.product-actions-wrapper {
    gap: 0.5rem;
}

.product-actions-wrapper .btn {
    border-radius: var(--pop-radius-sm) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0.6rem 1rem !important;
    margin-bottom: 0.5rem;
}

/* Module client area */
.module-client-area {
    padding: 1rem;
}

.module-client-area .btn {
    margin: 0.25rem;
}

/* =============================================
   TABLE OVERRIDES
   ============================================= */
.table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.table thead th {
    background: var(--pop-bg) !important;
    border-bottom: 2px solid var(--pop-border-light) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--pop-text-muted) !important;
    padding: 0.75rem 1rem !important;
}

.table tbody td {
    padding: 0.85rem 1rem !important;
    border-bottom: 1px solid var(--pop-border-light) !important;
    font-size: 0.88rem !important;
    color: var(--pop-text-secondary) !important;
    vertical-align: middle !important;
}

.table tbody tr:hover td {
    background: var(--pop-accent-light) !important;
}

.table tbody tr {
    cursor: pointer;
    transition: var(--pop-transition-fast);
}

/* DataTables overrides */
.dataTables_wrapper .dataTables_filter input {
    border: 2px solid var(--pop-border) !important;
    border-radius: var(--pop-radius-sm) !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
}

.dataTables_wrapper .dataTables_length select {
    border: 2px solid var(--pop-border) !important;
    border-radius: var(--pop-radius-sm) !important;
    padding: 0.35rem 0.5rem !important;
}

/* Pagination */
.pagination .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid var(--pop-border) !important;
    border-radius: var(--pop-radius-sm) !important;
    color: var(--pop-text-muted) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.4rem 0.75rem !important;
    margin: 0 2px !important;
    transition: var(--pop-transition-fast) !important;
}

.pagination .page-item.active .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--pop-accent) !important;
    border-color: var(--pop-accent) !important;
    color: var(--pop-white) !important;
}

/* =============================================
   LIST GROUP OVERRIDES
   ============================================= */
.list-group-item {
    border: none !important;
    border-bottom: 1px solid var(--pop-border-light) !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.88rem !important;
    color: var(--pop-text-secondary) !important;
    transition: var(--pop-transition-fast) !important;
}

.list-group-item:last-child {
    border-bottom: none !important;
}

.list-group-item:hover {
    background: var(--pop-accent-light) !important;
    color: var(--pop-accent) !important;
}

.list-group-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.4rem;
    color: var(--pop-text-light);
}

.list-group-item .badge {
    background: var(--pop-danger) !important;
    color: var(--pop-white) !important;
    border-radius: var(--pop-radius-pill) !important;
    font-size: 0.65rem !important;
    padding: 0.15rem 0.4rem !important;
}

/* =============================================
   MODALS
   ============================================= */
.modal-content {
    border: none !important;
    border-radius: var(--pop-radius-lg) !important;
    box-shadow: var(--pop-shadow-xl) !important;
    overflow: hidden;
}

.modal-header {
    background: var(--pop-bg) !important;
    border-bottom: 1px solid var(--pop-border-light) !important;
    padding: 1.25rem 1.5rem !important;
}

.modal-title {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
}

.modal-body {
    padding: 1.5rem !important;
}

.modal-footer {
    border-top: 1px solid var(--pop-border-light) !important;
    padding: 1rem 1.5rem !important;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumb {
    background: transparent !important;
    padding: 0.5rem 0 !important;
    margin-bottom: 1rem !important;
}

.breadcrumb-item {
    font-size: 0.82rem !important;
    font-weight: 500 !important;
}

.breadcrumb-item a {
    color: var(--pop-text-muted) !important;
}

.breadcrumb-item.active {
    color: var(--pop-text) !important;
    font-weight: 600 !important;
}

/* =============================================
   SIDEBAR NAV (Client Area)
   ============================================= */
.panel-sidebar .list-group-item {
    padding: 0.7rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-radius: var(--pop-radius-sm) !important;
    margin-bottom: 2px !important;
    border: none !important;
}

.panel-sidebar .list-group-item:hover {
    background: var(--pop-accent-light) !important;
    color: var(--pop-accent) !important;
}

.panel-sidebar .list-group-item.active {
    background: var(--pop-accent) !important;
    color: var(--pop-white) !important;
}

.panel-sidebar .list-group-item.active i {
    color: var(--pop-white) !important;
}

/* =============================================
   DROPDOWN MENUS
   ============================================= */
.dropdown-menu {
    border: 1px solid var(--pop-border-light) !important;
    border-radius: var(--pop-radius) !important;
    box-shadow: var(--pop-shadow-lg) !important;
    padding: 0.5rem !important;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.55rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-radius: var(--pop-radius-sm) !important;
    color: var(--pop-text-secondary) !important;
    transition: var(--pop-transition-fast) !important;
}

.dropdown-item:hover {
    background: var(--pop-accent-light) !important;
    color: var(--pop-accent) !important;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
    opacity: 0.6;
}

/* =============================================
   TICKETS STYLING
   ============================================= */
.ticket-reply {
    border: 1px solid var(--pop-border-light) !important;
    border-radius: var(--pop-radius) !important;
    margin-bottom: 1rem !important;
    overflow: hidden;
}

.ticket-reply-header {
    background: var(--pop-bg) !important;
    padding: 0.85rem 1.25rem !important;
    border-bottom: 1px solid var(--pop-border-light) !important;
    font-size: 0.82rem !important;
}

.ticket-reply-body {
    padding: 1.25rem !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
}

/* =============================================
   INVOICES TABLE
   ============================================= */
.invoice-table thead th {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.status-paid,
.badge.paid {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--pop-success) !important;
}

.status-unpaid,
.badge.unpaid {
    background: rgba(245, 158, 11, 0.1) !important;
    color: var(--pop-warning) !important;
}

.status-overdue,
.badge.overdue {
    background: rgba(239, 68, 68, 0.1) !important;
    color: var(--pop-danger) !important;
}

/* =============================================
   KNOB / DISK USAGE (Product Details)
   ============================================= */
.dial-usage {
    color: var(--pop-accent) !important;
}

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 991px) {
    .pop-header-inner {
        flex-wrap: wrap;
    }
    .pop-navbar {
        flex-wrap: wrap;
        gap: 0;
    }
    .pop-navbar li a {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .pop-header-inner {
        padding: 0.75rem 1rem;
    }
    .pop-header-logo img {
        height: 32px;
    }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    .pop-dashboard-welcome {
        padding: 1.5rem 1.25rem !important;
    }
}

