/* Admin Layout */

.aura-admin-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 40px 40px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.aura-admin-wrapper h1 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.aura-admin-wrapper h1 .header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.aura-admin-wrapper h1 .header-icon i {
    font-size: 20px;
    color: white;
}


.aura-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    align-items: stretch;
}

.aura-column-main,
.aura-column-side {
    display: flex;
    flex-direction: column;
}

#woocommerce-settings .aura-column-main {
    grid-column: 1 / -1;
    /* Ensures it spans all available columns */
}

.aura-column-main .aura-card:last-child,
.aura-column-side .aura-card:last-child {
    margin-bottom: 0;
    flex: 1;
}

/* Cards */
.aura-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aura-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

.aura-card h2 {
    margin-top: 0;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 12px;
}

.aura-card h2 .dashicons {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="time"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background: #f8fafc;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #25D366;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
    outline: none;
}

/* Color Presets */
.color-presets {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 0;
}

.color-preset-item {
    flex: 1;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px #e2e8f0;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.color-preset-item:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px #25D366;
    z-index: 2;
}

.color-preset-item.active {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #25D366, 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.form-group textarea {
    height: 120px;
    line-height: 1.5;
}


.form-grid.positioning-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 900px) {
    .aura-grid-container {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid.positioning-grid {
        grid-template-columns: 1fr;
    }
}

.aura-sticky-footer {
    padding: 20px 0 0 0;
    margin-top: 10px;
}

/* Save Notice */
.aura-notice {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4), 0 6px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    z-index: 100000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.aura-notice.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.aura-notice i,
.aura-notice .aura-icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.aura-notice-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Settings Tabs */
.aura-settings-tabs {
    display: flex;
    gap: 8px;
    margin: 20px 0 25px 0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.aura-tab-button {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}

.aura-tab-button:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.aura-tab-button.active {
    background: white;
    border-color: #e2e8f0;
    border-bottom: 1px solid white;
    color: #25D366;
    box-shadow: 0 -2px 0 white inset;
}

.aura-tab-content {
    display: none;
}

.aura-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Preview Styles */
@media (max-width: 768px) {
    .aura-settings-tabs {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 #f8fafc;
    }

    .aura-tab-button {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.upload-group {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
}

.upload-group .upload-avatar-btn {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    color: #334155;
}

.upload-group .upload-avatar-btn:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.upload-group .avatar-preview-wrapper {
    position: relative;
    display: inline-block;
}

.upload-group .avatar-preview {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    outline: 3px solid rgba(37, 211, 102, 0.12);
    display: block;
}

.upload-group .remove-avatar-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    z-index: 10;
}

.upload-group .remove-avatar-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.upload-group .remove-avatar-btn i {
    line-height: 1;
}

.upload-group .avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    outline: 3px solid rgba(37, 211, 102, 0.12);
}

.upload-group .avatar-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.upload-group .avatar-placeholder-icon i {
    font-size: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}


.style-preview-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-label-text {
    display: none;
    font-size: 11px;
    font-weight: 700;
    color: white;
    margin-left: 8px;
    white-space: nowrap;
}

/* .style-preview-canvas.style-4 .preview-label-text,
.style-preview-canvas.style-5 .preview-label-text {
    display: inline-block;
} */

.style-preview-canvas.style-4 .style-preview-button::after,
.style-preview-canvas.style-5 .style-preview-button::after {
    display: none !important;
}

/* ========================================
   ADVANCED STATISTICS DASHBOARD
   ======================================== */

/* Pro Header */
.stats-pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-title i {
    color: #6366f1;
    font-size: 22px;
}

.stats-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.stats-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Period Selector Pills */
.stats-period-selector {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.period-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-btn:hover {
    color: #334155;
}

.period-btn.active {
    background: white;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stats-reset-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stats-reset-btn:hover {
    border-color: #fca5a5;
    color: #dc2626;
    background: #fef2f2;
}

/* Pro Stats Cards */
.stats-cards-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card-pro {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.stat-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.stat-card-pro:hover .stat-card-glow {
    opacity: 0.25;
}

.stat-card-chats .stat-card-glow {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.stat-card-conversions .stat-card-glow {
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.stat-card-rate .stat-card-glow {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

.stat-card-content {
    position: relative;
    z-index: 1;
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.stat-icon-pro {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-card-chats .stat-icon-pro {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 8px 16px -4px rgba(245, 158, 11, 0.4);
}

.stat-card-conversions .stat-icon-pro {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.4);
}

.stat-card-rate .stat-icon-pro {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 8px 16px -4px rgba(139, 92, 246, 0.4);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.stat-trend-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stat-card-body {
    margin-bottom: 16px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-number small {
    font-size: 20px;
    font-weight: 700;
    color: #64748b;
}

.stat-name {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-weight: 700;
}

.stat-card-footer {
    height: 32px;
}

.stat-sparkline {
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.stat-sparkline .spark-bar {
    flex: 1;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.stat-card-chats .stat-sparkline {
    color: #f59e0b;
}

.stat-card-conversions .stat-sparkline {
    color: #10b981;
}

.stat-progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

/* Pro Charts - Full Width */
.chart-card-full {
    width: 100%;
    margin-bottom: 30px;
}

.chart-card-pro {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    box-shadow:
        0 4px 20px -4px rgba(139, 92, 246, 0.08),
        0 0 0 1px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-card-pro:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px -8px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.chart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(6, 182, 212, 0.02) 100%);
}

.chart-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.chart-title i,
.chart-title .aura-icon {
    color: #8b5cf6;
    font-size: 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.chart-legend-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.legend-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    opacity: 0.3;
}

.legend-dot.legend-chats {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.legend-dot.legend-chats::after {
    background: rgba(139, 92, 246, 0.3);
}

.legend-dot.legend-conversions {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.legend-dot.legend-conversions::after {
    background: rgba(6, 182, 212, 0.3);
}

.chart-card-body {
    padding: 24px 28px 28px;
    position: relative;
    height: 360px;
    background: linear-gradient(180deg,
            rgba(248, 250, 252, 0.5) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(248, 250, 252, 0.3) 100%);
}

.chart-card-main {
    box-shadow:
        0 8px 32px -8px rgba(139, 92, 246, 0.12),
        0 0 0 1px rgba(139, 92, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.chart-card-main:hover {
    box-shadow:
        0 16px 48px -12px rgba(139, 92, 246, 0.18),
        0 0 0 1px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}



/* Empty State Pro */
.chart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.chart-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.chart-empty-state .empty-icon i {
    font-size: 32px;
    color: #94a3b8;
}

.chart-empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 8px 0;
}

.chart-empty-state p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Responsive Pro */
@media (max-width: 1200px) {
    .stats-cards-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 768px) {
    .stats-cards-pro {
        grid-template-columns: 1fr;
    }

    .stats-pro-header {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-period-selector {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .chart-card-body {
        height: 260px;
    }
}

/* Modal Styles */
.aura-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001;
}

.aura-modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.aura-modal-content h3 {
    margin: 0 0 16px 0;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.aura-modal-content p {
    color: #64748b;
    margin-bottom: 24px;
}

.aura-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

#confirm-reset-btn {
    background: #dc2626;
    border-color: #dc2626;
}

#confirm-reset-btn:hover {
    background: #b91c1c;
}

@media (max-width: 768px) {
    .aura-stats-cards {
        grid-template-columns: 1fr;
    }

    .aura-stats-header {
        flex-direction: column;
        align-items: stretch;
    }
}


/* Visibility Option Cards - Mobile Settings */
.visibility-option-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.visibility-option-card:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.visibility-option-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #25D366;
    flex-shrink: 0;
}

.visibility-option-title {
    font-weight: 700;
    color: #334155;
    display: block;
}

.visibility-option-desc {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}





/* Page Visibility Checkboxes */
.visibility-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.visibility-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.visibility-checkbox:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.visibility-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #25D366;
}

.visibility-checkbox span {
    font-size: 13px;
    color: #334155;
}

#visibility-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}


/* Visibility Select List */
.visibility-select-list {
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    padding: 8px;
    margin-top: 8px;
}

.visibility-select-list::-webkit-scrollbar {
    width: 6px;
}

.visibility-select-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.visibility-select-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.visibility-select-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.visibility-select-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.visibility-select-item:hover {
    background: #e2e8f0;
}

.visibility-select-item input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #25D366;
    flex-shrink: 0;
}

.visibility-select-item span {
    font-size: 13px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.visibility-select-item small {
    color: #94a3b8;
    font-size: 11px;
}


/* Visibility Section */
.visibility-section {
    margin-bottom: 20px;
}

.visibility-section:last-of-type {
    margin-bottom: 0;
}

.visibility-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
}

.visibility-section-header i {
    color: #25D366;
    font-size: 16px;
}

.visibility-section .visibility-select-list {
    border-radius: 0 0 8px 8px;
    margin-top: 0;
}

.no-items {
    padding: 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}


/* Hide Options Grid */
.hide-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.hide-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hide-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hide-section-title i {
    color: #94a3b8;
    font-size: 14px;
}

.hide-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hide-option-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 44px;
}

.hide-option-item:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.hide-option-item.active {
    background: #f0fdf4;
    border-color: #86efac;
}

.hide-option-item input[type="checkbox"] {
    display: none;
}

.hide-option-item i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 6px;
    color: #64748b;
    font-size: 12px;
    transition: all 0.2s;
}

.hide-option-item.active i {
    background: #22c55e;
    color: white;
}

.hide-option-item span {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.hide-option-item.active span {
    color: #16a34a;
}

.hide-option-item small {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.2;
}

.hide-option-item.active small {
    color: #4ade80;
}

/* Inactive state - red color */
.hide-option-item.inactive {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, rgba(220, 38, 38, 0.06) 100%);
    border-color: #fca5a5;
}

.hide-option-item.inactive span {
    color: #dc2626;
}

.hide-option-item.inactive small {
    color: #f87171;
}

.hide-option-item.inactive .aura-icon {
    color: #ef4444;
}

.hide-option-item.inactive:hover {
    border-color: #f87171;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

@media (max-width: 600px) {
    .hide-options-grid {
        grid-template-columns: 1fr;
    }
}


/* Days Grid - Available Days */
.aura-admin-wrapper .aura-card .form-group .days-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 10px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip input[type="checkbox"] {
    display: none;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip .day-name {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    white-space: nowrap;
    flex: 0 0 auto;
    display: inline-flex;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip .day-check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 4px;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex: 0 0 16px;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip .day-check i {
    font-size: 9px;
    color: transparent;
    transition: all 0.2s ease;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip:hover {
    border-color: #25D366;
    background: #f0fdf4;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.active {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    border-color: #25D366;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.active .day-name {
    color: #128C7E;
    font-weight: 700;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.active .day-check {
    background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.active .day-check i {
    color: white;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.weekend .day-name {
    color: #94a3b8;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.weekend.active .day-name {
    color: #128C7E;
}

/* Inactive state - red color */
.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.inactive {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border-color: #fca5a5;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.inactive .day-name {
    color: #dc2626;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.inactive .day-check {
    background: linear-gradient(145deg, #fecaca 0%, #fca5a5 100%);
    border-color: #f87171;
}

.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip.inactive:hover {
    border-color: #f87171;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(220, 38, 38, 0.12) 100%);
}

/* Sunday - full width (last item spans 2 columns) */
.aura-admin-wrapper .aura-card .form-group .days-grid label.day-chip:last-child {
    grid-column: span 2;
}

/* ========================================
   SVG ICON STYLES
   ======================================== */

.aura-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
}

.aura-admin-wrapper h1 .header-icon .aura-icon {
    width: 20px;
    height: 20px;
}

.aura-admin-wrapper .aura-card h2 .aura-icon {
    width: 18px;
    height: 18px;
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px;
    border-radius: 8px;
    box-sizing: content-box;
}

.aura-notice .aura-icon {
    width: 18px;
    height: 18px;
}

.hide-option-item .aura-icon {
    width: 12px;
    height: 12px;
}

.upload-group .avatar-placeholder-icon .aura-icon {
    width: 28px;
    height: 28px;
}

.upload-group .remove-avatar-btn .aura-icon {
    width: 12px;
    height: 12px;
}

.day-chip .day-check .aura-icon {
    width: 10px;
    height: 10px;
}

.stats-title .aura-icon {
    width: 22px;
    height: 22px;
    color: #6366f1;
}

.stats-reset-btn .aura-icon {
    width: 16px;
    height: 16px;
}

.stat-icon-pro .aura-icon {
    width: 20px;
    height: 20px;
}

.stat-trend .aura-icon {
    width: 10px;
    height: 10px;
}

.chart-title .aura-icon {
    width: 18px;
    height: 18px;
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    padding: 8px;
    border-radius: 8px;
    box-sizing: content-box;
}

.chart-empty-state .empty-icon .aura-icon {
    width: 32px;
    height: 32px;
    color: #94a3b8;
}

.aura-modal-content h3 .aura-icon {
    width: 20px;
    height: 20px;
}



/* Spinner animation */
@keyframes aura-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.aura-spin {
    animation: aura-spin 1s linear infinite;
}

/* ========================================
   WooCommerce Premium Toggle System
   ======================================== */

.woo-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.woo-toggle-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.woo-toggle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(139, 92, 246, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.woo-toggle-item:hover {
    border-color: #c4b5fd;
    box-shadow: 0 8px 30px -8px rgba(124, 58, 237, 0.15),
        0 4px 12px -4px rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

.woo-toggle-item:hover::before {
    opacity: 1;
}

.woo-toggle-item.active::before {
    opacity: 1;
}

.woo-toggle-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.woo-toggle-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.woo-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 14px;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.woo-toggle-item.active .woo-toggle-icon {
    color: white;
    transform: scale(1.05);
}

/* Shop - Purple */
.woo-toggle-item[data-color="purple"].active .woo-toggle-icon {
    background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.4),
        0 4px 8px -2px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.woo-toggle-item[data-color="purple"].active {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
    border-color: #a78bfa;
    box-shadow: 0 10px 40px -10px rgba(124, 58, 237, 0.25),
        0 4px 16px -4px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-item[data-color="purple"].active .woo-toggle-title {
    color: #6d28d9;
}

.woo-toggle-item[data-color="purple"].active .woo-toggle-desc {
    color: #7c3aed;
}

.woo-toggle-item[data-color="purple"].active .woo-toggle-switch {
    background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(124, 58, 237, 0.3);
}

.woo-toggle-item[data-color="purple"]:hover {
    border-color: #c4b5fd;
}

/* Product - Blue */
.woo-toggle-item[data-color="blue"].active .woo-toggle-icon {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.4),
        0 4px 8px -2px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.woo-toggle-item[data-color="blue"].active {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    border-color: #60a5fa;
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.25),
        0 4px 16px -4px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-item[data-color="blue"].active .woo-toggle-title {
    color: #1d4ed8;
}

.woo-toggle-item[data-color="blue"].active .woo-toggle-desc {
    color: #2563eb;
}

.woo-toggle-item[data-color="blue"].active .woo-toggle-switch {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(37, 99, 235, 0.3);
}

.woo-toggle-item[data-color="blue"]:hover {
    border-color: #93c5fd;
}

/* Cart - Emerald */
.woo-toggle-item[data-color="emerald"].active .woo-toggle-icon {
    background: linear-gradient(145deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 0 8px 20px -4px rgba(5, 150, 105, 0.4),
        0 4px 8px -2px rgba(5, 150, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.woo-toggle-item[data-color="emerald"].active {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    border-color: #34d399;
    box-shadow: 0 10px 40px -10px rgba(5, 150, 105, 0.25),
        0 4px 16px -4px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-item[data-color="emerald"].active .woo-toggle-title {
    color: #047857;
}

.woo-toggle-item[data-color="emerald"].active .woo-toggle-desc {
    color: #059669;
}

.woo-toggle-item[data-color="emerald"].active .woo-toggle-switch {
    background: linear-gradient(145deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(5, 150, 105, 0.3);
}

.woo-toggle-item[data-color="emerald"]:hover {
    border-color: #6ee7b7;
}

/* Checkout - Orange */
.woo-toggle-item[data-color="orange"].active .woo-toggle-icon {
    background: linear-gradient(145deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    box-shadow: 0 8px 20px -4px rgba(234, 88, 12, 0.4),
        0 4px 8px -2px rgba(234, 88, 12, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.woo-toggle-item[data-color="orange"].active {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
    border-color: #fb923c;
    box-shadow: 0 10px 40px -10px rgba(234, 88, 12, 0.25),
        0 4px 16px -4px rgba(249, 115, 22, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-item[data-color="orange"].active .woo-toggle-title {
    color: #c2410c;
}

.woo-toggle-item[data-color="orange"].active .woo-toggle-desc {
    color: #ea580c;
}

.woo-toggle-item[data-color="orange"].active .woo-toggle-switch {
    background: linear-gradient(145deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(234, 88, 12, 0.3);
}

.woo-toggle-item[data-color="orange"]:hover {
    border-color: #fdba74;
}

/* Account - Pink */
.woo-toggle-item[data-color="pink"].active .woo-toggle-icon {
    background: linear-gradient(145deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    box-shadow: 0 8px 20px -4px rgba(219, 39, 119, 0.4),
        0 4px 8px -2px rgba(219, 39, 119, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.woo-toggle-item[data-color="pink"].active {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    border-color: #f472b6;
    box-shadow: 0 10px 40px -10px rgba(219, 39, 119, 0.25),
        0 4px 16px -4px rgba(236, 72, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-item[data-color="pink"].active .woo-toggle-title {
    color: #be185d;
}

.woo-toggle-item[data-color="pink"].active .woo-toggle-desc {
    color: #db2777;
}

.woo-toggle-item[data-color="pink"].active .woo-toggle-switch {
    background: linear-gradient(145deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(219, 39, 119, 0.3);
}

.woo-toggle-item[data-color="pink"]:hover {
    border-color: #f9a8d4;
}

/* Categories - Teal */
.woo-toggle-item[data-color="teal"].active .woo-toggle-icon {
    background: linear-gradient(145deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.4),
        0 4px 8px -2px rgba(13, 148, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.woo-toggle-item[data-color="teal"].active {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #99f6e4 100%);
    border-color: #2dd4bf;
    box-shadow: 0 10px 40px -10px rgba(13, 148, 136, 0.25),
        0 4px 16px -4px rgba(20, 184, 166, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woo-toggle-item[data-color="teal"].active .woo-toggle-title {
    color: #0f766e;
}

.woo-toggle-item[data-color="teal"].active .woo-toggle-desc {
    color: #0d9488;
}

.woo-toggle-item[data-color="teal"].active .woo-toggle-switch {
    background: linear-gradient(145deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(13, 148, 136, 0.3);
}

.woo-toggle-item[data-color="teal"]:hover {
    border-color: #5eead4;
}

.woo-toggle-item.active .woo-toggle-icon svg {
    transform: scale(1.1);
}

.woo-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.woo-toggle-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.woo-toggle-item.active .woo-toggle-title {
    color: #6d28d9;
}

.woo-toggle-desc {
    font-size: 13px;
    color: #64748b;
    transition: color 0.3s ease;
}

.woo-toggle-item.active .woo-toggle-desc {
    color: #7c3aed;
}

/* Premium Toggle Switch */
.woo-toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.5);
    z-index: 1;
    flex-shrink: 0;
}

.woo-toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.woo-toggle-item.active .woo-toggle-switch::before {
    left: 31px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.05);
    }
}

/* Hover animations */
.woo-toggle-item:hover .woo-toggle-switch::before {
    transform: scale(1.05);
}

.woo-toggle-item.active:hover .woo-toggle-switch::before {
    transform: scale(1.08);
}

/* Premium Header for WooCommerce */
.woo-premium-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}



/* Responsive */
@media (max-width: 1200px) {
    .woo-premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .woo-toggle-item {
        padding: 16px 18px;
    }

    .woo-toggle-icon {
        width: 44px;
        height: 44px;
    }

    .woo-toggle-icon svg {
        width: 20px;
        height: 20px;
    }

    .woo-toggle-switch {
        width: 52px;
        height: 28px;
    }

    .woo-toggle-switch::before {
        width: 22px;
        height: 22px;
        border-radius: 11px;
    }

    .woo-toggle-item.active .woo-toggle-switch::before {
        left: 27px;
    }

    .woo-toggle-status {
        display: none;
    }
}

.woo-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    /* Light neutral gradient */
    border: 1px solid #e2e8f0;
    /* Neutral border */
    border-radius: 12px;
    padding: 15px 20px;
    margin: 0 auto 24px auto;
    /* Center it, keep bottom margin */
    text-align: center;
    max-width: 80%;
    /* Limit width to center effectively */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.woo-info-box p.description {
    margin: 0;
    /* Remove default paragraph margin */
    color: #475569;
    /* Slightly darker neutral text */
    font-size: 15px;
    line-height: 1.5;
}

/* ========================================
   VISUAL STYLE SELECTOR
   ======================================== */

.style-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 15px;
}

.style-option {
    position: relative;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.style-option:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
}

.style-option.active {
    border-color: #25D366;
    background: #f0fdf4;
    box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.25);
}

.style-preview-canvas {
    width: 100%;
    height: 65px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

.style-option.active .style-preview-canvas {
    background: #ffffff;
}

.style-name {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    transition: color 0.3s ease;
}

.style-option.active .style-name {
    color: #166534;
}

.style-check-mark {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 5;
    border: 2px solid #fff;
}

.style-option.active .style-check-mark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.style-check-mark .aura-icon {
    width: 12px;
    height: 12px;
}

/* Style Previews Recreations */
.style-preview-button {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-sizing: border-box;
}

.style-preview-button .aura-icon {
    width: 22px;
    height: 22px;
    z-index: 2;
}

/* Style 1 */
.style-preview-canvas.style-1 .style-preview-button {
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Style 2 */
.style-preview-canvas.style-2 .style-preview-button {
    border-radius: 10px;
    background: #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}


/* Style 3 */
.style-preview-canvas.style-3 .style-preview-button {
    width: auto !important;
    min-width: 80px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(to bottom, #4ade80 0%, #25D366 45%, #166534 100%);
    border: 3px solid #f0fdf4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 0 15px 0 8px;
    justify-content: flex-start;
}

.style-preview-canvas.style-3 .style-preview-button::after {
    content: '';
    position: absolute;
    right: 12px;
    width: 35px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

/* Style 4 */
.style-preview-canvas.style-4 .style-preview-button {
    width: auto !important;
    min-width: 80px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, #4ade80, #25D366, #166534);
    border: 3px solid #1fa34e;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    padding: 0 15px 0 8px;
    justify-content: flex-start;
}

.style-preview-canvas.style-4 .style-preview-button::after {
    content: '';
    position: absolute;
    right: 12px;
    width: 35px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

/* Style 5 */
.style-preview-canvas.style-5 .style-preview-button {
    border-radius: 8px;
    background: linear-gradient(135deg, #25D366 0%, #166534 100%);
    box-shadow:
        0 8px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.style-preview-canvas.style-5 .style-preview-button::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    border-radius: 50%;
}

/* Style 6 */
.style-preview-canvas.style-6 .style-preview-button {
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

.style-preview-canvas.style-6 .style-preview-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

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

@media (max-width: 640px) {
    .style-selector-grid {
        grid-template-columns: 1fr;
    }
}