/* Import font Nunito bo tròn, đẹp */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* --- Collection Styles --- */
.fc-collection-wrap { max-width: 850px; margin: 20px auto; padding: 20px; font-family: 'Nunito', sans-serif; }
.fc-collection-header { display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 20px; min-height: 40px; }
.fc-collection-main-title { font-size: 28px; margin: 0; text-align: center; padding: 0 40px; font-weight: 700; color: #2c3e50; }
.fc-back-to-parent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}
.fc-collection-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 30px; justify-items: center; }
.fc-collection-item { cursor: pointer; text-align: center; transition: transform 0.2s; }
.fc-collection-item:hover { transform: scale(1.05); }
.fc-collection-icon { width: 80px; height: 80px; color: white; display: flex; justify-content: center; align-items: center; font-size: 32px; font-weight: bold; margin: 0 auto 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: 3px solid white; transition: background .3s, opacity .3s; }
.fc-collection-title { font-size: 15px; color: #333; font-weight: 600; }

.fc-collection-grid[data-item-type="set"] .fc-collection-icon {
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.fc-collection-grid[data-item-type="collection"] .fc-collection-icon {
    border-radius: 20px;
    background: linear-gradient(135deg, #059669, #10b981);
}
.fc-collection-grid[data-item-type="collection"] .fc-item-number {
    font-family: serif;
    font-style: italic;
}

.fc-collection-item.completed .fc-collection-icon { background: #94a3b8 !important; opacity: 0.7; }
.fc-collection-item.completed .fc-collection-icon span { text-decoration: line-through; }

.fc-complete-button-wrapper { text-align: center; margin-top: 30px; }
.fc-complete-set { background: #059669; color: #fff; border: none; border-radius: 25px; padding: 12px 25px; font-weight: 700; cursor: pointer; }
.fc-complete-next { background: #2563eb; color: #fff; border: none; border-radius: 25px; padding: 12px 25px; font-weight: 700; cursor: pointer; } 
.fc-collection-footer { text-align: center; margin-top: 30px; }
.fc-complete-collection { background: #d97706; color: #fff; border: none; border-radius: 25px; padding: 12px 25px; font-weight: 700; cursor: pointer; }

.fc-login-prompt { text-align: center; margin-bottom: 20px; background: #fffbe5; padding: 10px; border-radius: 8px; border: 1px solid #ffe8a0; }
.fc-continue-prompt { background-color: #eaf5ff; border: 1px solid #b8d9f3; border-radius: 12px; padding: 15px; margin-bottom: 25px; text-align: center; }
.fc-continue-prompt p { margin: 0 0 10px; font-size: 16px; }
.fc-continue-prompt .fc-btn { margin: 0 5px; }

/* ==========================================================================
   AHOSHADOTAB 3-STEP SYSTEM STYLES
   ========================================================================== */

.ahoshadotab-wrap {
    max-width: 850px;
    margin: 20px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
}

/* Header */
.ast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #e2e8f0;
    flex-wrap: wrap;
    gap: 10px;
}
.ast-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ast-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
}
.ast-brand-badge {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ast-meta {
    font-size: 14px;
    color: #64748b;
}
.ast-card-count strong {
    color: #4f46e5;
    font-size: 16px;
}

/* Stepper Tabs Bar */
.ast-step-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    background: #f8fafc;
    padding: 6px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}
.ast-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}
.ast-tab-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}
.ast-tab-btn.active {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    border: 1px solid #c7d2fe;
}
.ast-tab-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    background: #e0e7ff;
    color: #3730a3;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.ast-tab-btn.active .ast-tab-badge {
    background: #4f46e5;
    color: #ffffff;
}
.ast-tab-text {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}
.ast-tab-btn.active .ast-tab-text {
    color: #1e293b;
}

/* AUDIO PLAYER CONTAINER */
.ast-audio-section {
    margin-bottom: 25px;
}
.ast-audio-card {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(49, 46, 129, 0.25);
}
.ast-audio-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.ast-step1-tag {
    font-size: 15px;
    font-weight: 800;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}
.ast-audio-notice {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}
.ast-audio-notice.has-audio {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}
.ast-audio-notice.no-audio {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.ast-custom-player {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ast-custom-player .fc-audio-progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-family: monospace;
    font-size: 14px;
}
.ast-custom-player .fc-seek-bar {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    outline: none;
}
.ast-custom-player .fc-seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fbbf24;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.ast-custom-player .fc-audio-controls-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.ast-custom-player .fc-audio-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}
.ast-custom-player .fc-audio-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}
.ast-custom-player .fc-audio-btn.main-btn {
    width: 64px;
    height: 64px;
    font-size: 22px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e1b4b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.ast-custom-player .fc-audio-btn.main-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}
.ast-custom-player .fc-audio-btn.active {
    background: #10b981;
    color: #ffffff;
}

/* STEP NAVIGATION BARS */
.ast-step-nav-bar {
    margin-top: 15px;
    text-align: center;
}
.ast-next-step-btn {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
}
.ast-next-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
    background: linear-gradient(135deg, #4338ca, #4f46e5);
}

/* STEP BANNERS */
.ast-step-banner {
    background: #f1f5f9;
    border-left: 4px solid #4f46e5;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.ast-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}
.ast-banner-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}
.ast-banner-desc {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #475569;
}

.ast-global-toggles {
    display: flex;
    gap: 8px;
}
.ast-btn-action {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Nunito', sans-serif;
}
.ast-btn-action:hover {
    background: #4f46e5;
    color: #ffffff;
    border-color: #4f46e5;
}

/* TABLES (STEP 2 & STEP 3) */
.ast-table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}
.ast-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.ast-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 16px;
    text-align: left;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.ast-table th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-left: 1px solid #e2e8f0;
}
.ast-table th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 1px solid #e2e8f0;
}

.ast-script-row, .ast-output-row {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ast-script-row:hover, .ast-output-row:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.ast-table td {
    padding: 14px 16px;
    font-size: 15px;
    color: #334155;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.ast-table td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-left: 1px solid #f1f5f9;
}
.ast-table td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 1px solid #f1f5f9;
}

.ast-col-front {
    font-weight: 700;
    color: #1e293b;
}

.ast-back-line {
    margin-bottom: 4px;
}
.ast-back-line:last-child {
    margin-bottom: 0;
}
.ast-back1 { font-weight: 700; color: #1e293b; }
.ast-back2, .ast-back3 { color: #475569; }
.ast-back4 { color: #0284c7; font-weight: 600; }
.ast-back5-txt { color: #059669; font-weight: 600; }
.ast-empty-text { color: #94a3b8; font-style: italic; }

/* STEP 3 SPECIFIC STYLES */
.ast-col-back5 {
    background: #f0fdf4;
    color: #166534;
    font-weight: 700;
}
.ast-col-back4 {
    position: relative;
    background: #faf5ff;
}
.ast-back4-mask {
    color: #9333ea;
    font-weight: 700;
    font-size: 14px;
    display: block;
    background: #f3e8ff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed #d8b4fe;
}
.ast-back4-val {
    color: #581c87;
    font-weight: 700;
}
.ast-hidden-content {
    display: none !important;
}

.ast-toggle-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: #e0e7ff;
    color: #3730a3;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito', sans-serif;
}
.ast-toggle-btn:hover {
    background: #4f46e5;
    color: #ffffff;
}
.ast-toggle-btn.active {
    background: #fef2f2;
    color: #dc2626;
}
.ast-toggle-btn.active:hover {
    background: #dc2626;
    color: #ffffff;
}

.ast-step3-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.ast-nav-back-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s ease;
}
.ast-nav-back-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* ==========================================================================
   STUNNING AHOSHADOTAB GRID SHOWROOM STYLES (WITH THEME OVERRIDE PROTECTIONS)
   ========================================================================== */

/* Remove WordPress wpautop injected blank tags inside showroom */
.ast-showroom-container p:empty,
.ast-showroom-grid > p,
.ast-showroom-grid > br,
.ast-showroom-filter-bar p,
.ast-filter-pills p,
.ast-filter-pills br,
.ast-grid-card > p,
.ast-grid-card > br {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
}

.ast-showroom-container,
.ast-showroom-container * {
    box-sizing: border-box !important;
}

.ast-showroom-container {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 30px auto !important;
    padding: 0 10px !important;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Hero Banner */
.ast-hero-banner {
    position: relative !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%) !important;
    border-radius: 28px !important;
    padding: 42px 24px !important;
    color: #ffffff !important;
    text-align: center !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25) !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}

.ast-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.3), transparent 70%) !important;
    pointer-events: none !important;
}

.ast-hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 750px !important;
    margin: 0 auto !important;
}

.ast-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(251, 191, 36, 0.3) !important;
    padding: 6px 18px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

.ast-hero-title {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 12px 0 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.25 !important;
    padding: 0 !important;
}

.ast-hero-subtitle {
    font-size: 16px !important;
    color: #cbd5e1 !important;
    margin: 0 0 28px 0 !important;
    line-height: 1.6 !important;
    padding: 0 !important;
}

/* Favorites Button & Pill Styling */
.ast-card-fav-btn {
    position: absolute !important;
    right: 18px !important;
    top: 18px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    z-index: 5 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ast-card-fav-btn:hover {
    background: #ffffff !important;
    color: #ef4444 !important;
    transform: scale(1.15) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

.ast-card-fav-btn.is-fav {
    background: #ffffff !important;
    color: #ef4444 !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

.ast-fav-pill.active {
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35) !important;
}

.ast-fav-pill.active i {
    color: #ffffff !important;
}

/* Filter Pills Bar */
.ast-showroom-filter-bar {
    margin-bottom: 32px !important;
    width: 100% !important;
}

.ast-filter-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ast-filter-pill {
    padding: 10px 22px !important;
    border-radius: 30px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    font-family: 'Nunito', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    margin: 0 !important;
}

.ast-count-chip {
    background: #f1f5f9 !important;
    color: #475569 !important;
    padding: 2px 8px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
}

.ast-filter-pill:hover {
    background: #e0e7ff !important;
    color: #3730a3 !important;
    border-color: #c7d2fe !important;
    transform: translateY(-1px) !important;
}

.ast-filter-pill.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35) !important;
}

.ast-filter-pill.active .ast-count-chip {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

/* Grid Layout */
.ast-showroom-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Card Styling */
.ast-grid-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.ast-grid-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12) !important;
    border-color: #c7d2fe !important;
}

/* Card Headers with Gradients */
.ast-card-header {
    height: 110px !important;
    position: relative !important;
    padding: 18px 22px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.sc-header { background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important; }
.col-header { background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important; }
.set-header { background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%) !important; }

.ast-header-badge {
    background: rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-transform: uppercase !important;
}

.ast-header-icon {
    font-size: 55px !important;
    color: rgba(255, 255, 255, 0.22) !important;
    position: absolute !important;
    right: 18px !important;
    bottom: -8px !important;
    transition: transform 0.35s ease !important;
}

.ast-grid-card:hover .ast-header-icon {
    transform: scale(1.15) rotate(-5deg) !important;
    color: rgba(255, 255, 255, 0.35) !important;
}

/* Card Body */
.ast-card-body {
    padding: 22px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.ast-card-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.35 !important;
    padding: 0 !important;
    word-break: break-word !important;
}

.ast-card-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: auto !important;
}

.ast-stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13.5px !important;
    color: #64748b !important;
    margin: 0 !important;
}

.ast-stat-item i {
    width: 18px !important;
    color: #6366f1 !important;
}

.ast-stat-item strong {
    color: #1e293b !important;
}

.audio-stat i {
    color: #0284c7 !important;
}

/* Card Footer & Action Button */
.ast-card-footer {
    padding: 0 22px 22px 22px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.ast-grid-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    border-radius: 16px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    font-family: 'Nunito', sans-serif !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.sc-grid-btn { background: #e0e7ff !important; color: #3730a3 !important; }
.sc-grid-btn:hover { background: #4f46e5 !important; color: #ffffff !important; }

.col-grid-btn { background: #d1fae5 !important; color: #065f46 !important; }
.col-grid-btn:hover { background: #059669 !important; color: #ffffff !important; }

.set-grid-btn { background: #fef3c7 !important; color: #92400e !important; }
.set-grid-btn:hover { background: #d97706 !important; color: #ffffff !important; }

.btn-arrow {
    transition: transform 0.25s ease !important;
}

.ast-grid-btn:hover .btn-arrow {
    transform: translateX(4px) !important;
}

/* Empty Result State */
.ast-showroom-empty {
    text-align: center !important;
    padding: 60px 20px !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 2px dashed #e2e8f0 !important;
    width: 100% !important;
    margin-top: 20px !important;
}
.ast-empty-icon {
    width: 70px !important;
    height: 70px !important;
    background: #f1f5f9 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 16px !important;
    font-size: 28px !important;
    color: #94a3b8 !important;
}
.ast-showroom-empty h3 {
    margin: 0 0 8px 0 !important;
    font-size: 20px !important;
    color: #1e293b !important;
    font-weight: 800 !important;
}
.ast-showroom-empty p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 14.5px !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .ast-hero-banner { padding: 32px 18px !important; border-radius: 20px !important; }
    .ast-hero-title { font-size: 24px !important; }
    .ast-showroom-grid { grid-template-columns: 1fr !important; }
}