/*
Theme Name: MesutSahin Theme & Plugin Shop
Theme URI: https://mesutsahin.net
Author: Mesut Şahin
Author URI: https://mesutsahin.net
Description: Premium WordPress theme to showcase and sell themes and plugins, featuring multiple color presets including Galatasaray colors.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mesutsahin
*/

/* ==========================================
   CSS CUSTOM VARIABLES & COLOR SCHEMES
   ========================================== */

/* Galatasaray (Crimson & Gold Dark Premium) */
[data-theme="galatasaray"] {
    --bg-main: #0f0a0c;
    --bg-card: #191215;
    --bg-card-hover: #22181d;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #E30A17; /* Gala Crimson */
    --accent-secondary: #FDB913; /* Gala Gold */
    --accent-gradient: linear-gradient(135deg, #E30A17 0%, #FDB913 100%);
    --accent-glow: rgba(227, 10, 23, 0.25);
    --border-color: #2b1f24;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --nav-bg: rgba(15, 10, 12, 0.85);
}

/* Slate Dark (Modern tech theme) */
[data-theme="slate-dark"] {
    --bg-main: #0b0f19;
    --bg-card: #151c2c;
    --bg-card-hover: #1e273d;
    --text-main: #f1f5f9;
    --text-muted: #64748b;
    --accent: #6366f1; /* Indigo */
    --accent-secondary: #3b82f6; /* Blue */
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    --accent-glow: rgba(99, 102, 241, 0.25);
    --border-color: #232d42;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    --nav-bg: rgba(11, 15, 25, 0.85);
}

/* Cyberpunk Neon */
[data-theme="cyberpunk"] {
    --bg-main: #07070a;
    --bg-card: #0e0e15;
    --bg-card-hover: #161622;
    --text-main: #00ffcc;
    --text-muted: #8b92b3;
    --accent: #ff007f; /* Neon Pink */
    --accent-secondary: #00f3ff; /* Neon Cyan */
    --accent-gradient: linear-gradient(135deg, #ff007f 0%, #00f3ff 100%);
    --accent-glow: rgba(255, 0, 127, 0.3);
    --border-color: #ff007f33;
    --card-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
    --nav-bg: rgba(7, 7, 10, 0.85);
}

/* Clean Light (Minimalist & Accessible) */
[data-theme="clean-light"] {
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent: #0f172a; /* Slate 900 */
    --accent-secondary: #10b981; /* Emerald */
    --accent-gradient: linear-gradient(135deg, #0f172a 0%, #10b981 100%);
    --accent-glow: rgba(16, 185, 129, 0.15);
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    --nav-bg: rgba(248, 250, 252, 0.85);
}

/* Base resets & variables */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s, color 0.4s;
    padding-top: 70px; /* Shift down standard header (WordPress admin bar is handled by WP) */
}

/* If WordPress admin bar is showing */
body.admin-bar .main-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   MAIN NAVIGATION HEADER
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-weight: 400;
}

.logo-dot {
    color: var(--accent-secondary);
    font-weight: 900 !important;
}

.nav-links {
    display: flex;
    gap: 32px;
}

/* Support for WordPress menus */
.nav-links ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a,
.nav-links ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links ul li a:hover,
.nav-links ul li.current-menu-item a {
    color: var(--text-main);
}

.nav-links a.active::after,
.nav-links ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

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

/* Language selector integration */
.lang-switcher-wp {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    padding: 3px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.lang-switcher-wp a {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: 4px;
}

.lang-switcher-wp a.active,
.lang-switcher-wp .current-lang a {
    background: var(--bg-card-hover);
    color: var(--text-main);
}

/* ==========================================
   BUTTONS SYSTEM
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
}

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-sm);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding: 120px 0 120px 0;
    background: radial-gradient(circle at 80% 20%, var(--accent-glow) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(253, 185, 19, 0.05) 0%, transparent 40%);
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

[data-theme="cyberpunk"] .hero-content h1 {
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-secondary);
}

.search-box {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: var(--radius-md);
    align-items: center;
    max-width: 500px;
    margin-bottom: 48px;
    box-shadow: var(--card-shadow);
}

.search-icon {
    font-size: 18px;
    color: var(--text-muted);
    margin-left: 16px;
    margin-right: 12px;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    flex-grow: 1;
    width: 100%;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-item span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-accent {
    color: var(--accent-secondary);
}

.divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1.1;
    padding: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    gap: 6px;
}

.card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-header .dot.red { background: #ef4444; }
.card-header .dot.yellow { background: #eab308; }
.card-header .dot.green { background: #22c55e; }

.card-body-preview {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    margin-top: 24px;
}

.preview-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 130px;
    flex-grow: 1;
}

.preview-chart .bar {
    width: 16px;
    background: var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.preview-chart .bar:nth-child(2) {
    background: linear-gradient(180deg, var(--bg-card-hover) 0%, var(--border-color) 100%);
}

.preview-chart .bar:nth-child(3) {
    background: var(--accent-gradient);
    opacity: 0.65;
}

.preview-chart .bar:nth-child(4) {
    background: var(--accent-gradient);
    box-shadow: 0 0 15px var(--accent-glow);
}

.speed-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 6px solid var(--accent-secondary);
    width: 110px;
    height: 110px;
    margin-left: 24px;
    box-shadow: 0 0 20px rgba(253, 185, 19, 0.15);
}

.score-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-secondary);
    line-height: 1;
}

.score-label {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--card-shadow);
    z-index: 3;
}

.floating-badge i {
    color: var(--accent-secondary);
}

.badge-top {
    top: 10%;
    left: -10%;
    animation: float1 4s ease-in-out infinite;
}

.badge-bottom {
    bottom: 10%;
    right: -5%;
    animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 48px;
}

/* ==========================================
   PRODUCTS SECTION (SHOP GRID)
   ========================================== */
.products-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.filter-tabs {
    display: inline-flex;
    background: var(--bg-card);
    padding: 6px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.filter-tab {
    background: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.filter-tab.active {
    background: var(--bg-card-hover);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--card-shadow);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 5;
}

.product-badge.plugin {
    background: var(--accent-secondary);
    color: #000000;
}

.product-badge.theme {
    background: var(--accent);
    color: #ffffff;
}

.product-image {
    height: 160px;
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-main) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.placeholder-icon {
    font-size: 48px;
    color: var(--accent-secondary);
    opacity: 0.8;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--text-muted);
}

.install-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating i {
    color: var(--accent-secondary);
}

.rating span {
    margin-left: 4px;
    color: var(--text-muted);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.price-container {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
    line-height: 1;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.product-footer .actions {
    display: flex;
    gap: 8px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-card) 100%);
    border-top: 1px solid var(--border-color);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--accent-secondary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-secondary);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================
   SINGLE PRODUCT VIEW & WP PAGES
   ========================================== */
.main-content {
    padding: 60px 0;
    min-height: 500px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 20px;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.main-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.social-links a:hover {
    color: var(--text-main);
    border-color: var(--accent-secondary);
    background: var(--accent-gradient);
}

.footer-links h4,
.footer-subscribe h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--text-main);
    padding-left: 4px;
}

.footer-subscribe p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--radius-sm);
}

.subscribe-form input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 0 12px;
    flex-grow: 1;
}

.subscribe-form input::placeholder {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.demo-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-secondary);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    body.admin-bar .main-header {
        top: 46px; /* WordPress Admin bar stacks on small screens */
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .search-box {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================
   WOOCOMMERCE MY ACCOUNT DASHBOARD
   ========================================== */

.ms-my-account-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
}

@media (max-width: 992px) {
    .ms-my-account-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Sidebar Navigation */
.ms-account-nav {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 0;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ms-account-user-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.ms-user-avatar img {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    border: 2px solid var(--accent);
    padding: 2px;
}

.ms-user-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--text-main);
}

.ms-user-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.ms-account-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ms-account-nav li {
    margin: 0;
    padding: 4px 16px;
}

.ms-account-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.ms-account-nav li a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.ms-account-nav li a:hover,
.ms-account-nav li.is-active a {
    background: var(--bg-card-hover);
    color: var(--text-main);
}

.ms-account-nav li.is-active a {
    background: var(--accent-glow);
    color: var(--accent);
}

.ms-account-nav li.is-active a i {
    color: var(--accent);
}

/* Dashboard Content */
.ms-my-account-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ms-dashboard-welcome {
    margin-bottom: 32px;
}

.ms-dashboard-welcome h3 {
    font-size: 24px;
    color: var(--text-main);
    margin: 0 0 8px;
}

.ms-dashboard-welcome p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

/* Stat Cards */
.ms-stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ms-stat-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ms-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.ms-stat-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ms-stat-card .data h4 {
    margin: 0 0 4px;
    font-size: 24px;
    color: var(--text-main);
    line-height: 1;
}

.ms-stat-card .data span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* My Licenses List */
.ms-my-licenses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ms-license-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.ms-lc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0,0,0,0.1);
}

.ms-lc-product {
    font-weight: 600;
    color: var(--text-main);
}

.ms-lc-status {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.ms-status-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ms-status-expired {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ms-lc-body {
    padding: 20px;
}

.ms-lc-key-row {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px 4px 4px 12px;
    margin-bottom: 16px;
}

.ms-lc-key-row code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--accent);
    background: transparent;
    padding: 0;
}

.ms-copy-key-btn {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-copy-key-btn:hover {
    color: var(--text-main);
    border-color: var(--accent);
}

.ms-lc-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.ms-lc-meta strong {
    color: var(--text-main);
    font-weight: 500;
}

/* ==========================================
   OFF-CANVAS MINI CART
   ========================================== */

/* Cart Trigger in Header */
.ms-cart-trigger {
    position: relative;
    color: var(--text-main);
    font-size: 20px;
    margin-right: 16px;
    transition: color 0.3s;
}

.ms-cart-trigger:hover {
    color: var(--accent);
}

.ms-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

/* Overlay */
.ms-mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ms-mini-cart-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.ms-mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden by default */
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-card);
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ms-mini-cart-drawer.is-open {
    right: 0;
}

.ms-mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

.ms-mc-header h4 {
    margin: 0;
    font-size: 18px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-mc-header .ms-cart-count {
    position: static;
    background: rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 14px;
    width: auto;
    height: auto;
    padding: 2px 8px;
    border-radius: 12px;
}

.ms-mc-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.ms-mc-close:hover {
    color: var(--accent);
}

.ms-mc-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

/* WooCommerce Mini Cart Overrides */
.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
}

.woocommerce-mini-cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.woocommerce-mini-cart-item a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.woocommerce-mini-cart-item a:hover {
    color: var(--accent);
}

.woocommerce-mini-cart-item .quantity {
    color: var(--text-muted);
    font-size: 14px;
}

.woocommerce-mini-cart-item .remove_from_cart_button {
    position: absolute;
    top: 0;
    right: 0;
    color: #ef4444;
    font-size: 18px;
    text-decoration: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.woocommerce-mini-cart-item .remove_from_cart_button:hover {
    background: #ef4444;
    color: #fff;
}

.woocommerce-mini-cart__total {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.woocommerce-mini-cart__buttons .button {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.woocommerce-mini-cart__buttons .button:not(.checkout) {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.woocommerce-mini-cart__buttons .button:not(.checkout):hover {
    background: rgba(255,255,255,0.1);
}

.woocommerce-mini-cart__buttons .checkout {
    background: var(--accent);
    color: #fff;
}

.woocommerce-mini-cart__buttons .checkout:hover {
    background: var(--accent-secondary);
}

/* ==========================================
   DIGITAL CHECKOUT OPTIMIZATION
   ========================================== */

.ms-digital-checkout .ms-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
}

@media (max-width: 992px) {
    .ms-digital-checkout .ms-checkout-grid {
        grid-template-columns: 1fr;
    }
}

.ms-checkout-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ms-checkout-step h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: var(--text-main);
}

.ms-checkout-step .ms-step-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.woocommerce-checkout input.input-text {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.woocommerce-checkout input.input-text:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    outline: none;
}

/* ==========================================
   SINGLE PRODUCT SAAS LAYOUT
   ========================================== */

.ms-single-product-container {
    padding: 60px 0;
}

.ms-sp-hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .ms-sp-hero {
        grid-template-columns: 1fr;
    }
}

.ms-sp-image {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.ms-sp-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

.ms-sp-summary {
    display: flex;
    flex-direction: column;
}

.ms-sp-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 16px;
    line-height: 1.2;
}

.ms-sp-short-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ms-sp-price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.ms-sp-price-box .price-wrapper {
    margin-bottom: 24px;
}

.ms-sp-price-box .price-wrapper .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ms-sp-price-box .price-wrapper del {
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 500;
}

.ms-sp-price-box .price-wrapper ins {
    text-decoration: none;
    color: var(--accent);
}

.ms-sp-add-to-cart form.cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ms-sp-add-to-cart button.single_add_to_cart_button {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.ms-sp-add-to-cart button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.ms-sp-features-list {
    list-style: none;
    margin: 32px 0 0 0;
    padding: 32px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.ms-sp-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 15px;
}

.ms-sp-features-list li i {
    color: #10b981; /* Green check */
}

.ms-sp-content {
    margin-top: 60px;
}

/* ==========================================
   THEME MODE TOGGLE
   ========================================== */
.ms-theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ms-theme-toggle:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.ms-theme-toggle i {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    font-size: 18px;
}

/* Default state: Moon visible, Sun hidden down */
.ms-theme-toggle .light-icon {
    transform: translateY(30px);
    opacity: 0;
}
.ms-theme-toggle .dark-icon {
    transform: translateY(0);
    opacity: 1;
}

/* Light mode state: Sun visible, Moon hidden up */
[data-theme="clean-light"] .ms-theme-toggle .light-icon {
    transform: translateY(0);
    opacity: 1;
}
[data-theme="clean-light"] .ms-theme-toggle .dark-icon {
    transform: translateY(-30px);
    opacity: 0;
}

/* ==========================================
   DOCUMENTATION (KNOWLEDGE BASE)
   ========================================== */

/* Docs Archive (Hero & Grid) */
.ms-docs-hero {
    background: var(--nav-bg);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.docs-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.docs-hero-desc {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.ms-docs-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.ms-docs-search-form {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    box-shadow: var(--card-shadow);
}

.ms-docs-search-form .search-icon {
    color: var(--text-muted);
    font-size: 18px;
}

.ms-docs-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 16px;
    outline: none;
}

.ms-docs-search-form .btn {
    border-radius: 100px;
    padding: 12px 24px;
}

.ms-docs-search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    z-index: 100;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

.ms-docs-search-results-dropdown a {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.ms-docs-search-results-dropdown a:hover {
    background: var(--bg-card-hover);
}

.ms-docs-search-results-dropdown a:last-child {
    border-bottom: none;
}

.ms-docs-search-results-dropdown a span.res-cat {
    font-size: 12px;
    color: var(--accent-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.ms-docs-categories {
    padding: 80px 0;
}

.ms-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.ms-doc-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ms-doc-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent);
}

.ms-doc-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ms-doc-cat-content h3 {
    color: var(--text-main);
    font-size: 20px;
    margin-bottom: 8px;
}

.ms-doc-cat-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.ms-doc-count {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-main);
    font-weight: 500;
}

/* Single Docs 3-Column Layout */
.ms-docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr 240px;
    gap: 40px;
    align-items: start;
    padding: 40px 15px 80px;
}

@media (max-width: 1200px) {
    .ms-docs-layout {
        grid-template-columns: 240px 1fr;
    }
    .ms-docs-toc {
        display: none;
    }
}

@media (max-width: 992px) {
    .ms-docs-layout {
        grid-template-columns: 1fr;
    }
    .ms-docs-sidebar {
        display: none; /* Can be implemented as off-canvas on mobile later */
    }
}

/* Left Sidebar */
.ms-docs-sidebar-inner {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.ms-docs-brand a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
    font-size: 15px;
    transition: color 0.3s;
}

.ms-docs-brand a:hover {
    color: var(--text-main);
}

.ms-docs-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-docs-cat-item {
    margin-bottom: 24px;
}

.ms-docs-cat-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 12px;
    opacity: 0.7;
}

.ms-docs-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-docs-post-list li {
    margin-bottom: 6px;
}

.ms-docs-post-list a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.ms-docs-post-list a:hover {
    background: var(--bg-card);
    color: var(--text-main);
}

.ms-docs-post-list li.active a {
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 500;
}

/* Center Content */
.ms-docs-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ms-docs-breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.ms-docs-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.ms-docs-breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.5;
}

.ms-docs-title {
    font-size: 40px;
    color: var(--text-main);
    margin: 0 0 16px;
    line-height: 1.2;
}

.ms-docs-meta {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.ms-docs-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
}

.ms-docs-body h2 {
    color: var(--text-main);
    font-size: 28px;
    margin: 40px 0 20px;
}

.ms-docs-body h3 {
    color: var(--text-main);
    font-size: 22px;
    margin: 30px 0 16px;
}

.ms-docs-body p {
    margin-bottom: 24px;
}

.ms-docs-body ul, .ms-docs-body ol {
    margin: 0 0 24px 24px;
}

.ms-docs-body li {
    margin-bottom: 8px;
}

/* Helpful Footer */
.ms-docs-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.ms-docs-helpful p {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
}

.ms-docs-helpful-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.ms-docs-helpful-actions .btn {
    padding: 8px 24px;
}

/* Right Sidebar TOC */
.ms-docs-toc-inner {
    position: sticky;
    top: 100px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.ms-toc-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.ms-toc-list,
.ms-toc-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-toc-list ul {
    padding-left: 16px;
    margin-top: 4px;
}

.ms-toc-list li {
    margin-bottom: 8px;
}

.ms-toc-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    display: block;
    line-height: 1.4;
    transition: color 0.2s;
}

.ms-toc-list a:hover,
.ms-toc-list a.active {
    color: var(--accent);
    font-weight: 500;
}

/* ==========================================
   CHANGELOG (VERSION HISTORY) TIMELINE
   ========================================== */
.ms-changelog-timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
    font-family: var(--font-body);
}

.ms-changelog-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
    width: 2px;
    background: var(--border-color);
}

.ms-changelog-timeline h3 {
    position: relative;
    font-size: 18px;
    color: var(--text-main);
    margin: 30px 0 15px;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ms-changelog-timeline h3:first-child {
    margin-top: 0;
}

/* The timeline dot */
.ms-changelog-timeline h3::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border: 3px solid var(--bg-main);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent-glow);
    z-index: 2;
}

/* Styling the content inside changelog */
.ms-changelog-timeline ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ms-changelog-timeline ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ms-changelog-timeline ul li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-secondary);
}

.ms-changelog-timeline p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}
