/*-----------------------
Table-Of-Content
-------------------------
1. Reset_CSS
2. Helper_CSS
3. Button_CSS
4. Nav_Area_CSS
5. Menu_Link_List
6. Sub_menu_CSS
7. Nav_Menu_Plus_CSS
8. Nav_Actions_CSS
10. Site_Header_CSS
11. Scroll_To_Bottom
12. post_box_CSS
13. Navigation_List
14. Comment_List
15. Comment_Form_CSS
16. Sidebar_Widget_CSS
17. Footer_Area_CSS
18. Scroll_To_Up
19. Error_page
20. Preloader
21. Event-Page
------------------------*/
/*----- Root-Value -----*/
:root {
    /* Brand & Base Colors */
    --pco-primary-color: #7A3FF2;
    --pco-secondary-color: #2196F3;
    --pco-dark-color: #111827;
    --pco-text-color: #374151;
    --pco-white-color: #ffffff;
    --pco-surface-color: #f6f6f6;

    /* Derived via color-mix */
    --pco-primary-light: color-mix(in srgb, var(--pco-primary-color) 12%, white);
    --pco-primary-dark:  color-mix(in srgb, var(--pco-primary-color) 80%, black);
    --pco-primary-alpha: color-mix(in srgb, var(--pco-primary-color) 15%, transparent);
    --pco-secondary-light: color-mix(in srgb, var(--pco-secondary-color) 12%, white);
    --pco-secondary-alpha: color-mix(in srgb, var(--pco-secondary-color) 15%, transparent);
    --pco-dark-alpha:    color-mix(in srgb, var(--pco-dark-color) 60%, transparent);

    /* Extended Colors */
    --pco-off-white-color: #fdfdfd;
    --pco-light-gray-color: #e0e0e0;
    --pco-border-color: #eceef2;
    --pco-shadow-color: rgba(0, 0, 0, 0.1);
    --pco-placeholder-color: #999999;
    --pco-black-color: #000000;
    --pco-transparent-color: transparent;

    --pco-body-font-family: "Inter", sans-serif;
    --pco-heading-font-family: "Plus Jakarta Sans" sans-serif;

    --pco-body-font-size: 16px;
    --pco-body-line-height: 1.6em;
    --pco-heading-line-height: 1.4em;
    --pco-normal-transition: 0.3s;
    --pco-section-padding: clamp(60px, 10vw, 120px);

    --pco-navbar-sidebar-width: 350px;


    /* Responsive heading sizes (based on 16px root, H1 = 72px) */
    --pco-h1-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    /* ~40px–72px */
    --pco-h2-size: clamp(2rem, 4vw + 0.5rem, 3.375rem);
    /* ~32px–54px */
    --pco-h3-size: clamp(1.75rem, 3vw + 0.5rem, 2.813rem);
    /* ~28px–45px */
    --pco-h4-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
    /* ~24px–36px */
    --pco-h5-size: clamp(1.25rem, 2vw + 0.5rem, 1.688rem);
    /* ~20px–27px */
    --pco-h6-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
    /* ~16px–22px */
}

/*----- 1. Reset_CSS -----*/
*, *::before, *::after {
    -webkit-transition: all var(--pco-normal-transition, 0.3s) ease;
    -o-transition: all var(--pco-normal-transition, 0.3s) ease;
    transition: all var(--pco-normal-transition, 0.3s) ease;
}

body {
    font-family: var(--pco-body-font-family);
    font-size: var(--pco-body-font-size);
    font-weight: var(--pco-body-font-weight, 400);
    line-height: var(--pco-body-line-height, 1.6);
    letter-spacing: var(--body-letter-spacing, 0);
    color: var(--pco-text-color);
    background-color: var(--pco-white-color);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    margin: 0px;
    padding: 0px;
}

a {
    outline: none;
    text-decoration: none;
    -webkit-transition: var(--pco-normal-transition);
    -o-transition: var(--pco-normal-transition);
    transition: var(--pco-normal-transition);
    color: var(--pco-text-color);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--pco-primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--pco-heading-font-family);
    margin: 0 0 16px;
    letter-spacing: var(--heading-letter-spacing, 0);
    color: var(--pco-dark-color);
}

h1, .h1 { font-size: var(--pco-h1-size); font-weight: var(--h1-weight, 700); line-height: var(--h1-line-height, 1.2); }
h2, .h2 { font-size: var(--pco-h2-size); font-weight: var(--h2-weight, 700); line-height: var(--h2-line-height, 1.2); }
h3, .h3 { font-size: var(--pco-h3-size); font-weight: var(--h3-weight, 700); line-height: var(--h3-line-height, 1.3); }
h4, .h4 { font-size: var(--pco-h4-size); font-weight: var(--h4-weight, 600); line-height: var(--h4-line-height, 1.4); }
h5, .h5 { font-size: var(--pco-h5-size); font-weight: var(--h5-weight, 600); line-height: var(--h5-line-height, 1.4); }
h6, .h6 { font-size: var(--pco-h6-size); font-weight: var(--h6-weight, 600); line-height: var(--h6-line-height, 1.4); }

small {
    font-size: 0.833em;
    /* Slightly smaller for small text */
}

h3 a,
h4 a,
h5 a,
h6 a,
h3,
h4,
h5,
h6 {
    line-height: 1.2em;
    color: var(--pco-dark-color);
}


i {
    line-height: 1.4em;
}

/* ── Border utilities (Tailwind-compatible, preflight-safe) ── */
.border   { border-style: solid; border-width: 1px; }
.border-0 { border-style: solid; border-width: 0; }
.border-2 { border-style: solid; border-width: 2px; }
.border-4 { border-style: solid; border-width: 4px; }
.border-8 { border-style: solid; border-width: 8px; }

.border-t { border-style: solid; border-width: 1px 0 0 0; }
.border-r { border-style: solid; border-width: 0 1px 0 0; }
.border-b { border-style: solid; border-width: 0 0 1px 0; }
.border-l { border-style: solid; border-width: 0 0 0 1px; }
.border-x { border-style: solid; border-width: 0 1px 0 1px; }
.border-y { border-style: solid; border-width: 1px 0 1px 0; }

.border-t-0 { border-style: solid; border-top-width: 0; }
.border-t-2 { border-style: solid; border-width: 2px 0 0 0; }
.border-t-4 { border-style: solid; border-width: 4px 0 0 0; }
.border-t-8 { border-style: solid; border-width: 8px 0 0 0; }

.border-r-0 { border-right-width: 0; }
.border-r-2 { border-style: solid; border-width: 0 2px 0 0; }
.border-r-4 { border-style: solid; border-width: 0 4px 0 0; }
.border-r-8 { border-style: solid; border-width: 0 8px 0 0; }

.border-b-0 { border-bottom-width: 0; }
.border-b-2 { border-style: solid; border-width: 0 0 2px 0; }
.border-b-4 { border-style: solid; border-width: 0 0 4px 0; }
.border-b-8 { border-style: solid; border-width: 0 0 8px 0; }

.border-l-0 { border-left-width: 0; }
.border-l-2 { border-style: solid; border-width: 0 0 0 2px; }
.border-l-4 { border-style: solid; border-width: 0 0 0 4px; }
.border-l-8 { border-style: solid; border-width: 0 0 0 8px; }

/*----- 2. Helper_CSS -----*/
.bright {
    -webkit-filter: brightness(10);
    filter: brightness(10);
}

.page-section {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

.section-padding {
    padding-top: var(--pco-section-padding);
    padding-bottom: var(--pco-section-padding);
}

/* Transparent-navbar spacer — only active when navbar is fixed (transparent mode).
   In normal/sticky mode the navbar stays in the document flow, so no spacer is needed. */
.menu__height {
    height: 0;
}

.transparent_menu .menu__height {
    height: var(--navbar-height);
}


.link {
    color: var(--pco-primary-color);
}

.container.wide {
    max-width: 1600px;
}

/* ── Form Elements ───────────────────────────────────── */

/* ---- button ---- */
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--pco-body-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pco-dark-color);
    background-color: var(--pco-surface-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease,
                border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: button;
}

button:hover:not(:disabled) {
    color: var(--pco-primary-color);
    background-color: color-mix(in srgb, var(--pco-primary-color) 6%, transparent);
    border-color: color-mix(in srgb, var(--pco-primary-color) 40%, transparent);
}

button:focus-visible {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 20%, transparent);
    border-color: var(--pco-primary-color);
}


button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---- input ---- */
input {
    font-family: var(--pco-body-font-family);
    font-size: 14px;
    color: var(--pco-dark-color);
    background-color: var(--pco-white-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"] {
    width: 100%;
    padding: 11px 16px;
}

input:focus {
    border-color: var(--pco-primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 15%, transparent);
}

input::placeholder {
    color: var(--pco-placeholder-color);
    opacity: 1;
}

input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--pco-surface-color);
}

/* Checkbox */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    padding: 0;
    border: 2px solid var(--pco-border-color);
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: var(--pco-primary-color);
    border-color: var(--pco-primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

input[type="checkbox"]:hover:not(:checked) { border-color: var(--pco-primary-color); }
input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 20%, transparent);
}

/* Radio */
input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    padding: 0;
    border: 2px solid var(--pco-border-color);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--pco-white-color);
}

input[type="radio"]:checked {
    border-color: var(--pco-primary-color);
    box-shadow: inset 0 0 0 4px var(--pco-primary-color);
}

input[type="radio"]:hover:not(:checked) { border-color: var(--pco-primary-color); }
input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 20%, transparent);
}

input[type="radio"]:checked:focus {
    box-shadow: inset 0 0 0 4px var(--pco-primary-color),
                0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 20%, transparent);
}

/* Range */
input[type="range"] {
    width: 100%;
    height: 6px;
    padding: 0;
    background: var(--pco-border-color);
    border: none;
    border-radius: 99px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--pco-primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--pco-primary-color);
    cursor: pointer;
}

/* Submit / Reset / Button-type inputs */
input[type="submit"],
input[type="reset"],
input[type="button"] {
    width: auto;
    padding: 11px 24px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
}

input[type="submit"] {
    background-color: var(--pco-primary-color);
    border-color: var(--pco-primary-color);
    color: var(--pco-white-color);
}

input[type="submit"]:hover {
    background-color: var(--pco-primary-dark);
    border-color: var(--pco-primary-dark);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--pco-primary-color) 30%, transparent);
}

input[type="reset"],
input[type="button"] {
    background-color: var(--pco-surface-color);
    color: var(--pco-dark-color);
}

input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: var(--pco-border-color);
}

/* Search clear button */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* ---- select ---- */
select {
    width: 100%;
    padding: 11px 40px 11px 16px;
    font-family: var(--pco-body-font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--pco-dark-color);
    background-color: var(--pco-white-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    line-height: 1.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:focus {
    border-color: var(--pco-primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 15%, transparent);
}

select:hover:not(:disabled) {
    border-color: color-mix(in srgb, var(--pco-primary-color) 50%, var(--pco-border-color));
}

select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--pco-surface-color);
}

select[multiple] {
    padding-right: 16px;
    background-image: none;
    height: auto;
}

select[size]:not([size="1"]) {
    padding-right: 16px;
    background-image: none;
}

/* ---- optgroup ---- */
optgroup {
    font-family: var(--pco-body-font-family);
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    color: var(--pco-dark-color);
    background-color: var(--pco-surface-color);
    padding: 6px 0;
}

optgroup option {
    font-weight: 400;
    font-size: 14px;
    color: var(--pco-text-color);
    background-color: var(--pco-white-color);
    padding: 6px 16px 6px 24px;
}

option {
    font-family: var(--pco-body-font-family);
    font-size: 14px;
    color: var(--pco-text-color);
    background-color: var(--pco-white-color);
    padding: 6px 16px;
}

option:checked {
    background-color: color-mix(in srgb, var(--pco-primary-color) 10%, white);
    color: var(--pco-primary-color);
    font-weight: 500;
}

/* ---- textarea ---- */
textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--pco-body-font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--pco-dark-color);
    background-color: var(--pco-white-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 10px;
    outline: none;
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

textarea:focus {
    border-color: var(--pco-primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pco-primary-color) 15%, transparent);
}

textarea:hover:not(:focus):not(:disabled) {
    border-color: color-mix(in srgb, var(--pco-primary-color) 50%, var(--pco-border-color));
}

textarea::placeholder {
    color: var(--pco-placeholder-color);
    opacity: 1;
}

textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--pco-surface-color);
    resize: none;
}

/* ---- Shared label / fieldset ---- */
label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pco-dark-color);
    margin-bottom: 6px;
    line-height: 1.4;
}

fieldset {
    border: 1px solid var(--pco-border-color);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 20px;
}

fieldset legend {
    font-family: var(--pco-heading-font-family);
    font-size: 14px;
    font-weight: 700;
    color: var(--pco-primary-color);
    padding: 0 8px;
}

/* ── Alert bar — gradient background with primary/secondary colors ── */
.alert__bar {
    background: linear-gradient(45deg, var(--pco-primary-color), var(--pco-secondary-color));
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.alert__bar a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 200ms ease;
}

.alert__bar a:hover {
    opacity: 0.9;
}

.alert__bar .alert__close:active {
    transform: scale(0.95);
}

/*----- 10. Site Header / Jumbotron -----*/
.site-header {
    position: relative;
    z-index: 1;
    /* Default vertical padding — may be overridden by theme-options generated CSS */
    padding-top: clamp(50px, 8vw, 100px);
    padding-bottom: clamp(50px, 8vw, 100px);
}

.site-header__overlay {
    background-color: var(--pco-dark-color);
    opacity: 0.75;
}

.site-header__title {
    margin: 0;
}

.site-header__description {
    margin: 0;
}

.site-header__description a {
    color: inherit;
    font-weight: 600;
    transition: color 200ms ease;
}

.site-header__description a:hover {
    color: var(--pco-primary-color);
}

.site-header__description .separator {
    margin: 0 0.5rem;
}

/*----- 12. post_box_CSS -----*/
/* Post media figure — output by Playcourse_Functions::post_thumbnail() */
figure.post-media {
    margin: 0;
    display: block;
    line-height: 0;
}

figure.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blog post quote format */
[data-post-format="quote"] {
    background-color: var(--quote-color, var(--pco-primary-color));
}

/* Blog post link format */
[data-post-format="link"] {
    border-left-color: var(--link-color, var(--pco-primary-color));
}

/*----- 13. Navigation_List -----*/
.page-links,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    gap: 8px;
    width: 100%;
}

.page-links {
    justify-content: flex-start;
}

.page-links-title {
    margin-right: 8px;
    font-weight: 500;
    color: var(--pco-text-color);
}

.page-links .page-numbers,
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--pco-text-color);
    background-color: white;
    border: 1px solid var(--pco-border-color, #e5e7eb);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.page-links .page-numbers:hover,
.nav-links .page-numbers:hover {
    border-color: var(--pco-primary-color);
    color: var(--pco-primary-color);
    box-shadow: 0 4px 12px rgba(122, 63, 242, 0.15);
    transform: translateY(-1px);
}

.page-links .page-numbers.current,
.nav-links .page-numbers.current {
    background-color: var(--pco-primary-color);
    border-color: var(--pco-primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(122, 63, 242, 0.25);
}

/* Page links nav (for single pages) */
.page-links-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--pco-border-color, #e5e7eb);
}

.page-links-title {
    font-size: 14px;
    font-weight: 600;
}

.page-numbers-next,
.page-numbers-prev {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    min-width: 40px;
    padding: 6px 10px;
}



/*-----  14. Comment_List -----*/
.comment-section-area {
    margin-top: 24px;
}

.no-comments {
    padding: 32px 0;
    margin: 0;
    border-top: 1px solid var(--pco-surface-color);
}

.comments_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments_list .comment {
    border-top: 1px solid var(--pco-surface-color);
    padding-top: 32px;
}

.comments_list>.comment:first-child {
    border-top: none;
    padding-top: 0;
}

.comments_list>.comment:last-child {
    padding-bottom: 26px;
}

.comments_list .children {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0 0 0 72px;
}

.comments_list .comment-body {
    position: relative;
    padding-left: 72px;
    margin-bottom: 32px;
}

.comments_list .comment-body .comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.comments_list .comment-body .comment-meta .comment-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.comments_list .comment-body .comment-meta .comment-author:after {
    content: "|";
    margin-right: 10px;
    padding-left: 10px;
}

.comments_list .comment-body .comment-meta .comment-author img {
    position: absolute;
    left: 0;
    top: 4px;
    width: 52px;
}

.comments_list .comment-body .comment-meta .comment-author .fn,
.comments_list .comment-body .comment-meta .comment-author .fn a {
    color: var(--pco-primary-color);
    text-transform: capitalize;
}

.comments_list .comment-body .comment-meta .comment-author .fn a:hover {
    text-decoration: underline;
}

.comments_list .comment-body .comment-meta .comment-author .says {
    display: none;
}

.comments_list .comment-body .comment-meta .comment-metadata {
    color: var(--pco-text-color);
    font-size: 70%;
}

.comments_list .comment-body .comment-meta .comment-metadata a {
    color: var(--pco-text-color);
}

.comments_list .comment-body .comment-meta .comment-metadata a:hover {
    color: var(--pco-primary-color);
}

.comments_list .comment-body .reply {
    margin-top: 16px;
}

.comments_list .comment-body .reply a {
    color: var(--pco-dark-color);
    font-weight: 700;
}

.comments_list .comment-body .reply a:hover {
    color: var(--pco-primary-color);
}

.comment-body .comment-reply-link:after {
    content: "\ea6e"; /* ri-arrow-right-line */
    font-family: 'remixicon' !important;
    margin-left: 8px;
    display: inline-block;
    line-height: 0;
}

.check_list {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.check_list li:not(:last-child) {
    margin-bottom: 8px;
}

.check_list li:before {
    content: "\eb81"; /* ri-arrow-right-line */
    font-family: 'remixicon' !important;
    margin-right: 8px;
    color: var(--pco-primary-color);

}

.comments_list .comment-body .comment-content {
    color: var(--pco-text-color);
}

/*----- 15. Comment_Form_CSS -----*/
.comment .comment-respond {
    margin-bottom: 40px;
}

.page .comment_list_area {
    margin-bottom: 40px;
}

.comment_list_area .comments_title,
.comment-respond .comment-reply-title {
    font-size: 24px;
    line-height: 1.4em;
    font-weight: 700;
    font-family: var(--pco-heading-font-family);
    color: var(--pco-dark-color);
    margin-bottom: 24px;
}

.comment-respond .comment-reply-title {
    margin-bottom: 10px;
}

.comment-respond .comment-reply-title small {
    margin-left: 10px;
    font-size: 40%;
    float: right;
}

.comment-respond .comment-form .comment-notes,
.comment-respond .comment-form .logged-in-as {
    font-size: calc(var(--pco-body-font-size) - 2px);
}

.playcourse-login-remember input[type="checkbox"],
.comment-respond .comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
    display: none;
}

.playcourse-login-remember label,
.comment-respond .comment-form .comment-form-cookies-consent label {
    position: relative;
    padding-left: 30px;
    z-index: 1;
}

.playcourse-login-remember label:after,
.comment-respond .comment-form .comment-form-cookies-consent label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;

    display: block;
    background-color: var(--pco-white-color);
    -webkit-box-shadow: 0 0 0 1px var(--pco-surface-color) inset;
    box-shadow: 0 0 0 1px var(--pco-surface-color) inset;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.playcourse-login-remember label:before,
.comment-respond .comment-form .comment-form-cookies-consent label:before {
    content: "\edb2"; /* ri-check-line */
    font-family: 'remixicon' !important;
    font-weight: normal;
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    line-height: 22px;

    display: block;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.playcourse-login-remember input[type="checkbox"]:checked~label:before,
.comment-respond .comment-form .comment-form-cookies-consent #wp-comment-cookies-consent:checked~label:before {
    opacity: 1;
}

.playcourse-login-remember input[type="checkbox"]:checked~label:after,
.comment-respond .comment-form .comment-form-cookies-consent #wp-comment-cookies-consent:checked~label:after {
    -webkit-box-shadow: 0 0 0 12px var(--pco-primary-color) inset;
    box-shadow: 0 0 0 12px var(--pco-primary-color) inset;
}

.form-submit {
    margin-bottom: 0;
}

/*----- 16. Sidebar_Widget_CSS -----*/
.main-sidebar .widget {
    background-color: var(--pco-white-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s ease;
}

.main-sidebar .widget:hover {
    box-shadow: 0 8px 24px -8px rgba(17, 24, 39, 0.1);
}

.main-sidebar .widget:last-child {
    margin-bottom: 0;
}

.main-sidebar .widget .widget_title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pco-dark-color);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--pco-border-color);
    position: relative;
}

.main-sidebar .widget .widget_title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--pco-primary-color);
    border-radius: 99px;
}

/* Lists */
.widget ol,
.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.widget ol ul,
.widget ol ol,
.widget ul ul,
.widget ul ol {
    margin-left: 16px;
    margin-top: 4px;
}

.widget li {
    font-size: 14px;
}

/* Nav / Pages / Archive / Categories */
.widget_nav_menu ul li,
.widget_pages ul li,
.widget_archive ul li,
.widget_product_categories ul li,
.widget_categories ul li {
    width: 100%;
}

.widget_pages nav ul li { overflow: hidden; }

.widget_nav_menu ul li a,
.widget_pages ul li a,
.widget_archive ul li a,
.widget_product_categories ul li a,
.widget_categories ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--pco-text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.widget_nav_menu ul li a:hover,
.widget_pages ul li a:hover,
.widget_archive ul li a:hover,
.widget_product_categories ul li a:hover,
.widget_categories ul li a:hover {
    color: var(--pco-primary-color);
    background-color: color-mix(in srgb, var(--pco-primary-color) 6%, transparent);
}

.widget_nav_menu ul li a::before,
.widget_pages ul li a::before,
.widget_archive ul li a::before,
.widget_product_categories ul li a::before,
.widget_categories ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pco-border-color);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.widget_nav_menu ul li a:hover::before,
.widget_pages ul li a:hover::before,
.widget_archive ul li a:hover::before,
.widget_product_categories ul li a:hover::before,
.widget_categories ul li a:hover::before {
    background: var(--pco-primary-color);
    transform: scale(1.4);
}

.widget_nav_menu ul li .post-count,
.widget_pages ul li .post-count,
.widget_archive ul li .post-count,
.widget_product_categories ul li .post-count,
.widget_categories ul li .post-count {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--pco-text-color);
    background: var(--pco-surface-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 99px;
    padding: 1px 8px;
    line-height: 1.6;
}

/* Tag cloud */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tagcloud a {
    font-size: 13px !important;
    line-height: 1;
    padding: 6px 14px;
    color: var(--pco-text-color);
    background: var(--pco-surface-color);
    border: 1px solid var(--pco-border-color);
    border-radius: 99px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.tagcloud a:hover {
    color: var(--pco-white-color);
    background-color: var(--pco-primary-color);
    border-color: var(--pco-primary-color);
}

.footer_area .tagcloud a:hover { color: #fff; }

/* Calendar widget */
.calendar_wrap .wp-calendar-nav {
    display: flex;
    justify-content: space-between;
}

.wp-calendar-table {
    font-size: 14px;
    width: 100%;
}

.wp-calendar-table td,
.wp-calendar-table th {
    padding: 8px 4px;
    font-size: 13px;
    text-align: center;
    background-color: transparent;
}

.calendar_wrap .wp-calendar-table {
    margin-bottom: 0;
    text-align: center;
}

.calendar_wrap .wp-calendar-table caption {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.widget_calendar #today {
    background-color: var(--pco-primary-color);
    border-radius: 6px;
    color: #fff;
}

.widget_calendar #today a { color: #fff; }

.widget_calendar .wp-calendar-nav a {
    font-size: 13px;
    color: var(--pco-text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget_calendar .wp-calendar-nav a:hover { color: var(--pco-primary-color); }

/* Social widget */
.widget_social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--pco-surface-color);
    color: var(--pco-primary-color);
    font-size: 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.widget_social a:hover { background: var(--pco-primary-color); color: #fff; }
.widget_social a i.fa-linkedin { color: #0072AC; }
.widget_social a i.fa-pinterest-square { color: #DA0021; }
.widget_social a i.fa-facebook-square { color: #0072AC; }
.widget_social a i.fa-twitter-square { color: #3AC4FF; }

/* Gallery */
.widget .gallery { margin-bottom: 0; }

/* Pullquote block */
.wp-block-pullquote blockquote { margin: 0; }


/*----- 17. Footer_Area_CSS -----*/
.footer_wrapper {
    background-color: #fff7f5;
}

.footer_area {
    position: relative;
    z-index: 1;
    background: var(--pco-surface-color) url('../images/footer-bg.png') no-repeat scroll center bottom / auto;
}

/*----- 00. Scroll to Down Button -----*/

.site-header__scroll .scroll-button {
    text-decoration: none;
}

.site-header__scroll .scroll-button:active {
    transform: scale(0.95);
}

.scroll-button i {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.site-header__scroll .scroll-button i {
    display: inline-block;
    -webkit-animation: upDown 1.5s ease-in-out infinite;
            animation: upDown 1.5s ease-in-out infinite;
}

/* Keyframes for up-down movement */
@-webkit-keyframes upDown {

    0%,
    100% {
        -webkit-transform: translateY(-4px);
                transform: translateY(-4px);
    }

    50% {
        -webkit-transform: translateY(4px);
                transform: translateY(4px);
        /* adjust the distance */
    }
}
@keyframes upDown {

    0%,
    100% {
        -webkit-transform: translateY(-4px);
                transform: translateY(-4px);
    }

    50% {
        -webkit-transform: translateY(4px);
                transform: translateY(4px);
        /* adjust the distance */
    }
}


/*----- 00. Scroll_To_Up -----*/
.progress-wrap {
    position: fixed;
    right: 15px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px var(--pco-surface-color);
    box-shadow: inset 0 0 0 2px var(--pco-surface-color);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
        transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: var(--pco-white-color);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--pco-primary-color);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    color: var(--pco-primary-color);
}

/*----- 19. Error_page -----*/
/* Not found page styles removed — using Tailwind CSS */

/*----- 20. Preloader -----*/
.preloader {
    width: 0;
    height: 0;
}

.preloader .loader {
    position: fixed;
    /* Fixed positioning to cover the entire screen */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999999;
    /* Ensuring it's on top of other elements */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* Centering content vertically */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* Centering content horizontally */
    background-color: white;
}

.preloader .loader .loader__svg {
    width: 100vw;
    height: 260px;
    /* filter: url(#fire); */
}

.preloader .loader .loader__text {
    font-size: 100px;
    fill: none;
    stroke: #386EEF;
    stroke-width: 3px;
    stroke-dasharray: 700;
    stroke-dashoffset: 1000;
    stroke-linejoin: round;
    stroke-linecap: round;
    -webkit-animation: preloader 10s linear alternate infinite;
            animation: preloader 10s linear alternate infinite;
}


@-webkit-keyframes preloader {
    to {
        stroke-dasharray: 500;
    }
}


@keyframes preloader {
    to {
        stroke-dasharray: 500;
    }
}

.preloader .smoke {
    width: 0;
    height: 0;
}

.preloader .spinner {
    border: 5px solid var(--pco-primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-left-color: transparent;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
    -webkit-box-shadow: 0 0 0 2px var(--pco-primary-color), inset 0 0 0 2px var(--pco-primary-color);
            box-shadow: 0 0 0 2px var(--pco-primary-color), inset 0 0 0 2px var(--pco-primary-color);
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

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

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

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







@-webkit-keyframes iconMove {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    30% {
        opacity: 0
    }

    31% {
        -webkit-transform: translateX(1.25rem);
        transform: translateX(1.25rem)
    }

    32% {
        -webkit-transform: translateX(-1.25rem);
        transform: translateX(-1.25rem)
    }

    84% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes iconMove {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    30% {
        opacity: 0
    }

    31% {
        -webkit-transform: translateX(1.25rem);
        transform: translateX(1.25rem)
    }

    32% {
        -webkit-transform: translateX(-1.25rem);
        transform: translateX(-1.25rem)
    }

    84% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

/* Single Post Hero Section */
.single_post-thumbnail {
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.single_post-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.single_post-thumbnail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: calc(var(--navbar-height) + 40px);
    padding-bottom: 50px;
}

/* Comment Reply Link Styling */
a.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--pco-primary-color);
    font-weight: 500;
    transition: opacity 200ms;
}

a.comment-reply-link:hover {
    opacity: 0.75;
}

/* Comment list spacing */
.comments-section ul.children {
    list-style: none;
    padding-left: 3.5rem;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ════════════════════════════════════════════════════════
   Toast Notifications — bottom-right stack
   ════════════════════════════════════════════════════════ */

#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse; /* newest toast at the bottom */
    gap: 10px;
    max-width: 380px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15),
                0 4px 10px -2px rgba(15, 23, 42, 0.08);
    pointer-events: auto;
    cursor: pointer;
    line-height: 1.45;
    word-break: break-word;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
    opacity: 0.85;
}

.toast i {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.2;
}

.toast span {
    flex: 1;
    color: #0f172a;
}

.toast-error         { color: #dc2626; background: #fff; }
.toast-error i       { color: #dc2626; }

.toast-success       { color: #16a34a; background: #fff; }
.toast-success i     { color: #16a34a; }

.toast-info          { color: #2563eb; background: #fff; }
.toast-info i        { color: #2563eb; }

.toast-warning       { color: #d97706; background: #fff; }
.toast-warning i     { color: #d97706; }

@media (max-width: 640px) {
    #toast-container {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }

    .toast {
        padding: 12px 14px;
        font-size: 13.5px;
        border-radius: 10px;
    }

    .toast i { font-size: 18px; }
}