/* wco-style.css */
.wco-wrapper {
    font-family: var(--wco-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
    margin: 20px 0;
}

.wco-filter-bar {
    margin-bottom: 20px;
    text-align: right;
}

.wco-filter-select {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Grid Layout Controls */
.wco-grid {
    display: grid;
    gap: 24px;
}
.wco-wrapper[data-columns="1"] .wco-grid { grid-template-columns: 1fr; }
.wco-wrapper[data-columns="2"] .wco-grid { grid-template-columns: repeat(2, 1fr); }
.wco-wrapper[data-columns="3"] .wco-grid { grid-template-columns: repeat(3, 1fr); }
.wco-wrapper[data-columns="4"] .wco-grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .wco-wrapper[data-columns="3"] .wco-grid,
    .wco-wrapper[data-columns="4"] .wco-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .wco-wrapper .wco-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Common Card Base */
.wco-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
.wco-course-title {
    margin: 0;
    font-size: var(--wco-title-size, 1.25rem);
    font-weight: var(--wco-title-weight, 600);
    color: var(--wco-title-color, inherit);
    line-height: 1.4;
}
.wco-card-body {
    padding: 20px;
    flex-grow: 1;
}
.wco-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: var(--wco-text-size, 0.95rem);
    color: var(--wco-text-color, inherit);
}
.wco-info-row:last-child { margin-bottom: 0; }
.wco-icon { margin-right: 10px; font-size: 1.1rem; line-height: 1.2; }
.wco-card-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.wco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none !important;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}
.wco-btn-text { display: none; }
.wco-btn:hover { transform: scale(1.05); color: #fff; }
.wco-btn-wa { background-color: #25D366; }
.wco-btn-wa:hover { background-color: #1ebe57; }
.wco-btn-details { background-color: #3b82f6; }
.wco-btn-details:hover { background-color: #2563eb; }
.wco-btn-register { background-color: #ef4444; }
.wco-btn-register:hover { background-color: #dc2626; }

/* Pagination */
.wco-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.wco-page-btn {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}
.wco-page-btn:hover:not(:disabled) { background: #f1f5f9; }
.wco-page-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.wco-page-info { font-size: 0.95rem; color: #64748b; }

/* Error / No Results */
.wco-error { color: #dc2626; background: #fee2e2; padding: 15px; border-radius: 6px; border-left: 4px solid #ef4444; }
.wco-no-results { color: #475569; padding: 20px; text-align: center; background: #f8fafc; border-radius: 8px; border: 1px dashed #cbd5e1; }

/* =========================================
   THEME 1: Default Modern
========================================= */
.theme-modern .wco-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}
.theme-modern .wco-card:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.theme-modern .wco-card-header { background: #1e3a8a; color: var(--wco-title-color, #ffffff); padding: 20px; }
.theme-modern .wco-info-row { color: var(--wco-text-color, #475569); }
.theme-modern .wco-text strong { color: var(--wco-text-color, #1e293b); }
.theme-modern .wco-card-footer { background: #f8fafc; border-top: 1px solid #e2e8f0; }

/* =========================================
   THEME 2: Minimalist Outline
========================================= */
.theme-outline .wco-card {
    background: transparent;
    border-radius: 4px;
    border: 2px solid #333;
}
.theme-outline .wco-card:hover { border-color: #3b82f6; }
.theme-outline .wco-card-header { border-bottom: 2px solid #333; color: #333; padding: 20px; }
.theme-outline .wco-course-title { color: inherit; }
.theme-outline .wco-info-row { color: #555; }
.theme-outline .wco-card:hover .wco-card-header { border-bottom-color: #3b82f6; color: #3b82f6; }
.theme-outline .wco-card-footer { border-top: 2px solid #333; }
.theme-outline .wco-card:hover .wco-card-footer { border-top-color: #3b82f6; }

/* =========================================
   THEME 3: Glassmorphism
========================================= */
.theme-glass { background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); padding: 20px; border-radius: 16px; }
.theme-glass .wco-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}
.theme-glass .wco-card:hover { background: rgba(255, 255, 255, 0.6); }
.theme-glass .wco-card-header { border-bottom: 1px solid rgba(255,255,255,0.4); color: #1e293b; padding: 20px; }
.theme-glass .wco-info-row { color: #334155; }
.theme-glass .wco-card-footer { border-top: 1px solid rgba(255,255,255,0.4); }

/* =========================================
   THEME 4: Futuristic Neon
========================================= */
.theme-neon { background: #0f172a; padding: 20px; border-radius: 12px; }
.theme-neon .wco-card {
    background: #1e293b;
    border-radius: 8px;
    border: 1px solid #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}
.theme-neon .wco-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.6), inset 0 0 10px rgba(6, 182, 212, 0.2);
}
.theme-neon .wco-card-header { border-bottom: 1px solid rgba(59,130,246,0.3); color: var(--wco-title-color, #e2e8f0); padding: 20px; }
.theme-neon .wco-course-title { color: var(--wco-title-color, #38bdf8); text-transform: uppercase; letter-spacing: 1px; }
.theme-neon .wco-info-row { color: var(--wco-text-color, #cbd5e1); }
.theme-neon .wco-text strong { color: var(--wco-text-color, #f8fafc); }
.theme-neon .wco-card-footer { border-top: 1px solid rgba(59,130,246,0.3); }

/* =========================================
   THEME 5: Material Design Soft
========================================= */
.theme-material .wco-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
.theme-material .wco-card:hover {
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
}
.theme-material .wco-card-header { padding: 24px 16px; background: #6200ea; color: #fff; }
.theme-material .wco-card-body { padding: 16px; }
.theme-material .wco-info-row { color: #666; }
.theme-material .wco-text strong { color: #000; }
.theme-material .wco-card-footer { padding: 8px 16px; border-top: 1px solid #eee; }
.theme-material .wco-btn { border-radius: 50%; width: 40px; height: 40px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

/* =========================================
   THEME 6: Corporate Solid
========================================= */
.theme-corporate .wco-card {
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #d1d5db;
    border-top: 4px solid #0f766e;
}
.theme-corporate .wco-card:hover { border-color: #0f766e; }
.theme-corporate .wco-card-header { padding: 20px; color: #111827; }
.theme-corporate .wco-info-row { color: #4b5563; }
.theme-corporate .wco-text strong { color: #111827; }
.theme-corporate .wco-card-footer { background: #f3f4f6; }
.theme-corporate .wco-btn { border-radius: 2px; }

/* =========================================
   THEME 7: Gradient Vibrant
========================================= */
.theme-gradient .wco-card {
    background: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.theme-gradient .wco-card-header {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: var(--wco-title-color, #fff);
    padding: 25px 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.theme-gradient .wco-info-row { color: var(--wco-text-color, #4b5563); }
.theme-gradient .wco-card-footer { background: transparent; padding: 20px; }
.theme-gradient .wco-btn { border-radius: 20px; padding: 0 15px; width: auto; font-weight: 600; }
.theme-gradient .wco-btn svg { margin-right: 5px; }

/* =========================================
   THEME 8: Dark Mode Sleek
========================================= */
.theme-dark { background: #121212; padding: 20px; border-radius: 8px; }
.theme-dark .wco-card { background: #1e1e1e; border-radius: 8px; border: 1px solid #333; }
.theme-dark .wco-card-header { background: #2c2c2c; color: #fff; padding: 20px; border-bottom: 1px solid #333; }
.theme-dark .wco-info-row { color: #b3b3b3; }
.theme-dark .wco-text strong { color: #fff; }
.theme-dark .wco-card-footer { border-top: 1px solid #333; }
.theme-dark .wco-page-btn { background: #2c2c2c; color: #fff; border-color: #444; }
.theme-dark .wco-page-info { color: #aaa; }

/* =========================================
   THEME 9: Neumorphic Flat
========================================= */
.theme-neumorphic { background: #e0e5ec; padding: 30px; border-radius: 20px; }
.theme-neumorphic .wco-card {
    background: #e0e5ec;
    border-radius: 20px;
    box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.5);
    border: none;
}
.theme-neumorphic .wco-card-header { color: #4d5d6f; padding: 25px 20px 10px; }
.theme-neumorphic .wco-info-row { color: #6a7b8e; }
.theme-neumorphic .wco-card-footer { padding: 20px; }
.theme-neumorphic .wco-btn {
    background: #e0e5ec;
    color: #4d5d6f;
    box-shadow: 5px 5px 10px rgb(163,177,198,0.6), -5px -5px 10px rgba(255,255,255, 0.5);
}
.theme-neumorphic .wco-btn:hover {
    box-shadow: inset 5px 5px 10px rgb(163,177,198,0.6), inset -5px -5px 10px rgba(255,255,255, 0.5);
}
.theme-neumorphic .wco-btn-wa { color: #25D366; }
.theme-neumorphic .wco-btn-details { color: #3b82f6; }
.theme-neumorphic .wco-btn-register { color: #ef4444; }

/* =========================================
   THEME 10: Cyberpunk Edge
========================================= */
.theme-cyberpunk { background: #fdf600; padding: 30px; border: 5px solid #000; }
.theme-cyberpunk .wco-card {
    background: #000;
    color: #fff;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    border: 1px solid #0ff;
}
.theme-cyberpunk .wco-card-header {
    background: #ff003c;
    color: #fff;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.theme-cyberpunk .wco-info-row { color: #0ff; font-family: monospace; }
.theme-cyberpunk .wco-text strong { color: #fdf600; }
.theme-cyberpunk .wco-card-footer { background: #111; padding: 15px 20px; border-top: 1px dashed #333; }
.theme-cyberpunk .wco-btn { border-radius: 0; transform: skewX(-10deg); }
.theme-cyberpunk .wco-btn:hover { transform: skewX(-10deg) scale(1.1); }

/* =========================================
   THEME 11: Full Width Buttons
========================================= */
.theme-full-btns .wco-card { border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; }
.theme-full-btns .wco-card-header { background: #334155; color: #fff; padding: 20px; }
.theme-full-btns .wco-card-footer {
    display: flex;
    flex-direction: column; /* Stack vertically */
    padding: 15px 20px;
    gap: 8px;
}
.theme-full-btns .wco-btn {
    width: 100%;
    height: 45px;
    justify-content: center;
}
.theme-full-btns .wco-btn-text { display: inline-block; margin-left: 8px; }
.theme-full-btns .wco-btn svg { width: 18px; height: 18px; }

/* =========================================
   THEME 12: Centered Pill Buttons
========================================= */
.theme-pill-btns .wco-card { border-radius: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); background: #fff; }
.theme-pill-btns .wco-card-header { background: #ec4899; color: #fff; padding: 25px 20px; text-align: center; }
.theme-pill-btns .wco-info-row { justify-content: center; }
.theme-pill-btns .wco-card-footer {
    justify-content: center;
    background: transparent;
    border-top: none;
    padding-bottom: 25px;
}
.theme-pill-btns .wco-btn {
    width: auto;
    padding: 0 20px;
    height: 40px;
    border-radius: 50px;
}
.theme-pill-btns .wco-btn-text { display: inline-block; margin-left: 6px; }

/* =========================================
   THEME 13: Floating Action Buttons
========================================= */
.theme-floating-btns .wco-card { position: relative; border-radius: 12px; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding-bottom: 20px; }
.theme-floating-btns .wco-card-header { background: #0284c7; color: #fff; padding: 20px; border-radius: 12px 12px 0 0; }
.theme-floating-btns .wco-card-footer {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: transparent;
    border: none;
    padding: 0;
}
.theme-floating-btns .wco-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================================
   THEME 14: Split Footer Grid
========================================= */
.theme-split-footer .wco-card { border-radius: 0; border: 1px solid #cbd5e1; background: #fff; }
.theme-split-footer .wco-card-header { background: #475569; color: #fff; padding: 20px; }
.theme-split-footer .wco-card-footer {
    display: flex;
    padding: 0;
    gap: 0;
    border-top: 1px solid #cbd5e1;
}
.theme-split-footer .wco-btn {
    flex: 1;
    border-radius: 0;
    height: 50px;
}
.theme-split-footer .wco-btn-wa { border-right: 1px solid rgba(255,255,255,0.2); }
.theme-split-footer .wco-btn-details { border-right: 1px solid rgba(255,255,255,0.2); }
.theme-split-footer .wco-btn:hover { transform: none; filter: brightness(1.1); }

/* =========================================
   THEME 15: Minimal Left Text Buttons
========================================= */
.theme-left-btns .wco-card { border-left: 4px solid #8b5cf6; background: #f8fafc; border-radius: 0 8px 8px 0; }
.theme-left-btns .wco-card-header { background: transparent; color: #1e293b; padding: 20px 20px 0; }
.theme-left-btns .wco-card-footer {
    justify-content: flex-start;
    background: transparent;
    border-top: 1px solid #e2e8f0;
}
.theme-left-btns .wco-btn {
    background: transparent !important;
    width: auto;
    color: #64748b;
}
.theme-left-btns .wco-btn-text { display: inline-block; margin-left: 6px; }
.theme-left-btns .wco-btn-wa { color: #25D366; }
.theme-left-btns .wco-btn-details { color: #3b82f6; }
.theme-left-btns .wco-btn-register { color: #ef4444; }
.theme-left-btns .wco-btn:hover { transform: translateY(-2px); filter: brightness(0.8); }

/* =========================================
   THEME 16: Stripe Fintech Glow
========================================= */
.theme-stripe-glow .wco-card { border-radius: 16px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.theme-stripe-glow .wco-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02), 0 10px 20px rgba(99, 102, 241, 0.1); }
.theme-stripe-glow .wco-card-header { padding: 24px 24px 16px; background: transparent; }
.theme-stripe-glow .wco-course-title { font-weight: 700; background: linear-gradient(135deg, #111827, #4f46e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.theme-stripe-glow .wco-card-body { padding: 0 24px 24px; }
.theme-stripe-glow .wco-info-row { padding: 12px 0; border-bottom: 1px solid #f3f4f6; margin: 0; align-items: center; justify-content: space-between; }
.theme-stripe-glow .wco-info-row:last-child { border-bottom: none; }
.theme-stripe-glow .wco-icon { display: none; } /* Hide icons for extreme minimalist look */
.theme-stripe-glow .wco-text strong { font-weight: 500; color: #6b7280; }
.theme-stripe-glow .wco-card-footer { padding: 20px 24px; background: #f9fafb; border-top: 1px solid #f3f4f6; gap: 16px; }
.theme-stripe-glow .wco-btn { border-radius: 10px; width: 44px; height: 44px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.theme-stripe-glow .wco-btn:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }

/* =========================================
   THEME 17: Apple-Style Bento Box
========================================= */
.theme-apple-bento .wco-card { border-radius: 24px; background: #f5f5f7; border: none; }
.theme-apple-bento .wco-card-header { padding: 24px; padding-bottom: 10px; }
.theme-apple-bento .wco-course-title { font-weight: 600; letter-spacing: -0.5px; color: #1d1d1f; }
.theme-apple-bento .wco-card-body { padding: 0 24px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.theme-apple-bento .wco-info-row { flex-direction: column; background: #fff; padding: 16px; border-radius: 16px; margin: 0; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.theme-apple-bento .wco-info-row:nth-child(3) { grid-column: 1 / -1; }
.theme-apple-bento .wco-icon { margin-bottom: 8px; font-size: 1.4rem; }
.theme-apple-bento .wco-text { display: flex; flex-direction: column; font-size: 0.9rem; }
.theme-apple-bento .wco-text strong { font-size: 0.8rem; color: #86868b; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.theme-apple-bento .wco-card-footer { padding: 0 24px 24px; background: transparent; justify-content: center; gap: 12px; }
.theme-apple-bento .wco-btn { border-radius: 20px; width: 60px; background: #e8e8ed; color: #1d1d1f; }
.theme-apple-bento .wco-btn:hover { background: #d2d2d7; transform: scale(0.96); }
.theme-apple-bento .wco-btn-register { background: #0071e3; color: #fff; }
.theme-apple-bento .wco-btn-register:hover { background: #0077ed; color: #fff; }

/* =========================================
   THEME 18: Neo-Brutalism
========================================= */
.theme-neo-brutal .wco-card { border-radius: 0; border: 3px solid #000; background: #fff; box-shadow: 6px 6px 0 #000; transition: all 0.15s; }
.theme-neo-brutal .wco-card:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 #000; }
.theme-neo-brutal .wco-card-header { padding: 20px; background: #fbbf24; border-bottom: 3px solid #000; }
.theme-neo-brutal .wco-course-title { font-weight: 900; text-transform: uppercase; color: #000; font-size: 1.4rem; }
.theme-neo-brutal .wco-card-body { padding: 24px; background: #fdf8f6; }
.theme-neo-brutal .wco-info-row { margin-bottom: 16px; border: 2px solid #000; padding: 10px; background: #fff; font-weight: 600; color: #000; align-items: center; }
.theme-neo-brutal .wco-icon { display: inline-flex; align-items: center; justify-content: center; background: #000; color: #fff; width: 30px; height: 30px; margin-right: 12px; border-radius: 50%; font-size: 0.8rem; }
.theme-neo-brutal .wco-card-footer { padding: 20px; border-top: 3px solid #000; background: #e2e8f0; }
.theme-neo-brutal .wco-btn { border-radius: 0; border: 2px solid #000; box-shadow: 3px 3px 0 #000; color: #000; font-weight: 800; }
.theme-neo-brutal .wco-btn:hover { transform: translate(3px, 3px) !important; box-shadow: 0 0 0 #000; }
.theme-neo-brutal .wco-btn-register { background: #f43f5e; color: #fff; }

/* =========================================
   THEME 19: Vercel / Linear Dark Mode
========================================= */
.theme-vercel-dark { background: #000; padding: 20px; border-radius: 12px; }
.theme-vercel-dark .wco-card { background: #0a0a0a; border: 1px solid #222; border-radius: 8px; position: relative; overflow: hidden; }
.theme-vercel-dark .wco-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); }
.theme-vercel-dark .wco-card:hover { border-color: #333; }
.theme-vercel-dark .wco-card-header { padding: 24px; }
.theme-vercel-dark .wco-course-title { color: #fff; font-weight: 500; font-size: 1.1rem; letter-spacing: -0.02em; }
.theme-vercel-dark .wco-card-body { padding: 0 24px 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.theme-vercel-dark .wco-info-row { background: rgba(255,255,255,0.03); border: 1px solid #222; padding: 6px 12px; border-radius: 100px; margin: 0; font-size: 0.85rem; color: #888; }
.theme-vercel-dark .wco-icon { font-size: 0.9rem; margin-right: 6px; }
.theme-vercel-dark .wco-text strong { display: none; } /* Hide labels, just show icon and value */
.theme-vercel-dark .wco-card-footer { padding: 16px 24px; border-top: 1px solid #1a1a1a; }
.theme-vercel-dark .wco-btn { background: #111; border: 1px solid #333; color: #ededed; }
.theme-vercel-dark .wco-btn:hover { background: #ededed; color: #000; border-color: #ededed; }

/* =========================================
   THEME 20: Aurora Glass Mesh
========================================= */
.theme-aurora { background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); padding: 30px; border-radius: 20px; }
.theme-aurora .wco-card { background: rgba(255,255,255,0.3); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5); border-radius: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.theme-aurora .wco-card-header { padding: 24px; text-align: center; }
.theme-aurora .wco-course-title { color: #333; text-shadow: 0 2px 10px rgba(255,255,255,0.8); font-weight: 800; }
.theme-aurora .wco-card-body { padding: 0 24px 24px; }
.theme-aurora .wco-info-row { background: rgba(255,255,255,0.4); padding: 12px 16px; border-radius: 12px; margin-bottom: 10px; color: #444; font-weight: 500; }
.theme-aurora .wco-card-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.3); justify-content: center; }
.theme-aurora .wco-btn { background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.8); color: #333; border-radius: 50px; padding: 0 24px; width: auto; font-weight: 600; }
.theme-aurora .wco-btn:hover { background: rgba(255,255,255,0.9); box-shadow: 0 0 20px rgba(255,255,255,0.6); }

/* =========================================
   THEME 21: E-commerce Editorial
========================================= */
.theme-editorial .wco-card { border: none; border-radius: 0; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.theme-editorial .wco-card-header { padding: 30px 30px 10px; }
.theme-editorial .wco-course-title { font-family: "Georgia", serif; font-size: 1.8rem; font-weight: 400; color: #111; }
.theme-editorial .wco-card-body { padding: 0 30px 20px; }
.theme-editorial .wco-info-row { margin: 0; padding: 15px 0; border-top: 1px solid #eaeaea; justify-content: space-between; align-items: baseline; }
.theme-editorial .wco-icon { display: none; }
.theme-editorial .wco-text { width: 100%; display: flex; justify-content: space-between; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #666; }
.theme-editorial .wco-text strong { color: #111; }
.theme-editorial .wco-card-footer { display: flex; padding: 0; }
.theme-editorial .wco-btn { flex: 1; border-radius: 0; height: 50px; background: #111; color: #fff; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; position: relative; overflow: hidden; z-index: 1; }
.theme-editorial .wco-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255,255,255,0.2); transition: left 0.3s; z-index: -1; }
.theme-editorial .wco-btn:hover::before { left: 0; }
.theme-editorial .wco-btn:hover { transform: none; }

/* =========================================
   THEME 22: Soft 3D Tactile
========================================= */
.theme-tactile { background: #e0e5ec; padding: 30px; border-radius: 12px; }
.theme-tactile .wco-card { background: #e0e5ec; border-radius: 16px; box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.5); border: none; }
.theme-tactile .wco-card-header { padding: 25px 25px 15px; }
.theme-tactile .wco-course-title { color: #4d5d6f; font-weight: 700; }
.theme-tactile .wco-card-body { padding: 0 25px 25px; }
.theme-tactile .wco-info-row { background: #e0e5ec; box-shadow: inset 5px 5px 10px rgb(163,177,198,0.5), inset -5px -5px 10px rgba(255,255,255, 0.8); padding: 15px; border-radius: 12px; margin-bottom: 12px; color: #6a7b8e; align-items: center; }
.theme-tactile .wco-icon { filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.1)); }
.theme-tactile .wco-card-footer { padding: 0 25px 25px; gap: 15px; background: transparent; border: none; }
.theme-tactile .wco-btn { background: #e0e5ec; color: #4d5d6f; box-shadow: 5px 5px 10px rgb(163,177,198,0.6), -5px -5px 10px rgba(255,255,255, 0.5); border-radius: 50%; transition: all 0.1s; }
.theme-tactile .wco-btn:active { box-shadow: inset 5px 5px 10px rgb(163,177,198,0.6), inset -5px -5px 10px rgba(255,255,255, 0.5); transform: translateY(2px); }
.theme-tactile .wco-btn:hover { transform: none; color: #3b82f6; }

/* =========================================
   THEME 23: Monochrome High-Contrast
========================================= */
.theme-monochrome .wco-card { border: 2px solid #000; border-radius: 0; background: #fff; }
.theme-monochrome .wco-card-header { background: #000; color: #fff; padding: 25px; }
.theme-monochrome .wco-course-title { font-weight: 800; letter-spacing: 1px; }
.theme-monochrome .wco-card-body { padding: 25px; display: flex; flex-direction: column; gap: 15px; }
.theme-monochrome .wco-info-row { margin: 0; border-left: 4px solid #000; padding-left: 15px; color: #000; }
.theme-monochrome .wco-icon { display: none; }
.theme-monochrome .wco-card-footer { background: #fff; border-top: 2px solid #000; padding: 20px; }
.theme-monochrome .wco-btn { border-radius: 0; background: #fff; color: #000; border: 2px solid #000; font-weight: 700; width: auto; padding: 0 20px; }
.theme-monochrome .wco-btn-text { display: inline-block; margin-left: 8px; }
.theme-monochrome .wco-btn:hover { background: #000; color: #fff; transform: none; }

/* =========================================
   THEME 24: Card-in-Card Architecture
========================================= */
.theme-card-in-card .wco-card { background: #1e293b; border-radius: 16px; padding: 24px; border: none; }
.theme-card-in-card .wco-card-header { padding: 0 0 20px 0; color: #f8fafc; }
.theme-card-in-card .wco-card-body { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.theme-card-in-card .wco-info-row { color: #334155; }
.theme-card-in-card .wco-card-footer { background: transparent; padding: 24px 0 0 0; justify-content: flex-start; border: none; }
.theme-card-in-card .wco-btn { border-radius: 8px; background: rgba(255,255,255,0.1); color: #fff; }
.theme-card-in-card .wco-btn:hover { background: #fff; color: #1e293b; transform: translateY(-3px); }
.theme-card-in-card .wco-btn-register { background: #3b82f6; }

/* =========================================
   THEME 25: Modern Gradient Text
========================================= */
.theme-gradient-text .wco-card { background: #fff; border-radius: 20px; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.theme-gradient-text .wco-card-header { padding: 25px 25px 15px; }
.theme-gradient-text .wco-course-title { font-weight: 800; font-size: 1.5rem; background: linear-gradient(90deg, #ff007f, #7928ca); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.theme-gradient-text .wco-card-body { padding: 0 25px 25px; }
.theme-gradient-text .wco-info-row { display: inline-flex; width: 100%; margin-bottom: 8px; align-items: center; }
.theme-gradient-text .wco-icon { background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-right: 12px; font-size: 1.2rem; }
.theme-gradient-text .wco-card-footer { padding: 20px 25px; border-top: 1px dashed #e2e8f0; }
.theme-gradient-text .wco-btn { position: relative; background: #fff; border-radius: 50px; z-index: 1; overflow: hidden; width: auto; padding: 0 20px; }
.theme-gradient-text .wco-btn-text { display: inline-block; margin-left: 8px; color: #333; font-weight: 600; z-index: 2; position: relative; }
.theme-gradient-text .wco-btn svg { fill: #333; color: #333; z-index: 2; position: relative; }
.theme-gradient-text .wco-btn::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: linear-gradient(90deg, #ff007f, #7928ca); z-index: 0; border-radius: 50px; opacity: 0; transition: opacity 0.3s; }
.theme-gradient-text .wco-btn::after { content: ''; position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px; background: #fff; z-index: 1; border-radius: 50px; transition: opacity 0.3s; }
.theme-gradient-text .wco-btn:hover::before { opacity: 1; }
.theme-gradient-text .wco-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(121, 40, 202, 0.2); }

/* =========================================
   THEME 26: Card-in-Card V2 (Glass & Purple)
========================================= */
.theme-card-in-card-v2 .wco-card { background: linear-gradient(135deg, #4c1d95, #2563eb); border-radius: 32px; padding: 20px; border: none; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
.theme-card-in-card-v2 .wco-card-header { padding: 10px 10px 20px; }
.theme-card-in-card-v2 .wco-course-title { color: #1e1b4b; background: #e0e7ff; display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 1.1rem; }
.theme-card-in-card-v2 .wco-card-body { background: rgba(255, 255, 255, 0.9); border-radius: 20px; padding: 25px; box-shadow: inset 0 2px 5px rgba(255,255,255,0.5); display: flex; flex-wrap: wrap; gap: 10px; }
.theme-card-in-card-v2 .wco-info-row { background: #f1f5f9; padding: 8px 12px; border-radius: 12px; margin: 0; font-size: 0.85rem; color: #334155; align-items: center; }
.theme-card-in-card-v2 .wco-icon { margin-right: 6px; font-size: 1rem; }
.theme-card-in-card-v2 .wco-card-footer { padding: 20px 5px 5px; border: none; justify-content: flex-end; gap: 10px; }
.theme-card-in-card-v2 .wco-btn { border-radius: 20px; width: auto; padding: 0 20px; }
.theme-card-in-card-v2 .wco-btn-text { display: inline-block; margin-left: 8px; }
.theme-card-in-card-v2 .wco-btn-wa { width: 44px; height: 44px; padding: 0; border-radius: 50%; justify-content: center; }
.theme-card-in-card-v2 .wco-btn-wa .wco-btn-text { display: none; } /* WA is icon only */
.theme-card-in-card-v2 .wco-btn:hover { transform: scale(1.05); }

/* =========================================
   THEME 27: Card-in-Card V3 (Pastel Offset)
========================================= */
.theme-card-in-card-v3 .wco-card { background: #fdf4ff; border-radius: 12px; padding: 30px 20px 20px 30px; border: 2px solid #e879f9; position: relative; }
.theme-card-in-card-v3 .wco-card-header { padding: 0 0 20px 0; }
.theme-card-in-card-v3 .wco-course-title { font-family: "Georgia", serif; font-size: 1.6rem; color: #701a75; text-shadow: 2px 2px 0 #fbcfe8; }
.theme-card-in-card-v3 .wco-card-body { background: #fff; border: 2px solid #e879f9; border-radius: 8px; padding: 25px; box-shadow: 5px 5px 0 #f0abfc; margin-left: 10px; }
.theme-card-in-card-v3 .wco-info-row { margin-bottom: 15px; border-bottom: 1px dashed #fbcfe8; padding-bottom: 10px; color: #4a044e; }
.theme-card-in-card-v3 .wco-info-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.theme-card-in-card-v3 .wco-card-footer { padding: 20px 0 0 10px; justify-content: flex-start; gap: 8px; border: none; }
.theme-card-in-card-v3 .wco-btn { border-radius: 4px; width: auto; padding: 0 15px; background: #c026d3; }
.theme-card-in-card-v3 .wco-btn-text { display: inline-block; margin-left: 8px; }
.theme-card-in-card-v3 .wco-btn-wa { width: 40px; padding: 0; background: #16a34a; }
.theme-card-in-card-v3 .wco-btn-wa .wco-btn-text { display: none; }
.theme-card-in-card-v3 .wco-btn:hover { background: #86198f; transform: translateY(-2px); }
.theme-card-in-card-v3 .wco-btn-wa:hover { background: #15803d; }

/* =========================================
   THEME 28: Gradient Text V2 (Neon Dark)
========================================= */
.theme-gradient-text-v2 .wco-card { background: #0f172a; border-radius: 24px; padding: 2px; position: relative; overflow: hidden; }
.theme-gradient-text-v2 .wco-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, #06b6d4, transparent 30%); animation: rotate 4s linear infinite; z-index: 0; }
@keyframes rotate { 100% { transform: rotate(1turn); } }
.theme-gradient-text-v2 .wco-card-header, .theme-gradient-text-v2 .wco-card-body, .theme-gradient-text-v2 .wco-card-footer { position: relative; z-index: 1; background: #0f172a; }
.theme-gradient-text-v2 .wco-card-header { border-radius: 22px 22px 0 0; padding: 25px; }
.theme-gradient-text-v2 .wco-course-title { font-size: 1.8rem; font-weight: 900; background: linear-gradient(to right, #22d3ee, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.theme-gradient-text-v2 .wco-card-body { padding: 0 25px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.theme-gradient-text-v2 .wco-info-row { flex-direction: column; background: #1e293b; padding: 15px; border-radius: 12px; margin: 0; align-items: flex-start; }
.theme-gradient-text-v2 .wco-info-row:nth-child(2) { grid-column: 1 / -1; flex-direction: row; background: transparent; padding: 0; align-items: center; } /* Location spans full */
.theme-gradient-text-v2 .wco-icon { margin-bottom: 5px; color: #22d3ee; }
.theme-gradient-text-v2 .wco-info-row:nth-child(2) .wco-icon { margin-bottom: 0; margin-right: 10px; }
.theme-gradient-text-v2 .wco-text { color: #f8fafc; font-size: 1.1rem; font-weight: 600; }
.theme-gradient-text-v2 .wco-text strong { display: none; } /* Hide labels */
.theme-gradient-text-v2 .wco-card-footer { padding: 20px 25px; border-radius: 0 0 22px 22px; border-top: 1px solid #1e293b; justify-content: flex-start; }
.theme-gradient-text-v2 .wco-btn { border-radius: 12px; width: auto; padding: 0 16px; background: transparent; border: 1px solid #334155; color: #f8fafc; }
.theme-gradient-text-v2 .wco-btn-text { display: inline-block; margin-left: 8px; }
.theme-gradient-text-v2 .wco-btn-wa { width: 45px; padding: 0; border-color: #22c55e; color: #22c55e; }
.theme-gradient-text-v2 .wco-btn-wa .wco-btn-text { display: none; }
.theme-gradient-text-v2 .wco-btn-register { border-color: #a855f7; color: #a855f7; }
.theme-gradient-text-v2 .wco-btn:hover { background: #1e293b; transform: translateY(-2px); }

/* =========================================
   THEME 29: Gradient Text V3 (Blocky Inline)
========================================= */
.theme-gradient-text-v3 .wco-card { background: #f8fafc; border-radius: 8px; padding: 30px; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1); border: none; }
.theme-gradient-text-v3 .wco-card-header { padding: 0 0 15px 0; }
.theme-gradient-text-v3 .wco-course-title { font-family: "Arial Black", "Impact", sans-serif; font-size: 2rem; line-height: 1.1; background: linear-gradient(45deg, #f97316, #ef4444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; }
.theme-gradient-text-v3 .wco-card-body { padding: 0; display: block; }
.theme-gradient-text-v3 .wco-info-row { display: inline; margin: 0; color: #475569; font-weight: 500; font-size: 1rem; line-height: 1.8; }
.theme-gradient-text-v3 .wco-info-row::after { content: " • "; color: #cbd5e1; margin: 0 8px; }
.theme-gradient-text-v3 .wco-info-row:last-child::after { content: ""; margin: 0; }
.theme-gradient-text-v3 .wco-icon { display: none; } /* No icons */
.theme-gradient-text-v3 .wco-text strong { color: #1e293b; }
.theme-gradient-text-v3 .wco-card-footer { padding: 25px 0 0 0; border: none; justify-content: flex-end; gap: 12px; }
.theme-gradient-text-v3 .wco-btn { border-radius: 6px; width: auto; padding: 0 20px; background: linear-gradient(45deg, #f97316, #ef4444); border: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.theme-gradient-text-v3 .wco-btn-text { display: inline-block; margin-left: 8px; }
.theme-gradient-text-v3 .wco-btn-wa { width: 45px; padding: 0; background: #fff; border: 2px solid #e2e8f0; color: #25D366; }
.theme-gradient-text-v3 .wco-btn-wa .wco-btn-text { display: none; }
.theme-gradient-text-v3 .wco-btn:hover { box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3); transform: translateY(-2px); }
.theme-gradient-text-v3 .wco-btn-wa:hover { border-color: #25D366; background: #f0fdf4; box-shadow: none; }


/* Custom Shortcode Overrides */
.wco-wrapper {
    font-family: var(--wco-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif) !important;
}
.wco-wrapper .wco-course-title {
    font-size: var(--wco-title-size, 1.25rem) !important;
    font-weight: var(--wco-title-weight, 600) !important;
}
.wco-wrapper[style*="--wco-title-color"] .wco-course-title {
    color: var(--wco-title-color) !important;
}
.wco-wrapper .wco-info-row,
.wco-wrapper .wco-text {
    font-size: var(--wco-text-size, 0.95rem) !important;
}
.wco-wrapper[style*="--wco-text-color"] .wco-info-row,
.wco-wrapper[style*="--wco-text-color"] .wco-info-row strong,
.wco-wrapper[style*="--wco-text-color"] .wco-text,
.wco-wrapper[style*="--wco-text-color"] .wco-text strong {
    color: var(--wco-text-color) !important;
}
