/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #e0e7ff;
    
    --success-color: #10b981;
    --success-hover: #059669;
    --success-light: #d1fae5;
    
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --card-shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --hero-bg: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
    --font-sans: 'Outfit', sans-serif;
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

body.dark-theme {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-card: #1f2937;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #374151;
    --primary-light: #1e1b4b;
    --success-light: #064e3b;
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --card-shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
    --hero-bg: linear-gradient(135deg, #090514 0%, #111827 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-all);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-all);
}

body.dark-theme .navbar {
    background-color: rgba(17, 24, 39, 0.8);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn, .admin-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-all);
}

.theme-toggle-btn:hover, .admin-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.admin-btn {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px;
}

/* Hero Section */
.hero {
    background: var(--hero-bg);
    color: #ffffff;
    padding: 80px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.search-box-container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.search-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-all);
}

.search-wrapper:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 16px;
    font-family: var(--font-sans);
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-btn {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border: none;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-all);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.4);
}

/* Live Search Suggestions Info */
.search-tips {
    margin-top: 16px;
    font-size: 13px;
    color: #94a3b8;
}

.search-tips code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: #f1f5f9;
}

/* Filter Grid & Layout */
.main-layout {
    margin-top: -40px;
    position: relative;
    z-index: 20;
    margin-bottom: 80px;
}

.filter-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 32px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Operator Badge Container */
.badge-scroll-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.badge-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.badge-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 3px;
}

.op-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition-all);
}

.op-filter-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.op-filter-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.op-filter-btn .op-svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* Tag/Category Badges */
.tag-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-filter-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition-all);
}

.tag-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tag-filter-btn.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Extra Filters Wrapper */
.extra-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.select-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: var(--transition-all);
    cursor: pointer;
}

.select-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Numbers Catalog Section */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count {
    font-size: 15px;
    color: var(--text-secondary);
}

.results-count span {
    font-weight: 700;
    color: var(--text-primary);
}

/* Grid layout */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Card Styling */
.nocan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-all);
}

.nocan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-color);
}

.nocan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--op-gradient, linear-gradient(90deg, #94a3b8, #64748b));
}

/* Card Header */
.card-header-op {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.op-badge-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.op-badge-info .op-svg {
    width: 24px;
    height: 24px;
}

.status-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.status-badge.tersedia {
    background-color: var(--success-light);
    color: var(--success-color);
}

.status-badge.terjual {
    background-color: #fee2e2;
    color: #ef4444;
}

body.dark-theme .status-badge.terjual {
    background-color: #7f1d1d;
    color: #fca5a5;
}

/* Card Number Styling */
.card-number-wrapper {
    margin: 12px 0;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.phone-number-display {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    transition: var(--transition-all);
    user-select: all;
    display: inline-block;
}

.phone-number-display .highlight {
    color: var(--primary-color);
    background-color: var(--primary-light);
    padding: 0 4px;
    border-radius: 4px;
}

.copy-hint {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0;
    transition: var(--transition-all);
}

.card-number-wrapper:hover .copy-hint {
    opacity: 1;
}

/* Card Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    justify-content: center;
}

.card-tag {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

/* Card Price */
.card-price-row {
    margin-top: auto;
    border-top: 1px dashed var(--border-color);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.price-lbl {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.price-val {
    font-size: 18px;
    font-weight: 800;
    color: #e11d48;
}

body.dark-theme .price-val {
    color: #fb7185;
}

/* Action Buttons */
.card-actions {
    display: flex;
    gap: 8px;
}

.btn-buy-wa {
    flex-grow: 1;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-all);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn-buy-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-buy-wa.disabled {
    background: #94a3b8 !important;
    box-shadow: none !important;
    cursor: not-allowed;
    transform: none !important;
}

.marketplace-link {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-all);
}

.marketplace-link:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.marketplace-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px 24px;
    text-align: center;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.empty-state-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state-text {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Guides & Custom Request */
.info-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 36px;
    text-align: center;
    letter-spacing: -0.01em;
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.accordion-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-icon {
    color: var(--primary-color);
    font-weight: 800;
}

.accordion-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Request Form */
.request-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: var(--transition-all);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* Footer Section */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-all);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-all);
}

.social-link-icon:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

/* Toast Message */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar-container {
        height: 64px;
    }
    
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .main-layout {
        margin-top: -30px;
        margin-bottom: 40px;
    }
    
    .filter-section {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .accordion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .request-card, .accordion-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .numbers-grid {
        gap: 16px;
    }
    
    /* Compact Card Layout for Mobile */
    .nocan-card {
        padding: 12px 14px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 6px;
    }
    
    .nocan-card::before {
        height: 3px;
    }
    
    .card-header-op {
        grid-row: 1;
        grid-column: 1 / -1;
        margin-bottom: 0;
    }
    
    .card-number-wrapper {
        grid-row: 2;
        grid-column: 1;
        margin: 0;
        text-align: left;
        align-self: center;
    }
    
    .phone-number-display {
        font-size: 20px;
    }
    
    .copy-hint {
        display: none;
    }
    
    .card-tags {
        grid-row: 3;
        grid-column: 1;
        margin-bottom: 0;
        justify-content: flex-start;
        gap: 4px;
        padding: 2px 0;
    }
    
    .card-tag {
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 4px;
    }
    
    .card-price-row {
        grid-row: 2 / span 2;
        grid-column: 2;
        border-top: none;
        padding-top: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        margin-top: 0;
    }
    
    .price-lbl {
        font-size: 9px;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        margin-bottom: 2px;
    }
    
    .price-val {
        font-size: 16px;
        font-weight: 700;
    }
    
    .card-actions {
        grid-row: 4;
        grid-column: 1 / -1;
        margin-top: 4px;
        gap: 8px;
    }
    
    .btn-buy-wa {
        padding: 10px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .marketplace-link {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    
    .marketplace-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Support horizontal scrolling on tabs */
    .nav-tabs {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        border-radius: var(--radius-md);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-link {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 13px;
        gap: 6px;
    }
    
    /* Responsive action icon buttons */
    .card-action-icon-btn {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    
    .card-action-icon-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .search-wrapper {
        border-radius: var(--radius-md);
        flex-direction: column;
        gap: 8px;
        padding: 6px;
    }
    
    .search-input {
        padding: 8px;
        font-size: 15px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
        border-radius: 8px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .navbar-container {
        height: 56px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .admin-btn {
        padding: 8px;
    }
    
    .admin-btn span {
        display: none;
    }
    
    .admin-btn svg {
        margin-right: 0 !important;
    }
    
    .main-layout {
        margin-top: -20px;
    }
    
    .filter-section {
        padding: 12px;
    }
    
    .extra-filters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 16px;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Further typography refinement for ultra-narrow mobile viewports */
    .phone-number-display {
        font-size: 18px;
    }
    
    .price-val {
        font-size: 14px;
    }
}

/* Floating CS WhatsApp Button */
.floating-cs-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cs-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3), 0 12px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Pulse animation */
.floating-cs-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: cs-pulse 2s infinite;
    pointer-events: none;
}

@keyframes cs-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-cs-btn:hover {
    transform: scale(1.08);
}

.floating-cs-btn:hover .floating-cs-icon {
    background-color: #20ba5a;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4), 0 16px 28px rgba(0, 0, 0, 0.2);
}

/* Tooltip style */
.floating-cs-tooltip {
    position: absolute;
    right: 75px;
    background-color: #0f172a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateX(15px);
    transition: all 0.3s ease;
}

/* Show tooltip on hover */
.floating-cs-btn:hover .floating-cs-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile specific styling */
@media (max-width: 768px) {
    .floating-cs-btn {
        bottom: 20px;
        right: 20px;
    }
    .floating-cs-icon {
        width: 50px;
        height: 50px;
    }
    .floating-cs-icon svg {
        width: 24px;
        height: 24px;
    }
    .floating-cs-tooltip {
        display: none !important;
    }
}

/* ==========================================
   TABS & VIRTUAL KEYPAD & APPRAISAL CSS
========================================== */

/* Tabs Navigation */
.tab-nav-container {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.nav-tabs {
    display: flex;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.tab-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-all);
}

.tab-link:hover {
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.tab-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFadeIn 0.4s ease;
}

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

/* Keypad Toggle Button */
.keypad-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-all);
    border-radius: 50%;
}

.keypad-toggle-btn:hover {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.keypad-toggle-btn.active {
    color: #ffffff;
    background-color: var(--primary-color);
}

/* Virtual Keypad Container */
.virtual-keypad {
    margin: 15px auto 5px auto;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .virtual-keypad {
    background: rgba(15, 23, 42, 0.3);
}

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

.keypad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.keypad-key {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-all);
    color: var(--text-primary);
}

.keypad-key:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.keypad-key:active {
    transform: scale(0.95);
}

.keypad-key strong {
    font-size: 16px;
    font-weight: 800;
}

.keypad-key span {
    font-size: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.keypad-action-key {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.keypad-action-key:hover {
    background-color: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
}

.keypad-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 10px;
    border-top: 1px dashed var(--border-color);
    padding-top: 8px;
}

.keypad-mode-indicator {
    color: var(--text-secondary);
}

.keypad-clear-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    font-weight: 700;
    cursor: pointer;
}

/* Appraisal Card Panel */
.appraisal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.appraisal-intro {
    text-align: center;
    margin-bottom: 30px;
}

.appraisal-intro h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.appraisal-intro p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.appraisal-form-wrapper {
    max-width: 550px;
    margin: 0 auto 30px auto;
}

.appraisal-input-group {
    display: flex;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 4px;
    transition: var(--transition-all);
}

.appraisal-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

#appraisalInput {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    font-family: monospace;
}

.appraisal-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-all);
}

.appraisal-btn:hover {
    filter: brightness(1.1);
}

.appraisal-error-msg {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

/* Appraisal Scanner Loader */
.appraisal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.scanner-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    margin-bottom: 20px;
}

.scanner-laser {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    box-shadow: 0 0 10px var(--primary-color);
    animation: scanningLaser 1.5s linear infinite;
}

@keyframes scanningLaser {
    0% {
        top: 0;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

.loader-stages {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

#loaderStageText {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.loader-progress-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    width: 100%;
    overflow: hidden;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #10b981 100%);
    transition: width 0.3s ease;
}

/* Scorecard Results Panel */
.appraisal-result-card {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    animation: tabFadeIn 0.5s ease;
}

.result-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.result-score-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.score-circle-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-ring {
    transform: rotate(-90deg);
}

.score-ring-fill {
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-text-val {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#scoreVal {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
}

.score-text-val small {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: -4px;
}

.rarity-badge {
    margin-top: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rarity-badge.common {
    background: #94a3b8;
}
.rarity-badge.rare {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.rarity-badge.epic {
    background: linear-gradient(135deg, #a855f7 0%, #6d28d9 100%);
}
.rarity-badge.legendary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: goldShimmer 2s linear infinite;
}

@keyframes goldShimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

.result-details-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.estimated-price {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    margin: 4px 0 16px 0;
}

.analysis-details h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.analysis-list {
    list-style: none;
    padding-left: 0;
}

.analysis-list li {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.analysis-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 800;
}

.appraisal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
}

.appraisal-action-btn {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-all);
}

.wa-trade-btn {
    background: linear-gradient(135deg, #25D366 0%, #15b54a 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.wa-trade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.35);
}

.appraisal-secondary-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-all);
}

.appraisal-secondary-btn:hover {
    background: var(--border-color);
}

/* Responsive Appraisal Overrides */
@media (max-width: 768px) {
    .appraisal-card {
        padding: 20px;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-score-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .estimated-price {
        font-size: 26px;
    }
    
    .appraisal-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .appraisal-action-btn, .appraisal-secondary-btn {
        justify-content: center;
    }
    
    .appraisal-input-group {
        flex-direction: column;
        border: none;
        background: transparent;
        gap: 8px;
    }
    
    #appraisalInput {
        background: var(--bg-primary);
        border: 2px solid var(--border-color);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: center;
    }
    
    #appraisalInput:focus {
        border-color: var(--primary-color);
    }
    
    .appraisal-btn {
        width: 100%;
        padding: 12px;
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   PREMIUM SALES BOOSTING FEATURES STYLES
   ========================================================================== */

/* 1. Couple Sets Carousel/Grid Section */
.couple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.couple-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-all);
    display: flex;
    flex-direction: column;
}

.couple-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-color);
}

.couple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--op-gradient, linear-gradient(90deg, #94a3b8, #64748b));
}

.couple-ribbon {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 30px;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 5;
}

.couple-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.couple-num-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.couple-op-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
}

.couple-op-info .op-svg {
    width: 20px;
    height: 20px;
}

.couple-phone-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: monospace;
}

.couple-heart-divider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    border-bottom: 1px dashed var(--border-color);
}

.heart-icon {
    font-size: 16px;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.couple-pricing {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-bottom: 16px;
}

.couple-price-lbl {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.couple-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 4px;
}

.price-crossed {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.price-deal {
    font-size: 24px;
    font-weight: 800;
    color: #e11d48;
}

body.dark-theme .price-deal {
    color: #fb7185;
}

.couple-btn {
    margin-top: auto;
}

/* 2. Cari Nomor Hoki Section */
.hoki-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.hoki-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.hoki-intro h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hoki-intro p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.hoki-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
}

.hoki-result-container {
    animation: tabFadeIn 0.6s ease;
}

.hoki-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hoki-badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-all);
}

.hoki-badge-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.hoki-badge-val {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.hoki-badge-val.font-large {
    font-size: 32px;
}

.hoki-badge-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.hoki-badge-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

/* 3. Live Mockup Overlay Modal & Bidding Modal */
.nocan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-all);
}

.modal-content.glassmorphism {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.dark-theme .modal-content.glassmorphism {
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-all);
    line-height: 1;
}

.modal-close-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.mockup-tab-nav {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 24px;
}

.mockup-tab-link {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-all);
    font-family: var(--font-sans);
}

.mockup-tab-link.active {
    background: var(--bg-card);
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

body.dark-theme .mockup-tab-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Smartphone Dial Screen */
.phone-screen-container {
    width: 100%;
    max-width: 280px;
    height: 440px;
    background: #0f172a;
    border-radius: 36px;
    border: 10px solid #334155;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    background: #334155;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 20;
}

.phone-call-info {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    z-index: 10;
}

.phone-operator-name {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-call-number {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 6px 0;
    font-family: monospace;
}

.phone-call-status {
    font-size: 13px;
    color: #38bdf8;
    font-weight: 500;
    animation: pulseCall 1.5s ease-in-out infinite;
}

@keyframes pulseCall {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.phone-action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-items: center;
    margin-bottom: 24px;
    padding: 0 20px;
    z-index: 10;
}

.phone-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 10px;
    cursor: pointer;
}

.phone-action-btn:hover {
    color: #fff;
}

.btn-circle-mock {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-all);
}

.phone-action-btn:hover .btn-circle-mock {
    background: rgba(255, 255, 255, 0.2);
}

.phone-call-end-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    z-index: 10;
}

.btn-phone-decline {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-phone-decline:hover {
    transform: scale(1.05);
    background: #dc2626;
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

/* Vector SIM Card Design */
.sim-card-container {
    width: 100%;
    max-width: 300px;
    height: 180px;
    background: var(--op-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    position: relative;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    animation: tabFadeIn 0.4s ease;
}

.sim-card-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    transform: rotate(30deg);
    animation: simShimmer 4s infinite linear;
}

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

.sim-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.sim-logo-badge {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sim-logo-badge .op-svg {
    width: 18px;
    height: 18px;
}

.sim-brand-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.sim-chip-gold {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 6px;
    border: 1px solid #d4af37;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 2px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.4);
    z-index: 5;
}

.chip-line {
    border: 0.5px solid rgba(0,0,0,0.15);
}

.sim-number-printed {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-align: right;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: monospace;
    letter-spacing: -0.02em;
    z-index: 5;
}

.sim-serial-code {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    z-index: 5;
}

/* 4. FOMO Notification Toast */
.fomo-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
    animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: var(--transition-all);
}

body.dark-theme .fomo-toast {
    background: rgba(17, 24, 39, 0.85);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.fomo-toast.slide-out {
    animation: toastSlideOut 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes toastSlideIn {
    from { transform: translateX(-100%) translateY(20px); opacity: 0; }
    to { transform: translateX(0) translateY(0); opacity: 1; }
}

@keyframes toastSlideOut {
    from { transform: translateX(0) translateY(0); opacity: 1; }
    to { transform: translateX(-120%) translateY(0); opacity: 0; }
}

.fomo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.fomo-toast-content {
    flex-grow: 1;
}

.fomo-text {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.fomo-text strong {
    font-weight: 700;
}

.fomo-time {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

.fomo-close {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.fomo-close:hover {
    color: var(--text-primary);
}

/* Card Action Icon Buttons in dynamic Catalog */
.card-action-icon-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-all);
}

.card-action-icon-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.card-action-icon-btn svg {
    display: block;
}

/* Responsive tweaks for new elements */
@media (max-width: 576px) {
    .hoki-card {
        padding: 20px;
    }
    
    .hoki-intro h2 {
        font-size: 22px;
    }
    
    .couple-phone-num {
        font-size: 16px;
    }
    
    .sim-card-container {
        max-width: 100%;
        height: 160px;
        padding: 15px;
    }
    
    .sim-number-printed {
        font-size: 18px;
    }
    
    .fomo-toast {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }
    
    /* Support narrow mobile viewport modal padding overrides */
    .nocan-modal {
        padding: 10px;
    }
    
    .modal-content.glassmorphism {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }
}

/* ==========================================
   ADVANCED / COMPLEX FILTERS STYLING
   ========================================== */
.btn-toggle-advanced {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-toggle-advanced:hover {
    color: var(--primary-hover);
    background-color: var(--primary-light);
}

.btn-toggle-advanced .chevron-icon {
    transition: transform 0.3s ease;
}

.btn-toggle-advanced.active .chevron-icon {
    transform: rotate(180deg);
}

.advanced-filters-panel {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.advanced-filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 8px;
}

.text-input-sm {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-sans);
    transition: var(--transition-all);
}

.text-input-sm:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

body.dark-theme .text-input-sm {
    background-color: rgba(15, 23, 42, 0.3);
}

@media (max-width: 1024px) {
    .advanced-filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advanced-filters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}




