:root {
    --shkit-sidebar-bg: #1e293b;
    --shkit-sidebar-text: #e2e8f0;
    --shkit-sidebar-hover: #334155;
    --shkit-sidebar-active: #2563eb;
    --shkit-bg: #f1f5f9;
    --shkit-card-bg: #ffffff;
    --shkit-text-main: #0f172a;
    --shkit-text-muted: #64748b;
    --shkit-border: #e2e8f0;
    --shkit-primary: #2563eb;
    --shkit-danger: #ef4444;
    --shkit-success: #22c55e;
    --shkit-radius: 12px;
    --shkit-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Reset & Layout */
.shkit-layout {
    display: flex;
    min-height: calc(100vh - 32px); /* Adjust for WP admin bar */
    margin-left: -20px; /* Counteract WP admin padding */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Sidebar */
.shkit-sidebar {
    width: 280px;
    background: var(--shkit-sidebar-bg);
    color: var(--shkit-sidebar-text);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: width 0.3s ease;
    height: calc(100vh - 32px); /* Full height minus WP admin bar */
    position: sticky;
    top: 32px; /* Stick to top below admin bar */
    overflow: hidden; /* Prevent double scrollbars */
}

.shkit-sidebar__header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.shkit-logo {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.shkit-sidebar-toggle {
    background: none;
    border: none;
    color: var(--shkit-sidebar-text);
    cursor: pointer;
    opacity: 0.7;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shkit-sidebar-toggle:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.shkit-sidebar__search {
    padding: 15px 20px 10px;
    flex-shrink: 0;
}

.shkit-sidebar__search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 6px;
    padding: 8px 12px;
}

.shkit-sidebar__search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.shkit-sidebar__filters {
    padding: 0 20px 10px;
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.shkit-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--shkit-sidebar-text);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.shkit-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.shkit-filter-btn.is-active {
    background: var(--shkit-primary);
    border-color: var(--shkit-primary);
    color: #fff;
}

.shkit-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    /* Custom scrollbar for sidebar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.shkit-nav::-webkit-scrollbar {
    width: 6px;
}

.shkit-nav::-webkit-scrollbar-track {
    background: transparent;
}

.shkit-nav::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.shkit-nav__label {
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    margin: 0;
}

.shkit-nav__item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--shkit-sidebar-text);
    text-decoration: none;
    transition: background 0.2s;
    gap: 12px;
    border-left: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
}

.shkit-nav__item:hover {
    background: var(--shkit-sidebar-hover);
    color: #fff;
}

.shkit-nav__item.is-active {
    background: rgba(37, 99, 235, 0.1);
    color: #60a5fa;
    border-left-color: #60a5fa;
}

.shkit-nav__item.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.shkit-nav__icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.shkit-nav__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    overflow: hidden;
}

.shkit-nav__title {
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
}

.shkit-nav__badge {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    align-self: flex-start;
    display: inline-block;
    vertical-align: middle;
}

/* AI Badge */
.shkit-nav__badge--ai {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Coming Soon Badge */
.shkit-nav__badge--coming-soon {
    background: #f59e0b;
    color: #fff;
}

/* Ads Section */
.shkit-ads {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevent shrinking */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.shkit-ad-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
    overflow: hidden;
}

.shkit-ad-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

.shkit-ad-card .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #fbbf24;
    flex-shrink: 0;
}

.shkit-ad-card__content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.shkit-ad-card__content strong {
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.shkit-ad-card__content span {
    font-size: 11px;
    opacity: 0.7;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Ad Placeholder inside tools */
.shkit-ad-placeholder {
    background: #fff;
    border: 1px solid var(--shkit-border);
    border-radius: var(--shkit-radius);
    padding: 40px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.shkit-ad-placeholder h3 {
    margin: 0;
    font-size: 20px;
    color: var(--shkit-text-main);
}

.shkit-ad-placeholder p {
    margin: 0;
    color: var(--shkit-text-muted);
    max-width: 400px;
    line-height: 1.5;
}

.shkit-ad-placeholder .button-primary {
    background: var(--shkit-primary);
    border-color: var(--shkit-primary);
    padding: 8px 24px;
    font-size: 14px;
    height: auto;
    line-height: normal;
}

.shkit-ad-placeholder .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--shkit-primary);
    margin-bottom: 10px;
}

/* Main Content */
.shkit-main {
    flex: 1;
    background: var(--shkit-bg);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    min-width: 0; /* Prevent flex item from overflowing */
}

.shkit-topbar {
    background: var(--shkit-card-bg);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--shkit-border);
}

.shkit-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--shkit-text-muted);
    font-size: 14px;
}

.shkit-breadcrumbs__item.is-current {
    color: var(--shkit-text-main);
    font-weight: 600;
}

.shkit-topbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Notifications */
.shkit-notifications {
    position: relative;
}

.shkit-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--shkit-text-muted);
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.shkit-icon-btn:hover {
    background: var(--shkit-bg);
    color: var(--shkit-text-main);
}

.shkit-badge-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--shkit-danger);
    border-radius: 50%;
    border: 2px solid var(--shkit-card-bg);
}

.shkit-notifications__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--shkit-card-bg);
    border: 1px solid var(--shkit-border);
    border-radius: 8px;
    box-shadow: var(--shkit-shadow);
    margin-top: 8px;
    z-index: 100;
    display: none; /* Hidden by default */
}

.shkit-notifications__dropdown.is-open {
    display: block;
}

.shkit-notifications__header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--shkit-border);
    font-weight: 600;
}

.shkit-notifications__list {
    max-height: 300px;
    overflow-y: auto;
}

.shkit-notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--shkit-border);
}

.shkit-notification-item:last-child {
    border-bottom: none;
}

.shkit-notification-item p {
    margin: 0 0 4px;
    font-size: 13px;
}

.shkit-time {
    font-size: 11px;
    color: var(--shkit-text-muted);
}

/* Content Area */
.shkit-content {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
}

.shkit-tool-header {
    margin-bottom: 24px;
}

.shkit-tool-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--shkit-text-main);
    margin: 0 0 8px;
}

.shkit-tool-desc {
    font-size: 15px;
    color: var(--shkit-text-muted);
    margin: 0;
    max-width: 600px;
}

.shkit-tool-body {
    background: var(--shkit-card-bg);
    border-radius: var(--shkit-radius);
    box-shadow: var(--shkit-shadow);
    padding: 24px;
    border: 1px solid var(--shkit-border);
}

/* Collapsed Sidebar State */
.shkit-layout.is-collapsed .shkit-sidebar {
    width: 64px;
}

.shkit-layout.is-collapsed .shkit-logo span:last-child,
.shkit-layout.is-collapsed .shkit-sidebar__search,
.shkit-layout.is-collapsed .shkit-sidebar__filters,
.shkit-layout.is-collapsed .shkit-nav__text,
.shkit-layout.is-collapsed .shkit-nav__label,
.shkit-layout.is-collapsed .shkit-ads {
    display: none;
}

.shkit-layout.is-collapsed .shkit-nav__item {
    justify-content: center;
    padding: 12px;
}

.shkit-layout.is-collapsed .shkit-sidebar__header {
    justify-content: center;
    padding: 20px 0;
}

.shkit-layout.is-collapsed .shkit-logo {
    display: none;
}

.shkit-layout.is-collapsed .shkit-sidebar-toggle {
    display: flex;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .shkit-layout {
        flex-direction: column;
        margin-left: 0;
    }
    .shkit-sidebar {
        width: 100%;
        height: auto;
    }
    .shkit-main {
        min-height: auto;
    }
}

/* Dashboard Styles */
.shkit-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.shkit-dashboard__welcome {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.shkit-dashboard__welcome h2 {
    margin-top: 0;
    font-size: 24px;
    color: #1e1e1e;
}

.shkit-dashboard__welcome p {
    margin-bottom: 0;
    color: #646970;
    font-size: 16px;
}

.shkit-dashboard__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.shkit-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.shkit-stat-card .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--shkit-primary);
}

.shkit-stat-card__info {
    display: flex;
    flex-direction: column;
}

.shkit-stat-card__info strong {
    font-size: 24px;
    line-height: 1.2;
    color: #1e1e1e;
}

.shkit-stat-card__info span {
    color: #646970;
    font-size: 13px;
}

.shkit-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shkit-tool-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shkit-tool-card:hover {
    border-color: var(--shkit-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.shkit-tool-card__icon {
    width: 40px;
    height: 40px;
    background: #f0f6fc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shkit-primary);
}

.shkit-tool-card__icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.shkit-tool-card__content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.shkit-tool-card__content p {
    margin: 0;
    color: #646970;
    font-size: 13px;
    line-height: 1.5;
}

/* Notices Container */
.shkit-notices-container {
    margin-bottom: 20px;
}

.shkit-notices-container .notice,
.shkit-notices-container .updated,
.shkit-notices-container .error {
    margin: 0 0 10px 0 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}

/* Recommended Section */
.shkit-dashboard__recommended {
    margin-top: 40px;
}

.shkit-tool-card--ad {
    border-color: #e5e5e5;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.shkit-tool-card--ad:hover {
    border-color: var(--shkit-primary);
    background: #fff;
}

.shkit-tool-card--ad .shkit-tool-card__icon {
    background: #eef2ff;
    color: #4f46e5;
}

/* Generic Card Styles */
.shkit-card {
    background: var(--shkit-card-bg);
    border-radius: var(--shkit-radius);
    box-shadow: var(--shkit-shadow);
    margin-bottom: 24px;
    overflow: hidden;
}

.shkit-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--shkit-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shkit-card__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--shkit-text-main);
}

.shkit-card__header p {
    margin: 4px 0 0;
    color: var(--shkit-text-muted);
    font-size: 14px;
}

.shkit-card__body {
    padding: 24px;
}

.shkit-card__footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid var(--shkit-border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Form Grid */
.shkit-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.shkit-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shkit-field label {
    font-weight: 500;
    font-size: 14px;
    color: var(--shkit-text-main);
}

.shkit-field input[type="text"],
.shkit-field input[type="search"],
.shkit-field input[type="number"],
.shkit-field select,
.shkit-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--shkit-border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--shkit-text-main);
    transition: border-color 0.2s;
}

.shkit-field input:focus,
.shkit-field select:focus,
.shkit-field textarea:focus {
    border-color: var(--shkit-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* Status Chips */
.shkit-status-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: #e2e8f0;
    color: #475569;
}

.shkit-status-chip.is-success {
    background: #dcfce7;
    color: #166534;
}

.shkit-status-chip.is-warning {
    background: #fef9c3;
    color: #854d0e;
}

.shkit-status-chip.is-muted {
    background: #f1f5f9;
    color: #64748b;
}

/* Table Styles Override */
.shkit-table-wrapper {
    overflow-x: auto;
}

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

.shkit-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--shkit-text-muted);
    border-bottom: 1px solid var(--shkit-border);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shkit-table td {
    padding: 16px;
    border-bottom: 1px solid var(--shkit-border);
    vertical-align: top;
    color: var(--shkit-text-main);
}

.shkit-table tr:last-child td {
    border-bottom: none;
}

.shkit-table .thumb img {
    border-radius: 4px;
    border: 1px solid var(--shkit-border);
}

.shkit-table-file-name {
    display: block;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--shkit-text-muted);
    font-size: 13px;
}

/* Pagination */
.shkit-pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0 100px; /* Extra bottom margin for floating footer */
}

.shkit-pagination ul.page-numbers {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.shkit-pagination .page-numbers li {
    margin: 0;
}

.shkit-pagination .page-numbers a,
.shkit-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--shkit-border);
    color: var(--shkit-text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 1;
}

.shkit-pagination .page-numbers a:hover {
    border-color: var(--shkit-primary);
    color: var(--shkit-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.shkit-pagination .page-numbers span.current {
    background: var(--shkit-primary);
    border-color: var(--shkit-primary);
    color: #fff;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.shkit-pagination .page-numbers span.dots {
    border: none;
    background: transparent;
    color: var(--shkit-text-muted);
    min-width: auto;
}

/* Floating Footer - Compact Island Style */
.shkit-floating-footer {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: auto;
    max-width: calc(100vw - 320px); /* Prevent overlap with sidebar */
    background: #1d2327; /* WP Admin Bar Dark */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shkit-floating-footer__content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.shkit-floating-footer__left {
    display: flex;
    align-items: center;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.shkit-floating-footer__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile & Tablet */
@media (max-width: 960px) {
    .shkit-floating-footer {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        flex-direction: column;
        padding: 16px;
        border-radius: 12px;
    }
    
    .shkit-floating-footer__content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .shkit-floating-footer__left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--shkit-border);
        padding-right: 0;
        padding-bottom: 12px;
        justify-content: center;
    }
    
    .shkit-floating-footer__right {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .shkit-floating-footer__right .button {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }
    
    .shkit-floating-footer__right .shkit-field--inline {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 8px !important;
    }
}

@keyframes shkit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.shkit-spin {
    animation: shkit-spin 2s linear infinite;
}

/* Ad Banners (Sidebar) */
.shkit-ad-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.shkit-ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.shkit-ad-banner .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.9);
}

.shkit-ad-banner__content {
    display: flex;
    flex-direction: column;
}

.shkit-ad-banner__content strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

.shkit-ad-banner__content span {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

/* PromoPilot Banner Style */
.shkit-ad-banner--promo {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Wizard Banner Style */
.shkit-ad-banner--wizard {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

/* Dashboard Ad Cards Override */
.shkit-tool-card.shkit-tool-card--ad {
    border: none;
}

.shkit-tool-card.shkit-tool-card--ad.shkit-ad-banner--promo {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
}

.shkit-tool-card.shkit-tool-card--ad.shkit-ad-banner--promo .shkit-tool-card__icon {
    background: #f97316;
    color: #fff;
}

.shkit-tool-card.shkit-tool-card--ad.shkit-ad-banner--promo h3 {
    color: #9a3412;
}

.shkit-tool-card.shkit-tool-card--ad.shkit-ad-banner--wizard {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid #ddd6fe;
}

.shkit-tool-card.shkit-tool-card--ad.shkit-ad-banner--wizard .shkit-tool-card__icon {
    background: #8b5cf6;
    color: #fff;
}

.shkit-tool-card.shkit-tool-card--ad.shkit-ad-banner--wizard h3 {
    color: #5b21b6;
}

/* Animation for Banners */
@keyframes shkit-pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.shkit-ad-banner--promo {
    animation: shkit-pulse 2s infinite;
}

/* Modal Styles */
.shkit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.shkit-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.shkit-modal {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.shkit-modal-overlay.is-open .shkit-modal {
    transform: scale(1);
}

.shkit-modal__header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--shkit-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shkit-modal__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.shkit-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--shkit-text-muted);
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.shkit-modal__close:hover {
    background: #f1f5f9;
    color: var(--shkit-text-main);
}

.shkit-modal__body {
    padding: 24px;
    overflow-y: auto;
}

.shkit-modal__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--shkit-border);
    background: #f8fafc;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Stylish Buttons */
.shkit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}

.shkit-btn--primary {
    background: var(--shkit-primary);
    color: #fff;
    border-color: var(--shkit-primary);
}

.shkit-btn--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.shkit-btn--secondary {
    background: #fff;
    color: var(--shkit-text-main);
    border-color: var(--shkit-border);
}

.shkit-btn--secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.shkit-btn--danger {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.shkit-btn--danger:hover {
    background: #fecaca;
    border-color: #fca5a5;
}

.shkit-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Icon Button */
.shkit-btn--icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.shkit-btn--icon .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Dashboard Filters */
.shkit-dashboard-filters {
    display: flex;
    gap: 8px;
}
.shkit-dashboard-filters .shkit-filter-btn {
    background: #fff;
    border: 1px solid var(--shkit-border);
    color: var(--shkit-text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.shkit-dashboard-filters .shkit-filter-btn:hover {
    background: #f8fafc;
    color: var(--shkit-text-main);
}
.shkit-dashboard-filters .shkit-filter-btn.is-active {
    background: var(--shkit-primary);
    border-color: var(--shkit-primary);
    color: #fff;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

/* Tool Card States */
.shkit-tool-card.is-ai {
    border-top: 3px solid #8b5cf6;
}
.shkit-tool-card.needs-setup {
    border-color: #fca5a5;
    background: #fff1f2;
}
.shkit-tool-card.needs-setup:hover {
    border-color: #f87171;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}
