@layer properties;
@layer theme, base, components, utilities;
@layer theme {
    :root,
    :host {
        --font-sans: "Inter", sans-serif;
        --font-serif: "Lora", serif;
        --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
            monospace;
        --color-white: #fff;
        --spacing: 0.25rem;
        --container-md: 28rem;
        --container-xl: 36rem;
        --container-3xl: 48rem;
        --container-7xl: 80rem;
        --text-xs: 0.75rem;
        --text-xs--line-height: calc(1 / 0.75);
        --text-sm: 0.875rem;
        --text-sm--line-height: calc(1.25 / 0.875);
        --text-base: 1rem;
        --text-base--line-height: calc(1.5 / 1);
        --text-lg: 1.125rem;
        --text-lg--line-height: calc(1.75 / 1.125);
        --text-xl: 1.25rem;
        --text-xl--line-height: calc(1.75 / 1.25);
        --text-2xl: 1.5rem;
        --text-2xl--line-height: calc(2 / 1.5);
        --text-3xl: 1.875rem;
        --text-3xl--line-height: calc(2.25 / 1.875);
        --text-4xl: 2.25rem;
        --text-4xl--line-height: calc(2.5 / 2.25);
        --text-5xl: 3rem;
        --text-5xl--line-height: 1;
        --text-6xl: 3.75rem;
        --text-6xl--line-height: 1;
        --font-weight-medium: 500;
        --font-weight-semibold: 600;
        --font-weight-bold: 700;
        --tracking-tight: -0.025em;
        --tracking-wide: 0.025em;
        --tracking-widest: 0.1em;
        --leading-tight: 1.25;
        --leading-relaxed: 1.625;
        --radius-md: 0.375rem;
        --radius-lg: 0.5rem;
        --radius-2xl: 1rem;
        --blur-md: 12px;
        --blur-3xl: 64px;
        --default-transition-duration: 150ms;
        --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        --default-font-family: var(--font-sans);
        --default-mono-font-family: var(--font-mono);
        --color-brand-dark: #592538;
        --color-brand-light: #8C3F63;
        --color-brand-accent: #8A4233;
        --color-brand-sand: #F2EBE5;
        --color-brand-cream: #F2F0F0;
    }
}
@layer base {
    *,
    ::after,
    ::before,
    ::backdrop,
    ::file-selector-button {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        border: 0 solid;
    }
    html,
    :host {
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        tab-size: 4;
        font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
        font-feature-settings: var(--default-font-feature-settings, normal);
        font-variation-settings: var(--default-font-variation-settings, normal);
        -webkit-tap-highlight-color: transparent;
    }
    hr {
        height: 0;
        color: inherit;
        border-top-width: 1px;
    }
    abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: inherit;
        font-weight: inherit;
    }
    a {
        color: inherit;
        -webkit-text-decoration: inherit;
        text-decoration: inherit;
    }
    b,
    strong {
        font-weight: bolder;
    }
    code,
    kbd,
    samp,
    pre {
        font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
        font-feature-settings: var(--default-mono-font-feature-settings, normal);
        font-variation-settings: var(--default-mono-font-variation-settings, normal);
        font-size: 1em;
    }
    small {
        font-size: 80%;
    }
    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }
    sub {
        bottom: -0.25em;
    }
    sup {
        top: -0.5em;
    }
    table {
        text-indent: 0;
        border-color: inherit;
        border-collapse: collapse;
    }
    :-moz-focusring {
        outline: auto;
    }
    progress {
        vertical-align: baseline;
    }
    summary {
        display: list-item;
    }
    ol,
    ul,
    menu {
        list-style: none;
    }
    img,
    svg,
    video,
    canvas,
    audio,
    iframe,
    embed,
    object {
        display: block;
        vertical-align: middle;
    }
    img,
    video {
        max-width: 100%;
        height: auto;
    }
    button,
    input,
    select,
    optgroup,
    textarea,
    ::file-selector-button {
        font: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        letter-spacing: inherit;
        color: inherit;
        border-radius: 0;
        background-color: transparent;
        opacity: 1;
    }
    :where(select:is([multiple], [size])) optgroup {
        font-weight: bolder;
    }
    :where(select:is([multiple], [size])) optgroup option {
        padding-inline-start: 20px;
    }
    ::file-selector-button {
        margin-inline-end: 4px;
    }
    ::placeholder {
        opacity: 1;
    }
    @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
        ::placeholder {
            color: currentcolor;
            @supports (color: color-mix(in lab, red, red)) {
                color: color-mix(in oklab, currentcolor 50%, transparent);
            }
        }
    }
    textarea {
        resize: vertical;
    }
    ::-webkit-search-decoration {
        -webkit-appearance: none;
    }
    ::-webkit-date-and-time-value {
        min-height: 1lh;
        text-align: inherit;
    }
    ::-webkit-datetime-edit {
        display: inline-flex;
    }
    ::-webkit-datetime-edit-fields-wrapper {
        padding: 0;
    }
    ::-webkit-datetime-edit,
    ::-webkit-datetime-edit-year-field,
    ::-webkit-datetime-edit-month-field,
    ::-webkit-datetime-edit-day-field,
    ::-webkit-datetime-edit-hour-field,
    ::-webkit-datetime-edit-minute-field,
    ::-webkit-datetime-edit-second-field,
    ::-webkit-datetime-edit-millisecond-field,
    ::-webkit-datetime-edit-meridiem-field {
        padding-block: 0;
    }
    ::-webkit-calendar-picker-indicator {
        line-height: 1;
    }
    :-moz-ui-invalid {
        box-shadow: none;
    }
    button,
    input:where([type='button'], [type='reset'], [type='submit']),
    ::file-selector-button {
        appearance: button;
    }
    ::-webkit-inner-spin-button,
    ::-webkit-outer-spin-button {
        height: auto;
    }
    [hidden]:where(:not([hidden='until-found'])) {
        display: none !important;
    }
}
@layer utilities {
    .pointer-events-none {
        pointer-events: none;
    }
    .absolute {
        position: absolute;
    }
    .fixed {
        position: fixed;
    }
    .relative {
        position: relative;
    }
    .-inset-4 {
        inset: calc(var(--spacing) * -4);
    }
    .inset-0 {
        inset: calc(var(--spacing) * 0);
    }
    .top-0 {
        top: calc(var(--spacing) * 0);
    }
    .top-1\/2 {
        top: calc(1 / 2 * 100%);
    }
    .top-\[-20\%\] {
        top: -20%;
    }
    .right-\[-10\%\] {
        right: -10%;
    }
    .left-0 {
        left: calc(var(--spacing) * 0);
    }
    .left-1\/2 {
        left: calc(1 / 2 * 100%);
    }
    .z-0 {
        z-index: 0;
    }
    .z-10 {
        z-index: 10;
    }
    .z-50 {
        z-index: 50;
    }
    .mx-auto {
        margin-inline: auto;
    }
    .-mt-8 {
        margin-top: calc(var(--spacing) * -8);
    }
    .mt-10 {
        margin-top: calc(var(--spacing) * 10);
    }
    .mt-auto {
        margin-top: auto;
    }
    .mb-2 {
        margin-bottom: calc(var(--spacing) * 2);
    }
    .mb-3 {
        margin-bottom: calc(var(--spacing) * 3);
    }
    .mb-4 {
        margin-bottom: calc(var(--spacing) * 4);
    }
    .mb-6 {
        margin-bottom: calc(var(--spacing) * 6);
    }
    .mb-8 {
        margin-bottom: calc(var(--spacing) * 8);
    }
    .mb-10 {
        margin-bottom: calc(var(--spacing) * 10);
    }
    .mb-12 {
        margin-bottom: calc(var(--spacing) * 12);
    }
    .mb-16 {
        margin-bottom: calc(var(--spacing) * 16);
    }
    .ml-2 {
        margin-left: calc(var(--spacing) * 2);
    }
    .block {
        display: block;
    }
    .flex {
        display: flex;
    }
    .grid {
        display: grid;
    }
    .hidden {
        display: none;
    }
    .inline-flex {
        display: inline-flex;
    }
    .h-1\.5 {
        height: calc(var(--spacing) * 1.5);
    }
    .h-10 {
        height: calc(var(--spacing) * 10);
    }
    .h-12 {
        height: calc(var(--spacing) * 12);
    }
    .h-20 {
        height: calc(var(--spacing) * 20);
    }
    .h-24 {
        height: calc(var(--spacing) * 24);
    }
    .h-\[80\%\] {
        height: 80%;
    }
    .h-\[150\%\] {
        height: 150%;
    }
    .h-\[400px\] {
        height: 400px;
    }
    .h-full {
        height: 100%;
    }
    .min-h-\[90vh\] {
        min-height: 90vh;
    }
    .min-h-\[200px\] {
        min-height: 200px;
    }
    .w-10 {
        width: calc(var(--spacing) * 10);
    }
    .w-12 {
        width: calc(var(--spacing) * 12);
    }
    .w-20 {
        width: calc(var(--spacing) * 20);
    }
    .w-24 {
        width: calc(var(--spacing) * 24);
    }
    .w-\[50\%\] {
        width: 50%;
    }
    .w-\[80\%\] {
        width: 80%;
    }
    .w-full {
        width: 100%;
    }
    .max-w-3xl {
        max-width: var(--container-3xl);
    }
    .max-w-7xl {
        max-width: var(--container-7xl);
    }
    .max-w-\[500px\] {
        max-width: 500px;
    }
    .max-w-md {
        max-width: var(--container-md);
    }
    .max-w-xl {
        max-width: var(--container-xl);
    }
    .flex-none {
        flex: none;
    }
    .shrink-0 {
        flex-shrink: 0;
    }
    .-translate-x-1\/2 {
        --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
        translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .-translate-y-1\/2 {
        --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
        translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .-rotate-3 {
        rotate: calc(3deg * -1);
    }
    .transform {
        transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
    }
    .cursor-pointer {
        cursor: pointer;
    }
    .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .flex-col {
        flex-direction: column;
    }
    .items-center {
        align-items: center;
    }
    .items-end {
        align-items: flex-end;
    }
    .items-start {
        align-items: flex-start;
    }
    .justify-between {
        justify-content: space-between;
    }
    .justify-center {
        justify-content: center;
    }
    .justify-end {
        justify-content: flex-end;
    }
    .gap-1 {
        gap: calc(var(--spacing) * 1);
    }
    .gap-2 {
        gap: calc(var(--spacing) * 2);
    }
    .gap-3 {
        gap: calc(var(--spacing) * 3);
    }
    .gap-4 {
        gap: calc(var(--spacing) * 4);
    }
    .gap-6 {
        gap: calc(var(--spacing) * 6);
    }
    .gap-8 {
        gap: calc(var(--spacing) * 8);
    }
    .gap-10 {
        gap: calc(var(--spacing) * 10);
    }
    .gap-12 {
        gap: calc(var(--spacing) * 12);
    }
    .gap-16 {
        gap: calc(var(--spacing) * 16);
    }
    .space-y-3 {
        :where(& > :not(:last-child)) {
            --tw-space-y-reverse: 0;
            margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
            margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
        }
    }
    .space-y-4 {
        :where(& > :not(:last-child)) {
            --tw-space-y-reverse: 0;
            margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
            margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
        }
    }
    .overflow-hidden {
        overflow: hidden;
    }
    .rounded {
        border-radius: 0.25rem;
    }
    .rounded-2xl {
        border-radius: var(--radius-2xl);
    }
    .rounded-\[1\.5rem\] {
        border-radius: 1.5rem;
    }
    .rounded-\[2rem\] {
        border-radius: 2rem;
    }
    .rounded-full {
        border-radius: calc(infinity * 1px);
    }
    .rounded-lg {
        border-radius: var(--radius-lg);
    }
    .rounded-md {
        border-radius: var(--radius-md);
    }
    .rounded-tl-full {
        border-top-left-radius: calc(infinity * 1px);
    }
    .rounded-tr-full {
        border-top-right-radius: calc(infinity * 1px);
    }
    .border {
        border-style: var(--tw-border-style);
        border-width: 1px;
    }
    .border-2 {
        border-style: var(--tw-border-style);
        border-width: 2px;
    }
    .border-4 {
        border-style: var(--tw-border-style);
        border-width: 4px;
    }
    .border-8 {
        border-style: var(--tw-border-style);
        border-width: 8px;
    }
    .border-t {
        border-top-style: var(--tw-border-style);
        border-top-width: 1px;
    }
    .border-t-4 {
        border-top-style: var(--tw-border-style);
        border-top-width: 4px;
    }
    .border-b {
        border-bottom-style: var(--tw-border-style);
        border-bottom-width: 1px;
    }
    .border-b-0 {
        border-bottom-style: var(--tw-border-style);
        border-bottom-width: 0px;
    }
    .border-brand-dark {
        border-color: var(--color-brand-dark);
    }
    .border-brand-light {
        border-color: var(--color-brand-light);
    }
    .border-brand-sand {
        border-color: var(--color-brand-sand);
    }
    .border-white {
        border-color: var(--color-white);
    }
    .border-white\/10 {
        border-color: color-mix(in srgb, #fff 10%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            border-color: color-mix(in oklab, var(--color-white) 10%, transparent);
        }
    }
    .bg-brand-accent {
        background-color: var(--color-brand-accent);
    }
    .bg-brand-accent\/10 {
        background-color: color-mix(in srgb, #8A4233 10%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-brand-accent) 10%, transparent);
        }
    }
    .bg-brand-accent\/20 {
        background-color: color-mix(in srgb, #8A4233 20%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-brand-accent) 20%, transparent);
        }
    }
    .bg-brand-cream {
        background-color: var(--color-brand-cream);
    }
    .bg-brand-dark {
        background-color: var(--color-brand-dark);
    }
    .bg-brand-dark\/10 {
        background-color: color-mix(in srgb, #592538 10%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-brand-dark) 10%, transparent);
        }
    }
    .bg-brand-dark\/20 {
        background-color: color-mix(in srgb, #592538 20%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-brand-dark) 20%, transparent);
        }
    }
    .bg-brand-light {
        background-color: var(--color-brand-light);
    }
    .bg-brand-light\/10 {
        background-color: color-mix(in srgb, #8C3F63 10%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-brand-light) 10%, transparent);
        }
    }
    .bg-brand-light\/20 {
        background-color: color-mix(in srgb, #8C3F63 20%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-brand-light) 20%, transparent);
        }
    }
    .bg-brand-sand {
        background-color: var(--color-brand-sand);
    }
    .bg-white {
        background-color: var(--color-white);
    }
    .bg-white\/10 {
        background-color: color-mix(in srgb, #fff 10%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
        }
    }
    .bg-white\/95 {
        background-color: color-mix(in srgb, #fff 95%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-white) 95%, transparent);
        }
    }
    .object-cover {
        object-fit: cover;
    }
    .object-top {
        object-position: top;
    }
    .p-2 {
        padding: calc(var(--spacing) * 2);
    }
    .p-8 {
        padding: calc(var(--spacing) * 8);
    }
    .px-2 {
        padding-inline: calc(var(--spacing) * 2);
    }
    .px-4 {
        padding-inline: calc(var(--spacing) * 4);
    }
    .px-6 {
        padding-inline: calc(var(--spacing) * 6);
    }
    .px-10 {
        padding-inline: calc(var(--spacing) * 10);
    }
    .py-1 {
        padding-block: calc(var(--spacing) * 1);
    }
    .py-2\.5 {
        padding-block: calc(var(--spacing) * 2.5);
    }
    .py-3 {
        padding-block: calc(var(--spacing) * 3);
    }
    .py-4 {
        padding-block: calc(var(--spacing) * 4);
    }
    .py-12 {
        padding-block: calc(var(--spacing) * 12);
    }
    .py-24 {
        padding-block: calc(var(--spacing) * 24);
    }
    .pt-2 {
        padding-top: calc(var(--spacing) * 2);
    }
    .pt-8 {
        padding-top: calc(var(--spacing) * 8);
    }
    .pt-16 {
        padding-top: calc(var(--spacing) * 16);
    }
    .pt-32 {
        padding-top: calc(var(--spacing) * 32);
    }
    .pb-8 {
        padding-bottom: calc(var(--spacing) * 8);
    }
    .pb-12 {
        padding-bottom: calc(var(--spacing) * 12);
    }
    .text-center {
        text-align: center;
    }
    .font-sans {
        font-family: var(--font-sans);
    }
    .font-serif {
        font-family: var(--font-serif);
    }
    .text-2xl {
        font-size: var(--text-2xl);
        line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
    .text-3xl {
        font-size: var(--text-3xl);
        line-height: var(--tw-leading, var(--text-3xl--line-height));
    }
    .text-4xl {
        font-size: var(--text-4xl);
        line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
    .text-5xl {
        font-size: var(--text-5xl);
        line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
    .text-base {
        font-size: var(--text-base);
        line-height: var(--tw-leading, var(--text-base--line-height));
    }
    .text-lg {
        font-size: var(--text-lg);
        line-height: var(--tw-leading, var(--text-lg--line-height));
    }
    .text-sm {
        font-size: var(--text-sm);
        line-height: var(--tw-leading, var(--text-sm--line-height));
    }
    .text-xl {
        font-size: var(--text-xl);
        line-height: var(--tw-leading, var(--text-xl--line-height));
    }
    .text-xs {
        font-size: var(--text-xs);
        line-height: var(--tw-leading, var(--text-xs--line-height));
    }
    .leading-\[1\.05\] {
        --tw-leading: 1.05;
        line-height: 1.05;
    }
    .leading-relaxed {
        --tw-leading: var(--leading-relaxed);
        line-height: var(--leading-relaxed);
    }
    .leading-tight {
        --tw-leading: var(--leading-tight);
        line-height: var(--leading-tight);
    }
    .font-bold {
        --tw-font-weight: var(--font-weight-bold);
        font-weight: var(--font-weight-bold);
    }
    .font-medium {
        --tw-font-weight: var(--font-weight-medium);
        font-weight: var(--font-weight-medium);
    }
    .font-semibold {
        --tw-font-weight: var(--font-weight-semibold);
        font-weight: var(--font-weight-semibold);
    }
    .tracking-tight {
        --tw-tracking: var(--tracking-tight);
        letter-spacing: var(--tracking-tight);
    }
    .tracking-wide {
        --tw-tracking: var(--tracking-wide);
        letter-spacing: var(--tracking-wide);
    }
    .tracking-widest {
        --tw-tracking: var(--tracking-widest);
        letter-spacing: var(--tracking-widest);
    }
    .whitespace-nowrap {
        white-space: nowrap;
    }
    .text-brand-accent {
        color: var(--color-brand-accent);
    }
    .text-brand-dark {
        color: var(--color-brand-dark);
    }
    .text-brand-dark\/60 {
        color: color-mix(in srgb, #592538 60%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            color: color-mix(in oklab, var(--color-brand-dark) 60%, transparent);
        }
    }
    .text-brand-dark\/70 {
        color: color-mix(in srgb, #592538 70%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            color: color-mix(in oklab, var(--color-brand-dark) 70%, transparent);
        }
    }
    .text-brand-dark\/80 {
        color: color-mix(in srgb, #592538 80%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            color: color-mix(in oklab, var(--color-brand-dark) 80%, transparent);
        }
    }
    .text-brand-light {
        color: var(--color-brand-light);
    }
    .text-brand-sand {
        color: var(--color-brand-sand);
    }
    .text-brand-sand\/80 {
        color: color-mix(in srgb, #F2EBE5 80%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            color: color-mix(in oklab, var(--color-brand-sand) 80%, transparent);
        }
    }
    .text-white {
        color: var(--color-white);
    }
    .text-white\/80 {
        color: color-mix(in srgb, #fff 80%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
            color: color-mix(in oklab, var(--color-white) 80%, transparent);
        }
    }
    .uppercase {
        text-transform: uppercase;
    }
    .opacity-10 {
        opacity: 10%;
    }
    .opacity-60 {
        opacity: 60%;
    }
    .opacity-80 {
        opacity: 80%;
    }
    .mix-blend-multiply {
        mix-blend-mode: multiply;
    }
    .shadow-2xl {
        --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-floating {
        --tw-shadow: 0 15px 35px -5px var(--tw-shadow-color, rgba(89, 37, 56, 0.15));
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-lg {
        --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-sm {
        --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .blur-3xl {
        --tw-blur: blur(var(--blur-3xl));
        filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
    }
    .backdrop-blur-md {
        --tw-backdrop-blur: blur(var(--blur-md));
        -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
        backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    }
    .transition-all {
        transition-property: all;
        transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
        transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .transition-colors {
        transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
        transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
        transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .transition-shadow {
        transition-property: box-shadow;
        transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
        transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .duration-200 {
        --tw-duration: 200ms;
        transition-duration: 200ms;
    }
    .duration-300 {
        --tw-duration: 300ms;
        transition-duration: 300ms;
    }
    .group-hover\:bg-brand-light {
        &:is(:where(.group):hover *) {
            @media (hover: hover) {
                background-color: var(--color-brand-light);
            }
        }
    }
    .group-hover\:text-white {
        &:is(:where(.group):hover *) {
            @media (hover: hover) {
                color: var(--color-white);
            }
        }
    }
    .hover\:-translate-y-0\.5 {
        &:hover {
            @media (hover: hover) {
                --tw-translate-y: calc(var(--spacing) * -0.5);
                translate: var(--tw-translate-x) var(--tw-translate-y);
            }
        }
    }
    .hover\:bg-brand-dark {
        &:hover {
            @media (hover: hover) {
                background-color: var(--color-brand-dark);
            }
        }
    }
    .hover\:bg-brand-light {
        &:hover {
            @media (hover: hover) {
                background-color: var(--color-brand-light);
            }
        }
    }
    .hover\:bg-brand-sand {
        &:hover {
            @media (hover: hover) {
                background-color: var(--color-brand-sand);
            }
        }
    }
    .hover\:text-brand-dark {
        &:hover {
            @media (hover: hover) {
                color: var(--color-brand-dark);
            }
        }
    }
    .hover\:text-brand-light {
        &:hover {
            @media (hover: hover) {
                color: var(--color-brand-light);
            }
        }
    }
    .hover\:text-white {
        &:hover {
            @media (hover: hover) {
                color: var(--color-white);
            }
        }
    }
    .hover\:shadow-floating {
        &:hover {
            @media (hover: hover) {
                --tw-shadow: 0 15px 35px -5px var(--tw-shadow-color, rgba(89, 37, 56, 0.15));
                box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
            }
        }
    }
    .hover\:shadow-lg {
        &:hover {
            @media (hover: hover) {
                --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
                box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
            }
        }
    }
    .hover\:shadow-soft {
        &:hover {
            @media (hover: hover) {
                --tw-shadow: 0 4px 25px -5px var(--tw-shadow-color, rgba(89, 37, 56, 0.08));
                box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
            }
        }
    }
    .focus\:outline-none {
        &:focus {
            --tw-outline-style: none;
            outline-style: none;
        }
    }
    .sm\:w-2\/5 {
        @media (width >=40rem) {
            width: calc(2 / 5 * 100%);
        }
    }
    .sm\:w-3\/5 {
        @media (width >=40rem) {
            width: calc(3 / 5 * 100%);
        }
    }
    .sm\:flex-row {
        @media (width >=40rem) {
            flex-direction: row;
        }
    }
    .sm\:px-6 {
        @media (width >=40rem) {
            padding-inline: calc(var(--spacing) * 6);
        }
    }
    .sm\:text-4xl {
        @media (width >=40rem) {
            font-size: var(--text-4xl);
            line-height: var(--tw-leading, var(--text-4xl--line-height));
        }
    }
    .sm\:text-6xl {
        @media (width >=40rem) {
            font-size: var(--text-6xl);
            line-height: var(--tw-leading, var(--text-6xl--line-height));
        }
    }
    .md\:mt-0 {
        @media (width >=48rem) {
            margin-top: calc(var(--spacing) * 0);
        }
    }
    .md\:flex {
        @media (width >=48rem) {
            display: flex;
        }
    }
    .md\:hidden {
        @media (width >=48rem) {
            display: none;
        }
    }
    .md\:grid-cols-2 {
        @media (width >=48rem) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    .md\:grid-cols-3 {
        @media (width >=48rem) {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    .md\:flex-row {
        @media (width >=48rem) {
            flex-direction: row;
        }
    }
    .md\:text-5xl {
        @media (width >=48rem) {
            font-size: var(--text-5xl);
            line-height: var(--tw-leading, var(--text-5xl--line-height));
        }
    }
    .lg\:col-span-6 {
        @media (width >=64rem) {
            grid-column: span 6 / span 6;
        }
    }
    .lg\:mr-0 {
        @media (width >=64rem) {
            margin-right: calc(var(--spacing) * 0);
        }
    }
    .lg\:ml-auto {
        @media (width >=64rem) {
            margin-left: auto;
        }
    }
    .lg\:h-\[600px\] {
        @media (width >=64rem) {
            height: 600px;
        }
    }
    .lg\:grid-cols-2 {
        @media (width >=64rem) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    .lg\:grid-cols-4 {
        @media (width >=64rem) {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }
    .lg\:grid-cols-12 {
        @media (width >=64rem) {
            grid-template-columns: repeat(12, minmax(0, 1fr));
        }
    }
    .lg\:px-8 {
        @media (width >=64rem) {
            padding-inline: calc(var(--spacing) * 8);
        }
    }
    .lg\:py-0 {
        @media (width >=64rem) {
            padding-block: calc(var(--spacing) * 0);
        }
    }
    .lg\:text-\[4\.2rem\] {
        @media (width >=64rem) {
            font-size: 4.2rem;
        }
    }
}
body {
    scroll-behavior: smooth;
}
.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.editor-styles-wrapper .wp-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.editor-styles-wrapper .is-layout-flow>*+* {
    margin-block-start: 0 !important;
}
.wp-site-blocks>*+* {
    margin-block-start: 0 !important;
}
main>section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.editor-styles-wrapper {
    gap: 0 !important;
}
.wp-block-navigation__container,
.wp-block-navigation,
ul.wp-block-navigation-item__content {
    gap: 2rem !important;
}
.wp-block-navigation .wp-block-navigation-item__content,
.wp-block-navigation .wp-block-navigation-item__label,
.wp-block-navigation-item a {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: var(--color-brand-dark) !important;
    transition-property: color;
    transition-duration: 200ms;
}
.wp-block-navigation .wp-block-navigation-item__content:hover,
.wp-block-navigation .wp-block-navigation-item__label:hover,
.wp-block-navigation-item a:hover {
    color: var(--color-brand-light) !important;
}
@property --tw-translate-x {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}
@property --tw-translate-y {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}
@property --tw-translate-z {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}
@property --tw-rotate-x {
    syntax: "*";
    inherits: false;
}
@property --tw-rotate-y {
    syntax: "*";
    inherits: false;
}
@property --tw-rotate-z {
    syntax: "*";
    inherits: false;
}
@property --tw-skew-x {
    syntax: "*";
    inherits: false;
}
@property --tw-skew-y {
    syntax: "*";
    inherits: false;
}
@property --tw-space-y-reverse {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}
@property --tw-border-style {
    syntax: "*";
    inherits: false;
    initial-value: solid;
}
@property --tw-leading {
    syntax: "*";
    inherits: false;
}
@property --tw-font-weight {
    syntax: "*";
    inherits: false;
}
@property --tw-tracking {
    syntax: "*";
    inherits: false;
}
@property --tw-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
    syntax: "*";
    inherits: false;
}
@property --tw-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}
@property --tw-inset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
    syntax: "*";
    inherits: false;
}
@property --tw-inset-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}
@property --tw-ring-color {
    syntax: "*";
    inherits: false;
}
@property --tw-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
    syntax: "*";
    inherits: false;
}
@property --tw-inset-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
    syntax: "*";
    inherits: false;
}
@property --tw-ring-offset-width {
    syntax: "<length>";
    inherits: false;
    initial-value: 0px;
}
@property --tw-ring-offset-color {
    syntax: "*";
    inherits: false;
    initial-value: #fff;
}
@property --tw-ring-offset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-blur {
    syntax: "*";
    inherits: false;
}
@property --tw-brightness {
    syntax: "*";
    inherits: false;
}
@property --tw-contrast {
    syntax: "*";
    inherits: false;
}
@property --tw-grayscale {
    syntax: "*";
    inherits: false;
}
@property --tw-hue-rotate {
    syntax: "*";
    inherits: false;
}
@property --tw-invert {
    syntax: "*";
    inherits: false;
}
@property --tw-opacity {
    syntax: "*";
    inherits: false;
}
@property --tw-saturate {
    syntax: "*";
    inherits: false;
}
@property --tw-sepia {
    syntax: "*";
    inherits: false;
}
@property --tw-drop-shadow {
    syntax: "*";
    inherits: false;
}
@property --tw-drop-shadow-color {
    syntax: "*";
    inherits: false;
}
@property --tw-drop-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}
@property --tw-drop-shadow-size {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-blur {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-brightness {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-contrast {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-grayscale {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-hue-rotate {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-invert {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-opacity {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-saturate {
    syntax: "*";
    inherits: false;
}
@property --tw-backdrop-sepia {
    syntax: "*";
    inherits: false;
}
@property --tw-duration {
    syntax: "*";
    inherits: false;
}
@layer properties {
    @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
        *,
        ::before,
        ::after,
        ::backdrop {
            --tw-translate-x: 0;
            --tw-translate-y: 0;
            --tw-translate-z: 0;
            --tw-rotate-x: initial;
            --tw-rotate-y: initial;
            --tw-rotate-z: initial;
            --tw-skew-x: initial;
            --tw-skew-y: initial;
            --tw-space-y-reverse: 0;
            --tw-border-style: solid;
            --tw-leading: initial;
            --tw-font-weight: initial;
            --tw-tracking: initial;
            --tw-shadow: 0 0 #0000;
            --tw-shadow-color: initial;
            --tw-shadow-alpha: 100%;
            --tw-inset-shadow: 0 0 #0000;
            --tw-inset-shadow-color: initial;
            --tw-inset-shadow-alpha: 100%;
            --tw-ring-color: initial;
            --tw-ring-shadow: 0 0 #0000;
            --tw-inset-ring-color: initial;
            --tw-inset-ring-shadow: 0 0 #0000;
            --tw-ring-inset: initial;
            --tw-ring-offset-width: 0px;
            --tw-ring-offset-color: #fff;
            --tw-ring-offset-shadow: 0 0 #0000;
            --tw-blur: initial;
            --tw-brightness: initial;
            --tw-contrast: initial;
            --tw-grayscale: initial;
            --tw-hue-rotate: initial;
            --tw-invert: initial;
            --tw-opacity: initial;
            --tw-saturate: initial;
            --tw-sepia: initial;
            --tw-drop-shadow: initial;
            --tw-drop-shadow-color: initial;
            --tw-drop-shadow-alpha: 100%;
            --tw-drop-shadow-size: initial;
            --tw-backdrop-blur: initial;
            --tw-backdrop-brightness: initial;
            --tw-backdrop-contrast: initial;
            --tw-backdrop-grayscale: initial;
            --tw-backdrop-hue-rotate: initial;
            --tw-backdrop-invert: initial;
            --tw-backdrop-opacity: initial;
            --tw-backdrop-saturate: initial;
            --tw-backdrop-sepia: initial;
            --tw-duration: initial;
        }
    }
}
.ec-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}
.ec-btn-wrapper {
    display: none;
}
@media (min-width: 768px) {
    .ec-btn-wrapper {
        display: flex;
        align-items: center;
    }
}
.ec-btn-acceso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: white !important;
    background-color: var(--color-brand-light);
    border-radius: 9999px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    line-height: normal;
    border: none;
    vertical-align: middle;
}
.ec-btn-acceso:hover {
    background-color: var(--color-brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.ec-mobile-toggle-wrapper {
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .ec-mobile-toggle-wrapper {
        display: none;
    }
}
.ec-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-dark) !important;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}
.ec-mobile-toggle:hover {
    color: var(--color-brand-light);
}
.ec-header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ec-cart-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-brand-dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    position: relative;
}
.ec-cart-link:hover {
    background-color: var(--color-brand-cream);
    color: var(--color-brand-light) !important;
    transform: translateY(-1px);
}
.ec-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-brand-accent);
    color: white !important;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    line-height: 1;
    z-index: 10;
}
.tutor-page-success .group:hover .shadow-sm {
    transform: scale(1.05);
}
.ec-cart-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ec-cart-backdrop.is-visible {
    display: block;
    opacity: 1;
}
.ec-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 95vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.ec-cart-drawer.is-open {
    transform: translateX(0);
}
.ec-cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0e8e3;
    background-color: var(--color-brand-dark);
    color: white;
    flex-shrink: 0;
}
.ec-cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
}
.ec-cart-drawer-count {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.25rem;
}
.ec-cart-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.ec-cart-drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
.ec-cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ec-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background: var(--color-brand-cream);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}
.ec-mini-cart-item:hover {
    background: #ede4df;
}
.ec-mini-cart-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 52px;
    border-radius: 0.5rem;
    overflow: hidden;
    display: block;
}
.ec-mini-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ec-mini-cart-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.ec-mini-cart-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-brand-dark);
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.ec-mini-cart-title:hover {
    color: var(--color-brand-light);
}
.ec-mini-cart-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-brand-accent);
}
.ec-mini-cart-remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid #e5d8d1;
    border-radius: 50%;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.ec-mini-cart-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #ef4444;
}
.ec-mini-cart-remove:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ec-cart-drawer-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    color: #9ca3af;
}
.ec-cart-drawer-empty p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}
.ec-cart-drawer-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f0e8e3;
    flex-shrink: 0;
    background: white;
}
.ec-cart-drawer-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--color-brand-dark);
    color: white !important;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none !important;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    line-height: normal;
    border: none;
}
.ec-cart-drawer-checkout:hover {
    background: var(--color-brand-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(89, 37, 56, 0.25);
}
.ec-cart-drawer-content::-webkit-scrollbar {
    width: 4px;
}
.ec-cart-drawer-content::-webkit-scrollbar-track {
    background: transparent;
}
.ec-cart-drawer-content::-webkit-scrollbar-thumb {
    background: #e5d8d1;
    border-radius: 2px;
}
.ec-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-brand-dark);
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    padding: 0 1.5rem;
    border-radius: 9999px;
    min-height: 48px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ec-btn-primary:hover {
    background: var(--color-brand-light);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 37, 56, 0.3);
}
.ec-btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}
.ec-btn-primary:focus-visible {
    outline: 2px solid var(--color-brand-light);
    outline-offset: 2px;
}
.ec-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.ec-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-brand-light);
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    padding: 0 1.25rem;
    border-radius: 12px;
    min-height: 44px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.ec-btn-secondary:hover {
    background: var(--color-brand-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
}
.ec-btn-secondary:focus-visible {
    outline: 2px solid var(--color-brand-light);
    outline-offset: 2px;
}
.ec-btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.ec-btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-brand-accent);
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    padding: 0 1.25rem;
    border-radius: 12px;
    min-height: 44px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.ec-btn-accent:hover {
    background: var(--color-brand-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
}
.ec-btn-accent:focus-visible {
    outline: 2px solid var(--color-brand-accent);
    outline-offset: 2px;
}
.ec-btn-accent:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.ec-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-brand-dark) !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    padding: 0 1.25rem;
    border-radius: 12px;
    min-height: 44px;
    border: 2px solid var(--color-brand-dark);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.ec-btn-ghost:hover {
    background: var(--color-brand-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
}
.ec-btn-ghost:focus-visible {
    outline: 2px solid var(--color-brand-dark);
    outline-offset: 2px;
}
.ec-btn-ghost:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.ec-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-brand-dark);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
.ec-btn-icon:hover {
    background: rgba(89, 37, 56, 0.08);
    color: var(--color-brand-dark);
}
.ec-btn-icon:focus-visible {
    outline: 2px solid var(--color-brand-light);
    outline-offset: 2px;
}
.ec-catalog-wrap {
    background-color: var(--color-brand-sand);
    min-height: 100vh;
}
.ec-catalog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}
.ec-catalog-heading {
    margin-bottom: 2.5rem;
}
.ec-catalog-heading h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.ec-catalog-heading p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6d6d6d;
    max-width: 560px;
    line-height: 1.65;
}
.ec-filter-bar {
    background: #ffffff;
    border: 1px solid #e8e0db;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.ec-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.ec-filter-field label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #a0a0a0;
    text-transform: uppercase;
}
.ec-filter-field.ec-search {
    flex: 1;
    min-width: 220px;
}
.ec-search-wrapper {
    position: relative;
}
.ec-search-wrapper svg {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0a0;
}
.ec-search-wrapper input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 1px solid #e0d5cf;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #3d3d3d;
    background: #fafafa;
    outline: none;
    box-sizing: border-box;
}
.ec-search-wrapper input:focus {
    border-color: var(--color-brand-light);
    background: #ffffff;
}
.ec-filter-field select {
    padding: 0.65rem 2rem 0.65rem 0.85rem;
    border: 1px solid #e0d5cf;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #3d3d3d;
    background: #fafafa;
    appearance: none;
    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='%23a0a0a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    cursor: pointer;
    outline: none;
}
.ec-filter-field select:focus {
    border-color: var(--color-brand-light);
}
.ec-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #a0a0a0;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.ec-course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) {
    .ec-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 580px) {
    .ec-course-grid {
        grid-template-columns: 1fr;
    }
}
.ec-cta-banner {
    background-color: #ffffff;
    border: 1px solid #e8e0db;
    border-radius: 18px;
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto 5rem;
    max-width: 1200px;
    width: calc(100% - 4rem);
    flex-wrap: wrap;
    box-sizing: border-box;
}
@media (max-width: 1200px) {
    .ec-cta-banner {
        width: calc(100% - 4rem);
    }
}
.ec-cta-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.ec-cta-icon {
    width: 52px;
    height: 52px;
    background: var(--color-brand-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ec-cta-icon svg {
    color: #ffffff;
}
.ec-cta-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--color-brand-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.ec-cta-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6d6d6d;
}
.ec-cta-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ec-cta-right p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6d6d6d;
    max-width: 260px;
    line-height: 1.5;
}
.ec-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e0db;
    transition: box-shadow 0.25s, transform 0.2s;
}
.ec-card:hover {
    box-shadow: 0 8px 28px rgba(89, 37, 56, 0.1);
    transform: translateY(-3px);
}
.ec-card-thumb {
    position: relative;
    overflow: hidden;
    background: var(--color-brand-cream);
    aspect-ratio: 16/9;
}
.ec-card-thumb a {
    display: block;
    height: 100%;
}
.ec-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.ec-card:hover .ec-card-thumb img {
    transform: scale(1.04);
}
.ec-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ec-card-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: var(--color-brand-accent);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.ec-card-enrolled-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    background: var(--color-brand-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}
.ec-card-body {
    padding: 1.2rem 1.25rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ec-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3a3a3a;
    line-height: 1.3;
    margin: 0;
}
.ec-card-title a {
    text-decoration: none;
    color: inherit;
}
.ec-card-title a:hover {
    color: var(--color-brand-dark);
}
.ec-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6d6d6d;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.ec-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.75rem;
}
.ec-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #6d6d6d;
}
.ec-card-meta-item svg {
    flex-shrink: 0;
}
.ec-card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #f0ece9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.ec-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-brand-dark);
}
.ec-card-price small {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #a0a0a0;
    margin-left: 0.2rem;
}
.ec-card-free {
    font-size: 0.875rem;
    color: var(--color-brand-light);
}
.ec-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    padding: 0 1.25rem;
    border-radius: 12px;
    min-height: 44px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.ec-card-btn:hover {
    background: var(--color-brand-light);
    color: #ffffff;
    transform: translateY(-1px);
}
.ec-card-btn-enrolled {
    background: var(--color-brand-accent);
}
.ec-card-btn-enrolled:hover {
    background: var(--color-brand-dark);
}
.ec-course-page {
    background: var(--color-brand-sand);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}
.ec-course-hero {
    background: var(--color-brand-dark);
    color: #fff;
    padding: 5rem 0 3rem;
}
.ec-course-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 900px) {
    .ec-course-hero-inner {
        grid-template-columns: 1fr;
    }
    .ec-course-hero-media {
        order: -1;
    }
}
.ec-course-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(242, 235, 229, .6);
    margin-bottom: .75rem;
}
.ec-hero-grid .ec-course-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}
.ec-course-excerpt {
    font-size: 1rem;
    color: rgba(242, 235, 229, .8);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.ec-course-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
}
.ec-enroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-light);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 2.25rem;
    border-radius: 9999px;
    min-height: 48px;
    line-height: normal;
    text-decoration: none !important;
    transition: background .2s, box-shadow .2s, transform .2s;
    box-shadow: 0 4px 18px rgba(140, 63, 99, .35);
    border: none;
    cursor: pointer;
}
.ec-enroll-btn:hover {
    background: #7a3555;
    transform: translateY(-2px);
}
.ec-course-hero-media {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(0, 0, 0, .05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ec-course-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}
.ec-video-label {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    background: rgba(0, 0, 0, .55);
    color: rgba(255, 255, 255, .75);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .65rem;
    border-radius: .4rem;
}
.ec-meta-bar {
    background: #fff;
    border-bottom: 1px solid #e8ddd6;
    padding: .85rem 0;
}
.ec-meta-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.ec-meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--color-brand-dark);
}
.ec-meta-item strong {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: .08em;
    color: var(--color-brand-light);
    display: block;
}
.ec-meta-item span {
    font-size: .875rem;
    color: #444;
}
.ec-course-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.ec-section {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(89, 37, 56, .06);
}
.ec-section-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--color-brand-sand);
}
.ec-learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem .5rem;
}
@media (max-width: 600px) {
    .ec-learn-grid {
        grid-template-columns: 1fr;
    }
}
.ec-learn-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.55;
}
.ec-learn-item::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-brand-light);
    flex-shrink: 0;
    margin-top: .15rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
    background-size: cover;
}
.ec-experience-card {
    background: var(--color-brand-sand);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
}
.ec-experience-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-brand-dark);
    margin-bottom: .5rem;
}
.ec-experience-card p {
    font-size: 1rem;
    color: #7a6464;
    line-height: 1.65;
    margin-bottom: 2rem;
}
.ec-diff-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 600px) {
    .ec-diff-list {
        grid-template-columns: 1fr;
    }
}
.ec-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.ec-diff-icon {
    width: 48px;
    height: 48px;
    background: var(--color-brand-dark);
    border-radius: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ec-diff-icon svg,
.ec-diff-icon i {
    color: #fff;
    font-size: 1.5rem;
    display: block;
    flex-shrink: 0;
}
.ec-diff-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    margin-bottom: .2rem;
}
.ec-diff-text span {
    font-size: 0.875rem;
    color: #7a6464;
    line-height: 1.5;
}
.ec-instructor-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.ec-instructor-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-brand-sand);
}
.ec-instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ec-instructor-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-brand-dark);
    margin-bottom: .2rem;
}
.ec-instructor-bio {
    font-size: 0.875rem;
    color: #7a6464;
    line-height: 1.5;
}
.ec-faq-item {
    border: 1px solid #e8ddd6;
    border-radius: .65rem;
    margin-bottom: .65rem;
    overflow: hidden;
}
.ec-faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: .9rem 1.1rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}
.ec-faq-question:hover {
    background: #faf7f5;
}
.ec-faq-question .ec-faq-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform .2s;
}
.ec-faq-question[aria-expanded="true"] .ec-faq-icon {
    transform: rotate(45deg);
}
.ec-faq-answer {
    display: none;
    padding: 0 1.1rem .9rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}
.ec-faq-answer.is-open {
    display: block;
}
.ec-cta-bar {
    background: var(--color-brand-light);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(140, 63, 99, .28);
}
.ec-cta-bar p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.ec-course-body .tutor-course-details-tab .tutor-tab {
    padding-top: 0 !important;
}
.ec-course-body .tutor-is-sticky {
    position: static !important;
    top: auto !important;
}
.ec-dashboard-wrap {
    min-height: 100vh;
    background: var(--color-brand-sand);
    font-family: 'Inter', sans-serif;
}
.ec-dashboard-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    gap: 2rem;
}
@media (max-width: 768px) {
    .ec-dashboard-inner {
        grid-template-columns: 1fr;
    }
    .ec-sidebar {
        display: flex !important;
        position: static !important;
        width: 100%;
        margin-bottom: 2rem;
        z-index: 10;
    }
    .ec-sidebar.is-open {
        display: flex;
    }
}
.ec-sidebar {
    background: var(--color-brand-dark);
    border-radius: 1.25rem;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: sticky;
    top: 6rem;
    align-self: start;
    box-shadow: 0 15px 35px -5px rgba(89, 37, 56, .18);
}
.ec-sidebar-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .25);
    margin: 0 auto 0.75rem auto;
    align-self: center;
    flex-shrink: 0;
    position: relative;
    display: block;
}
.ec-sidebar-avatar *,
.ec-sidebar-avatar>div,
.ec-sidebar-avatar .tutor-avatar {
    width: 100% !important;
    height: 100% !important;
    min-width: unset !important;
    min-height: unset !important;
    border-radius: 50% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.ec-sidebar-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    display: block !important;
}
.ec-content-card .tutor-profile-pic-area,
.ec-content-card .tutor-profile-avatar-area,
.ec-content-card .tutor-user-avatar-area {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.ec-content-card .tutor-profile-photo-upload,
.ec-content-card .profile-photo-upload-area {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}
.ec-content-card .tutor-profile-photo-upload img,
.ec-content-card .tutor-avatar-img {
    display: block;
    margin: 0 auto;
}
.ec-sidebar-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242, 235, 229, .55);
    margin-bottom: .2rem;
}
.ec-sidebar-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1.75rem;
}
.ec-sidebar-nav {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 1.25rem;
}
.ec-sidebar-nav li {
    margin-bottom: .15rem;
}
.ec-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .9rem;
    border-radius: .65rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(242, 235, 229, .75);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ec-sidebar-nav a:hover,
.ec-sidebar-nav li.active a {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}
.ec-sidebar-nav .tutor-dashboard-menu-item-icon {
    font-size: 1.1rem;
    color: rgba(242, 235, 229, .6);
}
.ec-sidebar-nav li.active .tutor-dashboard-menu-item-icon {
    color: #fff;
}
.ec-sidebar-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: .75rem 0;
}
.ec-sidebar-logout {
    margin-top: auto;
    padding-top: 1.5rem;
    width: 100%;
}
.ec-sidebar-logout a {
    display: block;
    text-align: center;
    padding: .65rem;
    border-radius: .65rem;
    background: rgba(255, 255, 255, .08);
    color: rgba(242, 235, 229, .7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}
.ec-sidebar-logout a:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}
.ec-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ec-welcome-name {
    font-family: 'Lora', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.ec-continue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--color-brand-light);
    color: #fff;
    padding: 0 1.5rem;
    border-radius: 9999px;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: background .2s, box-shadow .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(140, 63, 99, .28);
    border: none;
    cursor: pointer;
}
.ec-continue-btn:hover {
    background: var(--color-brand-dark);
    color: #fff;
    transform: translateY(-2px);
}
.ec-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 600px) {
    .ec-stats {
        grid-template-columns: 1fr;
    }
}
.ec-stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    box-shadow: 0 2px 12px rgba(89, 37, 56, .07);
}
.ec-stat-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--color-brand-light);
}
.ec-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-dark);
    line-height: 1;
}
.ec-stat-sub {
    font-size: .75rem;
    color: #9a8080;
    margin-top: .15rem;
}
.ec-content-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(89, 37, 56, .07);
}
@media (max-width: 768px) {
    .ec-dashboard-inner {
        grid-template-columns: 1fr;
        padding: 1rem 1rem 90px; 
        gap: 1.5rem;
    }
    .ec-sidebar {
        display: none !important; 
    }
    .ec-main {
        gap: 1.25rem;
    }
    .ec-welcome-name {
        font-size: 1.6rem;
    }
    .ec-stats {
        grid-template-columns: 1fr 1fr; 
        gap: .75rem;
    }
    .ec-stat-card:first-child {
        grid-column: 1 / -1; 
    }
}
.ec-bottom-nav {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: var(--color-brand-dark, #592538);
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 9999;
    align-items: stretch;
    justify-content: space-around;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(89,37,56,.25);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (max-width: 768px) {
    .ec-bottom-nav {
        display: flex; 
    }
}
.ec-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    text-decoration: none;
    color: rgba(255,255,255,.55);
    padding: 8px 4px 6px;
    transition: color .2s, background .2s;
    position: relative;
    min-width: 0; 
}
.ec-bottom-nav__item:hover {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.06);
}
.ec-bottom-nav__item.is-active {
    color: #fff;
}
.ec-bottom-nav__item.is-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    border-radius: 0 0 3px 3px;
    background: #fff;
}
.ec-bottom-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.ec-bottom-nav__icon svg {
    width: 100%;
    height: 100%;
}
.ec-bottom-nav__label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.max-w-6xl {
    max-width: 72rem;
}
.gap-12 {
    gap: 3rem;
}
.bg-\[\#F8F9FA\] {
    background-color: #F8F9FA;
}
.pt-32 {
    padding-top: 8rem;
}
.pb-20 {
    padding-bottom: 5rem;
}
@media (min-width: 1024px) {
    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .lg\:col-span-7 {
        grid-column: span 7 / span 7;
    }
    .lg\:col-span-5 {
        grid-column: span 5 / span 5;
    }
}
.ec-desktop-only {
    display: none !important;
}
.ec-mobile-only-flex {
    display: flex !important;
}
.ec-nav-desktop {
    display: none !important;
}
@media (min-width: 640px) {
    .ec-desktop-only {
        display: block !important;
    }
    .ec-gap-sm {
        gap: 1rem !important;
    }
}
@media (min-width: 768px) {
    .ec-mobile-only-flex {
        display: none !important;
    }
    .ec-nav-desktop {
        display: flex !important;
    }
}
.ec-course-wrap {
    max-width: 72rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    background-color: transparent;
}
.ec-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .ec-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.ec-course-eyebrow {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-brand-light);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}
.ec-course-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-brand-dark, #592538) !important;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
    .ec-course-title {
        font-size: 3rem;
    }
}
.ec-course-excerpt {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.ec-course-video-wrapper {
    background: #F3F4F6;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.ec-info-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(89, 37, 56, 0.05);
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
}
@media (min-width: 640px) {
    .ec-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .ec-info-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}
.ec-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
    border-left: 2px solid rgba(89, 37, 56, 0.1);
}
.ec-info-item:first-child {
    border-left: none;
}
.ec-info-icon {
    font-size: 1.75rem;
    color: var(--color-brand-dark);
}
.ec-info-text {
    display: flex;
    flex-direction: column;
}
.ec-info-text strong {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-brand-dark);
}
.ec-info-text span {
    font-size: 0.875rem;
    color: #6B7280;
}
.ec-content-wide {
    max-width: 56rem;
    margin: 0 auto;
}
.ec-section-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-dark);
    margin: 4rem 0 2rem 0;
}
.ec-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem 2rem;
    margin-bottom: 4rem;
}
@media (min-width: 640px) {
    .ec-benefits-list {
        grid-template-columns: 1fr 1fr;
    }
}
.ec-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #111827;
    line-height: 1.5;
}
.ec-benefit-item i {
    color: #16A34A;
    font-size: 1.5rem;
    margin-top: 0.1rem;
}
.ec-course-wrap .tutor-course-topic {
    border: 1px solid #E5E7EB !important;
    border-radius: 0.5rem !important;
    margin-bottom: 0.75rem !important;
    background: #F8F9FA !important;
    overflow: hidden;
}
.ec-course-wrap .tutor-course-title {
    width: 100% !important;
    padding: 1.25rem 1.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    font-family: var(--font-sans) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: var(--color-brand-dark) !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: background-color 0.2s !important;
}
.ec-course-wrap .tutor-course-title:hover,
.ec-course-wrap .tutor-active .tutor-course-title {
    background: #F3F4F6 !important;
}
.ec-course-wrap .tutor-course-lessons {
    padding: 0 1.5rem 1.25rem 1.5rem !important;
    background: #ffffff !important;
    color: #4B5563 !important;
    line-height: 1.6 !important;
    border-top: 1px solid #E5E7EB !important;
}
.ec-acc-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    background: #F8F9FA;
}
.ec-acc-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-brand-dark);
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}
.ec-acc-header:hover,
.ec-acc-item.is-open .ec-acc-header {
    background: #F3F4F6;
}
.ec-acc-icon {
    font-size: 1.5rem;
    color: #9CA3AF;
    transition: transform 0.2s;
    line-height: 1;
}
.ec-acc-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
    color: #4B5563;
}
.ec-acc-item.is-open .ec-acc-content {
    padding: 1.25rem 1.5rem;
    max-height: 2000px;
    border-top: 1px solid #E5E7EB;
}
.ec-acc-item.is-open .ec-acc-icon {
    transform: rotate(45deg);
}
.ec-experience-box {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}
.ec-experience-box h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-dark);
    margin-bottom: 0.5rem;
}
.ec-diff-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
    max-width: 48rem;
    margin-inline: auto;
}
@media (min-width: 640px) {
    .ec-diff-list {
        grid-template-columns: 1fr 1fr;
    }
}
.ec-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.ec-diff-icon {
    background-color: var(--color-brand-dark);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ec-diff-icon i {
    font-size: 2rem;
    color: var(--color-brand-sand);
}
.ec-diff-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-brand-dark);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}
.ec-instructor-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 640px) {
    .ec-instructor-card {
        flex-direction: row;
        text-align: left;
    }
}
.ec-instructor-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    background: #F3F4F6;
    border: 3px solid #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ec-instructor-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-brand-dark);
    margin-bottom: 0.5rem;
}
.ec-instructor-bio {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}
.ec-cta-area {
    margin: 4rem 0;
    text-align: center;
}
.ec-explicit-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-brand-dark);
    margin-bottom: 1rem;
}
.tutor-course-enrollment-box {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.tutor-course-enrollment-box .tutor-course-price,
.tutor-course-enrollment-box .tutor-price-preview-box {
    display: none !important;
}
.tutor-course-price {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--color-brand-dark) !important;
    margin-bottom: 1.5rem !important;
    display: block;
}
.tutor-btn-enroll,
.tutor-btn-add-to-cart {
    background-color: var(--color-brand-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(89, 37, 56, 0.28) !important;
    font-family: var(--font-sans) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 1.25rem 2.5rem !important;
    border-radius: 0.5rem !important;
    border: none !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    justify-content: center !important;
}
.tutor-btn-enroll:hover,
.tutor-btn-add-to-cart:hover {
    background-color: var(--color-brand-light) !important;
    transform: translateY(-2px);
}
.tutor-course-enrollment-box .tutor-btn-ghost {
    display: none !important;
}
.ec-catalog-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 640px) {
    .ec-catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (min-width: 1024px) {
    .ec-catalog-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
.ec-product-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: left !important;
}
.ec-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.ec-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ec-card-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid rgba(89, 37, 56, 0.05);
}
.ec-card-badge-sale {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--color-brand-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    z-index: 2;
}
.ec-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left !important;
}
.ec-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}
.ec-card-excerpt {
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.ec-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.ec-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4B5563;
}
.ec-card-meta-item i {
    font-size: 1.25rem;
    color: var(--color-brand-accent);
}
.ec-instructor-meta img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.ec-card-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(89, 37, 56, 0.1);
}
.ec-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-brand-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ec-card-price del {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 400;
}
.ec-card-price ins {
    text-decoration: none;
    color: var(--color-brand-accent);
}
.ec-card-btn {
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: var(--color-brand-accent);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}
.ec-product-card:hover .ec-card-btn {
    background-color: var(--color-brand-dark);
}
.woocommerce,
.woocommerce-page {
    font-family: var(--font-sans);
    color: #374151;
}
.woocommerce h2,
.woocommerce-page h2,
.woocommerce h1,
.woocommerce-page h1,
.woocommerce h3,
.woocommerce-page h3 {
    font-family: var(--font-serif);
    color: var(--color-brand-dark);
}
.woocommerce .woocommerce-notices-wrapper,
.woocommerce-page .woocommerce-notices-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}
@media (min-width: 1024px) {
    .woocommerce-cart .woocommerce>.woocommerce-notices-wrapper~* {
        display: contents;
    }
    .ec-cart-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 2.5rem;
        align-items: start;
    }
}
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}
.woocommerce table.shop_table th {
    background: #F9FAFB;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
    border-bottom: 1px solid #F3F4F6;
    text-align: left;
}
.woocommerce table.shop_table td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #F3F4F6;
}
.woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}
.woocommerce table.shop_table .product-name a {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-brand-dark);
    transition: color 0.2s;
}
.woocommerce table.shop_table .product-name a:hover {
    color: var(--color-brand-accent);
}
.woocommerce table.shop_table .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.5rem;
}
.woocommerce table.shop_table .actions .button {
    background: transparent;
    border: 1px solid #E5E7EB;
    color: #6B7280;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.woocommerce table.shop_table .actions .button:hover {
    border-color: var(--color-brand-dark);
    color: var(--color-brand-dark);
}
.woocommerce .cart-collaterals {
    width: 100% !important;
    float: none !important;
}
.woocommerce .cart_totals {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    float: none !important;
    width: 100% !important;
}
.woocommerce .cart_totals h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F3F4F6;
}
.woocommerce .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.95rem;
}
.woocommerce .cart_totals table tr:last-child th,
.woocommerce .cart_totals table tr:last-child td {
    border-bottom: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-brand-dark);
}
.woocommerce a.checkout-button,
.woocommerce .cart_totals .wc-proceed-to-checkout a.button {
    display: block !important;
    width: 100% !important;
    background-color: var(--color-brand-dark) !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 0.025em !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
    margin-top: 1.5rem !important;
    box-shadow: 0 4px 14px rgba(89, 37, 56, 0.25) !important;
}
.woocommerce a.checkout-button:hover,
.woocommerce .cart_totals .wc-proceed-to-checkout a.button:hover {
    background-color: var(--color-brand-accent) !important;
}
.ec-checkout-main-page .woocommerce {
    max-width: 1200px !important;
    margin: 2rem auto !important;
    padding: 0 2rem !important;
}
.ec-checkout-main-page form.woocommerce-checkout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}
@media (min-width: 1024px) {
    .ec-checkout-main-page form.woocommerce-checkout {
        grid-template-columns: 1fr 400px !important;
        gap: 3rem !important;
        align-items: start !important;
    }
    .ec-checkout-column-billing {
        grid-column: 1 !important;
    }
    .ec-checkout-column-order {
        grid-column: 2 !important;
    }
}
.ec-checkout-main-page .woocommerce-billing-fields,
.ec-checkout-main-page .woocommerce-shipping-fields,
.ec-checkout-main-page #order_review {
    background: #ffffff !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
    border: none !important;
}
.ec-checkout-main-page h3#order_review_heading {
    font-family: var(--font-serif) !important;
    font-size: 1.25rem !important;
    color: var(--color-brand-dark) !important;
    padding: 0 0 1rem !important;
    margin: 0 0 1rem !important;
    display: block !important;
    border-bottom: 1px solid #F3F4F6 !important;
}
.woocommerce-checkout #order_review table.shop_table {
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
    padding: 0.75rem 0;
}
.woocommerce .form-row input.input-text,
.woocommerce .form-row select,
.woocommerce .form-row textarea {
    width: 100% !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 0.625rem !important;
    padding: 0.875rem 1rem !important;
    font-size: 0.95rem !important;
    font-family: var(--font-sans) !important;
    color: #1F2937 !important;
    background: #FAFAFA !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    outline: none !important;
    box-shadow: none !important;
}
.woocommerce .form-row input.input-text:focus,
.woocommerce .form-row select:focus,
.woocommerce .form-row textarea:focus {
    border-color: var(--color-brand-accent) !important;
    box-shadow: 0 0 0 3px rgba(89, 37, 56, 0.08) !important;
    background: #ffffff !important;
}
.woocommerce .form-row label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #6B7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.4rem !important;
    display: block !important;
}
.woocommerce .form-row .required {
    color: var(--color-brand-accent) !important;
}
.woocommerce-checkout #payment {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-top: 1.5rem;
    grid-column: 1 / -1;
}
.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
    border-color: var(--color-brand-accent);
    background: rgba(89, 37, 56, 0.03);
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    color: #1F2937;
    font-size: 0.95rem;
    cursor: pointer;
    margin: 0;
}
.woocommerce-checkout #payment .payment_box {
    background: #F9FAFB;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.75rem;
}
.woocommerce-checkout #payment #place_order {
    width: 100% !important;
    background-color: var(--color-brand-dark) !important;
    color: #ffffff !important;
    padding: 1.25rem 2rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border: none !important;
    cursor: pointer !important;
    letter-spacing: 0.025em !important;
    transition: background-color 0.2s ease !important;
    box-shadow: 0 4px 14px rgba(89, 37, 56, 0.25) !important;
    display: block !important;
}
.woocommerce-checkout #payment #place_order:hover {
    background-color: var(--color-brand-accent) !important;
}
.ec-thankyou-wrap {
    background: #ffffff;
    min-height: 80vh;
    padding: 6rem 0 4rem;
}
.ec-thankyou-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .ec-thankyou-container {
        grid-template-columns: 7fr 5fr;
    }
}
.ec-thankyou-icon {
    display: block !important;
    margin: 0 auto 2rem !important;
    font-size: 6rem !important;
    text-align: center;
    width: auto;
    height: auto;
}
.ec-thankyou-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #16A34A;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-align: center;
}
.ec-thankyou-subtitle {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.ec-thankyou-details {
    background: #ffffff;
    border: 1px solid #F3F4F6;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.ec-thankyou-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F3F4F6;
}
.ec-thankyou-meta-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}
.ec-thankyou-meta-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-brand-dark);
}
.ec-thankyou-steps-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: block;
}
.ec-thankyou-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ec-thankyou-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #F9FAFB;
    border-radius: 0.75rem;
    text-decoration: none !important;
    transition: all 0.2s;
}
.ec-thankyou-step:hover {
    background: rgba(89, 37, 56, 0.04);
}
.ec-thankyou-step-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    font-size: 1.25rem;
    color: var(--color-brand-dark);
    flex-shrink: 0;
}
.ec-thankyou-step:hover .ec-thankyou-step-icon {
    background: var(--color-brand-dark);
    color: #ffffff;
}
.ec-thankyou-step-title {
    display: block;
    font-weight: 600;
    color: #592538;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}
.ec-thankyou-step-desc {
    font-size: 0.8rem;
    color: #6B7280;
}
.ec-thankyou-sidebar-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: #ffffff;
    background: var(--color-brand-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ec-thankyou-sidebar-card img.ec-thankyou-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 0;
}
.ec-thankyou-sidebar-card:hover img.ec-thankyou-bg {
    transform: scale(1.04);
}
.ec-thankyou-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
    mix-blend-mode: multiply;
    z-index: 0;
}
.ec-thankyou-sidebar-overlay2 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}
.ec-thankyou-sidebar-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 4rem;
}
.ec-thankyou-sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.ec-thankyou-sidebar-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ec-thankyou-sidebar-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.ec-thankyou-sidebar-heading {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
}
.ec-thankyou-quote {
    padding: 1.5rem;
}
.ec-thankyou-quote-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.75rem;
}
.ec-thankyou-quote blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.ec-thankyou-dots {
    display: flex;
    gap: 0.5rem;
}
.ec-thankyou-dot {
    height: 0.25rem;
    border-radius: 9999px;
}
.woocommerce-thankyou-order-details {
    display: none;
}
.ec-checkout-main-page .wp-block-group.max-w-7xl,
.ec-thankyou-page .wp-block-group.max-w-7xl {
    max-width: 1440px !important;
    width: 100% !important;
}
.ec-checkout-main-page header.wp-block-group,
.ec-thankyou-page header.wp-block-group {
    padding-left: 2rem;
    padding-right: 2rem;
}
.ec-checkout-main-page,
.ec-thankyou-page {
    --wp--style--global--content-size: 1400px !important;
    --wp--style--global--wide-size: 1440px !important;
}
.ec-checkout-main-page :where(.is-layout-constrained)> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1400px !important;
    width: 100% !important;
}
.ec-thankyou-container {
    max-width: 1400px !important;
}
.ec-checkout-main-page .wc-block-checkout,
.ec-checkout-main-page .wc-block-components-checkout,
.ec-checkout-main-page .wp-block-woocommerce-checkout {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}
.ec-checkout-main-page .wc-block-components-main {
    max-width: 1400px !important;
}
.ec-checkout-main-page .ec-thankyou-container {
    display: block !important;
}
.ec-checkout-main-page .ec-thankyou-container form.checkout {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}
@media (min-width: 1024px) {
    .ec-checkout-main-page .ec-thankyou-container form.checkout {
        grid-template-columns: 7fr 5fr !important;
        align-items: start !important;
    }
}
.ec-checkout-main-page {
    overflow-x: hidden !important;
}
.ec-checkout-full-bleed {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: #ffffff !important;
}
.woocommerce-shipping-fields {
    display: none !important;
}
.woocommerce-billing-fields {
    margin-bottom: 0 !important;
}
.ec-thankyou-page .ec-thankyou-container {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1400px !important;
    margin: 40px auto !important;
    align-items: start;
    padding: 0 2rem;
}
@media (min-width: 1024px) {
    .ec-thankyou-page .ec-thankyou-container {
        grid-template-columns: 7fr 5fr !important;
    }
}
.ec-thankyou-sidebar-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
    mix-blend-mode: multiply;
}
.ec-thankyou-sidebar-card h3,
.ec-thankyou-sidebar-card p,
.ec-thankyou-sidebar-card .ec-thankyou-sidebar-badge,
.ec-thankyou-sidebar-card .ec-sidebar-tag {
    color: #ffffff !important;
}
.ec-checkout-main-page .ec-thankyou-container {
    display: block !important;
}
.ec-thankyou-page .ec-thankyou-container {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 1400px !important;
    margin: 40px auto !important;
}
@media (min-width: 1024px) {
    .ec-thankyou-page .ec-thankyou-container {
        grid-template-columns: 7fr 5fr !important;
    }
}
.ec-thankyou-page .ec-thankyou-sidebar-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
    opacity: 1 !important;
}
.ec-thankyou-page .ec-thankyou-sidebar-card h3,
.ec-thankyou-page .ec-thankyou-sidebar-content,
.ec-thankyou-page .ec-thankyou-sidebar-heading {
    color: #ffffff !important;
}
.ec-cart-page .wp-block-post-title,
.ec-cart-page h1.entry-title,
.ec-cart-page h1.page-title,
.ec-cart-page .woocommerce-products-header__title {
    display: none !important;
}
.ec-cart-page .coupon,
.ec-cart-page .cart-collaterals .coupon {
    display: none !important;
}
.ec-cart-page .actions .coupon {
    display: none !important;
}
.ec-checkout-main-page .ec-thankyou-container form.checkout {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100% !important;
    max-width: 1400px !important;
}
@media (min-width: 1024px) {
    .ec-checkout-main-page .ec-thankyou-container form.checkout {
        grid-template-columns: 7fr 5fr !important;
    }
}
header.wp-block-template-part {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
    transition: background 0.3s ease;
}
.ec-catalog-grid::before,
.ec-catalog-grid::after {
    content: none !important;
    display: none !important;
}
.ec-catalog-grid li:first-child {
    grid-column-start: 1 !important;
}
    .ec-home-page .wp-block-post-title,
    .ec-home-page h1.page-title,
    .ec-home-page .entry-title {
        display: none !important;
    }
    .ec-hp-hero {
        background: linear-gradient(135deg, #F2F0F0 0%, #F2EBE5 60%, #ecddd5 100%);
        padding: 5rem 2rem 5rem;
        position: relative;
        overflow: hidden;
    }
    .ec-hp-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(89, 37, 56, 0.05) 0%, transparent 70%);
        top: -200px;
        right: -150px;
        pointer-events: none;
    }
    .ec-hp-hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }
    @media (min-width: 900px) {
        .ec-hp-hero-inner {
            grid-template-columns: 58fr 42fr;
        }
    }
    .ec-hp-hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(89, 37, 56, 0.09);
        color: #592538;
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        padding: 0.35rem 1rem;
        border-radius: 100px;
        margin-bottom: 1.5rem;
    }
    .ec-hp-hero h1 {
        font-family: 'Lora', serif;
        font-size: clamp(2.2rem, 4.5vw, 3rem);
        font-weight: 700;
        color: #592538;
        line-height: 1.12;
        margin-bottom: 1.5rem;
        text-wrap: balance;
    }
    .ec-hp-hero-sub {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4B5563;
        max-width: 540px;
        margin-bottom: 2.5rem;
    }
    .ec-hp-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .ec-hp-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: #592538;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 1rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.25s ease;
        box-shadow: 0 4px 16px rgba(89, 37, 56, 0.3);
    }
    .ec-hp-btn-primary:hover {
        background: #3d1a28;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(89, 37, 56, 0.35);
        color: #ffffff;
    }
    .ec-hp-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: transparent;
        color: #592538;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 1rem 2rem;
        border-radius: 8px;
        border: 2px solid #592538;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    .ec-hp-btn-secondary:hover {
        background: #592538;
        color: #ffffff;
    }
    .ec-hp-hero-img-wrap {
        position: relative;
        display: flex;
        justify-content: center;
    }
    .ec-hp-hero-img-frame {
        width: 100%;
        max-width: 460px;
        aspect-ratio: 3/4;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(160deg, #c9a0a5 0%, #904060 100%);
        box-shadow: 0 24px 64px rgba(89, 37, 56, 0.2), 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    .ec-hp-hero-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
    }
    .ec-hp-hero-img-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 2rem;
        color: rgba(255, 255, 255, 0.7);
    }
    .ec-hp-hero-img-placeholder svg {
        width: 72px;
        height: 72px;
        opacity: 0.5;
    }
    .ec-hp-hero-img-placeholder span {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        text-align: center;
    }
    .ec-hp-hero-badge-float {
        position: absolute;
        bottom: -16px;
        left: 0;
        background: #ffffff;
        border-radius: 12px;
        padding: 0.75rem 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .ec-hp-hero-badge-float-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #22c55e;
        flex-shrink: 0;
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    }
    .ec-hp-hero-badge-float-text {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        color: #374151;
    }
    .ec-hp-hero-badge-float-sub {
        font-size: 0.65rem;
        font-weight: 400;
        color: #6B7280;
        display: block;
    }
    .ec-hp-trust {
        background: #ffffff;
        border-top: 1px solid #E5E7EB;
        border-bottom: 1px solid #E5E7EB;
        padding: 1.5rem 2rem;
    }
    .ec-hp-trust-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    @media (min-width: 640px) {
        .ec-hp-trust-inner {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    .ec-hp-trust-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .ec-hp-trust-item svg {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        stroke: #592538;
    }
    .ec-hp-trust-item span {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #374151;
        line-height: 1.4;
    }
    .ec-hp-pillars {
        background: #ffffff;
        padding: 6rem 2rem;
    }
    .ec-hp-pillars-inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    .ec-hp-section-head {
        text-align: center;
        margin-bottom: 3.5rem;
    }
    .ec-hp-eyebrow {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #8C3F63;
        margin-bottom: 0.75rem;
        display: block;
    }
    .ec-hp-section-head h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        color: #592538;
        margin: 0;
    }
    .ec-hp-pillars-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    @media (min-width: 768px) {
        .ec-hp-pillars-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    .ec-hp-pillar-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 2.5rem 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        border-bottom: 3px solid transparent;
    }
    .ec-hp-pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(89, 37, 56, 0.1);
        border-bottom-color: #592538;
    }
    .ec-hp-pillar-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        background: #F2EBE5;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .ec-hp-pillar-icon svg {
        width: 34px;
        height: 34px;
        stroke: #592538;
    }
    .ec-hp-pillar-card h3 {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #592538;
        margin-bottom: 1rem;
    }
    .ec-hp-pillar-card p {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        line-height: 1.7;
        color: #6B7280;
        margin: 0;
    }
    .ec-hp-modules {
        background: #ffffff;
        padding: 6rem 2rem;
        border-top: 1px solid #F0EEED;
    }
    .ec-hp-modules-inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    .ec-hp-modules-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 3.5rem;
    }
    @media (min-width: 768px) {
        .ec-hp-modules-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    .ec-hp-module-card {
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }
    .ec-hp-module-card:hover {
        box-shadow: 0 8px 32px rgba(89, 37, 56, 0.1);
        transform: translateY(-3px);
    }
    .ec-hp-module-thumb {
        height: 72px;
        background: linear-gradient(135deg, #F2EBE5 0%, #e8d4c8 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ec-hp-module-thumb svg {
        width: 28px;
        height: 28px;
        stroke: #592538;
        opacity: 0.6;
    }
    .ec-hp-module-body {
        padding: 1rem;
    }
    .ec-hp-module-body h5 {
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        color: #374151;
        margin-bottom: 0.35rem;
        line-height: 1.4;
    }
    .ec-hp-module-body p {
        font-family: 'Inter', sans-serif;
        font-size: 0.72rem;
        color: #6B7280;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    .ec-hp-modules-cta {
        text-align: center;
        margin-top: 2.5rem;
    }
    .ec-hp-methodology {
        background: #F2EBE5;
        padding: 4rem 2rem;
    }
    .ec-hp-methodology-inner {
        max-width: 900px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 20px;
        border-color: #ffffff;
        padding: 3rem;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(89, 37, 56, 0.08);
    }
    .ec-hp-methodology-inner h4 {
        font-family: 'Lora', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #592538;
        margin: 0.5rem 0 2rem;
    }
    .ec-hp-method-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    .ec-hp-method-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #374151;
    }
    .ec-hp-method-item svg {
        width: 28px;
        height: 28px;
        stroke: #592538;
        flex-shrink: 0;
    }
    .ec-hp-method-sep {
        font-size: 1.5rem;
        color: #D1D5DB;
        font-weight: 300;
    }
    .ec-hp-authority {
        background: #ffffff;
        padding: 6rem 2rem;
    }
    .ec-hp-authority-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }
    @media (min-width: 900px) {
        .ec-hp-authority-inner {
            grid-template-columns: 45fr 55fr;
        }
    }
    .ec-hp-authority-img-frame {
        width: 100%;
        max-width: 380px;
        aspect-ratio: 3/4;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(89, 37, 56, 0.18);
        margin: 0 auto;
    }
    .ec-hp-authority-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .ec-hp-authority-img-ph {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 2rem;
        color: rgba(255, 255, 255, 0.65);
    }
    .ec-hp-authority-img-ph svg {
        width: 72px;
        height: 72px;
        opacity: 0.5;
    }
    .ec-hp-authority-img-ph span {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        text-align: center;
    }
    .ec-hp-authority-content h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        color: #592538;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    .ec-hp-authority-quote {
        border-left: 3px solid #F2EBE5;
        padding-left: 1.5rem;
        margin-bottom: 2rem;
    }
    .ec-hp-authority-content p {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        line-height: 1.85;
        color: #4B5563;
        margin: 0;
    }
    .ec-hp-cta {
        background: linear-gradient(135deg, #592538 0%, #3d1a28 100%);
        padding: 7rem 2rem;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    .ec-hp-cta::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(242, 235, 229, 0.04);
        top: -200px;
        left: -100px;
        pointer-events: none;
    }
    .ec-hp-cta::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(242, 235, 229, 0.04);
        bottom: -100px;
        right: -50px;
        pointer-events: none;
    }
    .ec-hp-cta-inner {
        max-width: 680px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .ec-hp-cta h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    .ec-hp-cta p {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        line-height: 1.8;
        color: rgba(242, 235, 229, 0.75);
        margin-bottom: 2.5rem;
    }
    .ec-hp-cta-btn-wp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: #25D366;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1.1rem 2.5rem;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.25s ease;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    }
    .ec-hp-cta-btn-wp:hover {
        background: #1fba59;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
        color: #ffffff;
    }
    .ec-hp-cta-btn-wp svg {
        width: 20px;
        height: 20px;
        fill: #ffffff;
    }
    .ec-sobre-mi-page .wp-block-post-title,
    .ec-sobre-mi-page h1.page-title,
    .ec-sobre-mi-page .entry-title {
        display: none !important;
    }
    .ec-sm-hero {
        background: linear-gradient(135deg, #F2F0F0 0%, #F2EBE5 100%);
        padding: 7rem 2rem 6rem;
        position: relative;
        overflow: hidden;
    }
    .ec-sm-hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(89, 37, 56, 0.06) 0%, transparent 70%);
        border-radius: 50%;
    }
    .ec-sm-hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }
    @media (min-width: 900px) {
        .ec-sm-hero-inner {
            grid-template-columns: 55fr 45fr;
        }
    }
    .ec-sm-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(89, 37, 56, 0.08);
        color: #592538;
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.4rem 1rem;
        border-radius: 100px;
        margin-bottom: 1.5rem;
    }
    .ec-sm-hero h1 {
        font-family: 'Lora', serif;
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 700;
        color: #592538;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        text-wrap: balance;
    }
    .ec-sm-hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4B5563;
        max-width: 520px;
        margin-bottom: 2.5rem;
        font-style: italic;
        border-left: 3px solid #592538;
        padding-left: 1.25rem;
    }
    .ec-sm-hero-photo-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .ec-sm-hero-photo-frame {
        width: 100%;
        max-width: 380px;
        aspect-ratio: 3/4;
        border-radius: 20px;
        overflow: hidden;
        background: #e0d0d5;
        box-shadow: 0 20px 60px rgba(89, 37, 56, 0.2), 0 4px 20px rgba(0, 0, 0, 0.08);
        position: relative;
    }
    .ec-sm-hero-photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .ec-sm-hero-photo-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #c9a0a5 0%, #a06070 100%);
        color: #ffffff;
        gap: 1rem;
        padding: 2rem;
    }
    .ec-sm-hero-photo-placeholder svg {
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }
    .ec-sm-hero-photo-placeholder span {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        text-align: center;
        opacity: 0.8;
    }
    .ec-sm-hero-accent {
        position: absolute;
        bottom: -12px;
        right: -12px;
        width: 80px;
        height: 80px;
        border-radius: 12px;
        background: #592538;
        opacity: 0.12;
    }
    .ec-sm-credentials {
        background: #592538;
        padding: 4rem 2rem;
    }
    .ec-sm-credentials-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .ec-sm-credentials-inner {
            grid-template-columns: 1fr 1fr;
        }
    }
    .ec-sm-cred-block {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
    }
    .ec-sm-cred-icon {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: rgba(242, 235, 229, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ec-sm-cred-icon svg {
        width: 28px;
        height: 28px;
        stroke: #F2EBE5;
    }
    .ec-sm-cred-title {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #F2EBE5;
        margin-bottom: 0.6rem;
    }
    .ec-sm-cred-text {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        line-height: 1.7;
        color: rgba(242, 235, 229, 0.75);
    }
    .ec-sm-philosophy {
        background: #ffffff;
        padding: 6rem 2rem;
    }
    .ec-sm-philosophy-inner {
        max-width: 780px;
        margin: 0 auto;
        text-align: center;
    }
    .ec-sm-section-eyebrow {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #8C3F63;
        margin-bottom: 1rem;
    }
    .ec-sm-philosophy h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        color: #592538;
        margin-bottom: 2.5rem;
    }
    .ec-sm-philosophy-text {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        line-height: 1.9;
        color: #4B5563;
        text-align: left;
    }
    .ec-sm-philosophy-text+.ec-sm-philosophy-text {
        margin-top: 1.5rem;
    }
    .ec-sm-philosophy-pillars {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #E5E7EB;
    }
    .ec-sm-philosophy-pillars p {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #9CA3AF;
    }
    .ec-sm-book {
        background: white;
        padding: 5rem 2rem;
    }
    .ec-sm-book-inner {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 4rem;
    }
    .ec-sm-book-image {
        flex: 0 0 280px;
    }
    .ec-sm-book-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(89,37,56,0.15);
    }
    .ec-sm-book-content {
        flex: 1;
    }
    .ec-sm-book-content h2 {
        font-family: 'Lora', serif;
        font-size: 2rem;
        color: var(--color-brand-dark, #592538);
        margin: 0.75rem 0 1.25rem;
        line-height: 1.2;
    }
    .ec-sm-book-content p {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        line-height: 1.7;
        color: #4B5563;
    }
    @media (max-width: 768px) {
        .ec-sm-book-inner {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
        }
        .ec-sm-book-image {
            flex: 0 0 200px;
            max-width: 220px;
        }
        .ec-sm-book-content h2 {
            font-size: 1.6rem;
        }
    }
    .ec-sm-benefits {
        background: #F2F0F0;
        padding: 6rem 2rem;
    }
    .ec-sm-benefits-inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    .ec-sm-benefits-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }
    .ec-sm-benefits-header h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        color: #592538;
        margin-top: 0.5rem;
    }
    .ec-sm-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    @media (min-width: 768px) {
        .ec-sm-cards-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    .ec-sm-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 2.5rem 2rem;
        text-align: center;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ec-sm-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(89, 37, 56, 0.12);
    }
    .ec-sm-card-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: #F2EBE5;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .ec-sm-card-icon svg {
        width: 32px;
        height: 32px;
        stroke: #592538;
    }
    .ec-sm-card h3 {
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #592538;
        margin-bottom: 1rem;
    }
    .ec-sm-card p {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        line-height: 1.7;
        color: #6B7280;
    }
    .ec-sm-aval {
        background: #ffffff;
        padding: 5rem 2rem;
        border-top: 1px solid #F0EEED;
        border-bottom: 1px solid #F0EEED;
    }
    .ec-sm-aval-inner {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }
    .ec-sm-aval h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 700;
        color: #592538;
        margin-top: 0.5rem;
        margin-bottom: 3rem;
    }
    .ec-sm-aval-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    @media (min-width: 620px) {
        .ec-sm-aval-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    .ec-sm-aval-item {
        background: #F2EBE5;
        border-radius: 12px;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .ec-sm-aval-item svg {
        width: 36px;
        height: 36px;
        stroke: #592538;
    }
    .ec-sm-aval-item span {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: #592538;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        text-align: center;
    }
    .ec-sm-cta {
        background: linear-gradient(135deg, #592538 0%, #3d1a28 100%);
        padding: 7rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .ec-sm-cta::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(242, 235, 229, 0.05);
    }
    .ec-sm-cta-inner {
        max-width: 680px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .ec-sm-cta-quote {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(242, 235, 229, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    .ec-sm-cta-quote svg {
        width: 24px;
        height: 24px;
        fill: #F2EBE5;
    }
    .ec-sm-cta p {
        font-family: 'Lora', serif;
        font-size: 1.25rem;
        line-height: 1.8;
        color: rgba(242, 235, 229, 0.9);
        font-style: italic;
        margin-bottom: 3rem;
    }
    .ec-sm-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: #F2EBE5;
        color: #592538;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1.1rem 3rem;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.25s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    .ec-sm-cta-btn:hover {
        background: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    .ec-sm-cta-btn svg {
        width: 18px;
        height: 18px;
    }
.ec-contacto-page .wp-block-post-title,
.ec-contacto-page h1.page-title,
.ec-contacto-page .entry-title {
    display: none !important;
}
.ec-ct-hero {
    background: linear-gradient(135deg, #F2F0F0 0%, #F2EBE5 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ec-ct-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89,37,56,0.05) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.ec-ct-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.ec-ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(89,37,56,0.08);
    color: #592538;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.ec-ct-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #592538;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.ec-ct-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    max-width: 520px;
    margin: 0 auto;
}
.ec-ct-main {
    background: #ffffff;
    padding: 5rem 2rem 6rem;
}
.ec-ct-main-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 900px) {
    .ec-ct-main-inner {
        grid-template-columns: 55fr 45fr;
    }
}
.ec-ct-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    border: 1px solid #F0EEED;
}
.ec-ct-form-wrap h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #592538;
    margin-bottom: 0.5rem;
}
.ec-ct-form-wrap > p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.ec-ct-field {
    margin-bottom: 1.25rem;
}
.ec-ct-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #374151;
    margin-bottom: 0.5rem;
}
.ec-ct-field label span {
    color: #592538;
    margin-left: 2px;
}
.ec-ct-field input,
.ec-ct-field select,
.ec-ct-field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1F2937;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    box-sizing: border-box;
}
.ec-ct-field input:focus,
.ec-ct-field select:focus,
.ec-ct-field textarea:focus {
    border-color: #592538;
    box-shadow: 0 0 0 3px rgba(89,37,56,0.1);
    background: #ffffff;
}
.ec-ct-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}
.ec-ct-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}
.ec-ct-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: #592538;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(89,37,56,0.3);
    margin-top: 0.5rem;
}
.ec-ct-submit:hover {
    background: #3d1a28;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(89,37,56,0.35);
}
.ec-ct-submit svg {
    width: 18px;
    height: 18px;
}
.ec-ct-alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.ec-ct-alert svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}
.ec-ct-alert-success {
    background: #F0FDF4;
    border: 1.5px solid #86EFAC;
    color: #15803D;
}
.ec-ct-alert-error {
    background: #FFF1F2;
    border: 1.5px solid #FDA4AF;
    color: #BE123C;
}
.ec-ct-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ec-ct-info-title {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #592538;
    margin-bottom: 0.5rem;
}
.ec-ct-info-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.ec-ct-info-card {
    background: #F2EBE5;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ec-ct-info-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #592538;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ec-ct-info-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #F2EBE5;
}
.ec-ct-info-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #592538;
    margin-bottom: 0.35rem;
}
.ec-ct-info-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
}
.ec-ct-disclaimer {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #E5E7EB;
}
.ec-ct-disclaimer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}
.ec-ct-disclaimer strong {
    color: #374151;
}
.tutor-page-entry-wrap,
.tutor-login-wrap,
.tutor-signup-wrap,
.tutor-registration-wrap {
    font-family: 'Inter', sans-serif !important;
    max-width: 520px;
    margin: 4rem auto !important;
    padding: 2.5rem !important;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(89, 37, 56, 0.1);
    border: 1px solid rgba(89, 37, 56, 0.08);
}
.tutor-login-wrap h2,
.tutor-signup-wrap h2,
.tutor-registration-wrap h2,
.tutor-login-wrap .tutor-login-heading,
.tutor-signup-wrap .tutor-signup-heading {
    font-family: 'Lora', serif !important;
    color: #592538 !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 0.5rem !important;
}
.tutor-login-wrap p,
.tutor-signup-wrap p,
.tutor-registration-wrap p {
    font-family: 'Inter', sans-serif !important;
    color: #6B7280 !important;
    font-size: 0.95rem !important;
    text-align: center;
    margin-bottom: 1.75rem !important;
}
.tutor-form-group label,
.tutor-signup-form label,
.tutor-signup-wrap label,
.tutor-login-wrap label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem !important;
    display: block;
}
.tutor-form-control,
.tutor-signup-form input[type="text"],
.tutor-signup-form input[type="email"],
.tutor-signup-form input[type="password"],
.tutor-signup-form select,
.tutor-login-wrap input[type="text"],
.tutor-login-wrap input[type="email"],
.tutor-login-wrap input[type="password"],
.tutor-registration-wrap input,
.tutor-registration-wrap select {
    font-family: 'Inter', sans-serif !important;
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    color: #374151 !important;
    background: #FAFAFA !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    outline: none !important;
    margin-bottom: 1rem !important;
}
.tutor-form-control:focus,
.tutor-signup-form input:focus,
.tutor-login-wrap input:focus,
.tutor-registration-wrap input:focus {
    border-color: #592538 !important;
    box-shadow: 0 0 0 3px rgba(89, 37, 56, 0.1) !important;
    background: #ffffff !important;
}
.tutor-btn-primary,
.tutor-signup-btn,
.tutor-login-btn,
.tutor-signup-form button[type="submit"],
.tutor-login-wrap button[type="submit"],
.tutor-registration-wrap button[type="submit"],
.tutor-signup-form input[type="submit"],
.tutor-login-wrap input[type="submit"] {
    font-family: 'Inter', sans-serif !important;
    background: #592538 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.95rem 2rem !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 16px rgba(89, 37, 56, 0.25) !important;
    margin-top: 0.5rem !important;
}
.tutor-btn-primary:hover,
.tutor-signup-btn:hover,
.tutor-login-btn:hover,
.tutor-signup-form button[type="submit"]:hover,
.tutor-login-wrap button[type="submit"]:hover,
.tutor-registration-wrap button[type="submit"]:hover {
    background: #3d1a28 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(89, 37, 56, 0.35) !important;
}
.tutor-login-wrap a,
.tutor-signup-wrap a,
.tutor-registration-wrap a {
    color: #592538 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(89, 37, 56, 0.3) !important;
    transition: text-decoration-color 0.2s ease !important;
}
.tutor-login-wrap a:hover,
.tutor-signup-wrap a:hover {
    text-decoration-color: #592538 !important;
}
.tutor-login-or-devider,
.tutor-signup-or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: #9CA3AF;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif !important;
}
.tutor-login-or-devider::before,
.tutor-login-or-devider::after,
.tutor-signup-or-divider::before,
.tutor-signup-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}
.tutor-alert-warning,
.tutor-alert-danger,
.tutor-form-error,
.tutor-signup-form .error {
    font-family: 'Inter', sans-serif !important;
    background: #FEF2F2 !important;
    border: 1px solid #FECACA !important;
    border-radius: 8px !important;
    color: #991B1B !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
}
.tutor-login-wrap input[type="checkbox"],
.tutor-signup-wrap input[type="checkbox"],
.tutor-registration-wrap input[type="checkbox"] {
    accent-color: #592538 !important;
    width: 16px !important;
    height: 16px !important;
    margin-right: 0.5rem !important;
}
body.tutor-page-student-registration,
body.tutor-registration,
.tutor-page-registration {
    background: linear-gradient(135deg, #F2F0F0 0%, #F2EBE5 100%) !important;
    min-height: 100vh;
}
body.ec-no-scroll {
    overflow: hidden;
}
.ec-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(89, 37, 56, 0.1);
    font-family: 'Inter', sans-serif;
}
.ec-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
body {
    padding-top: 70px;
}
.ec-header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}
.ec-header-logo-link:hover { opacity: 0.8; }
.ec-header-logo-text {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #592538;
    white-space: nowrap;
}
.ec-nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}
.ec-nav-menu-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ec-nav-menu-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    display: block;
}
.ec-nav-menu-list li a:hover,
.ec-nav-menu-list li.current-menu-item > a {
    background: rgba(89, 37, 56, 0.07);
    color: #592538;
}
.ec-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.ec-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(89, 37, 56, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.ec-hamburger:hover {
    border-color: #592538;
    background: rgba(89, 37, 56, 0.05);
}
.ec-hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #592538;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.ec-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.ec-mobile-overlay--open {
    transform: translateX(0);
}
.ec-mobile-backdrop {
    display: none;
}
.ec-mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
    height: 70px;
    flex-shrink: 0;
}
.ec-mobile-close {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(89, 37, 56, 0.2);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #592538;
    transition: background 0.2s ease;
}
.ec-mobile-close:hover {
    background: rgba(89, 37, 56, 0.06);
}
.ec-mobile-nav {
    flex: 1;
    padding: 1rem 1rem;
}
.ec-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ec-mobile-menu-list li a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid #F9FAFB;
}
.ec-mobile-menu-list li a:hover,
.ec-mobile-menu-list li.current-menu-item > a {
    background: rgba(89, 37, 56, 0.06);
    color: #592538;
}
.ec-mobile-overlay-footer {
    padding: 1.5rem;
    border-top: 1px solid #F3F4F6;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .ec-nav-desktop        { display: none; }
    .ec-header-cta         { display: none; }
    .ec-hamburger          { display: flex; }
    .ec-header-logo-text   { font-size: 0.95rem; }
}
@media (min-width: 769px) {
    .ec-mobile-overlay { display: none; }
}
@media (max-width: 768px) {
    .ec-hp-hero {
        padding-top: 2.5rem;
    }
}
body.single-lesson .ec-site-header,
body.single-tutor_quiz .ec-site-header,
body.single-tutor_assignments .ec-site-header,
body.tutor-page-template-single-lesson .ec-site-header,
body.single-lesson footer,
body.single-tutor_quiz footer,
body.single-tutor_assignments footer,
body.tutor-page-template-single-lesson footer {
    display: none !important;
}
body.single-lesson,
body.single-tutor_quiz,
body.single-tutor_assignments,
body.tutor-page-template-single-lesson {
    padding-top: 0 !important;
}
.ec-lesson-audio-block {
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.ec-audio-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ec-audio-player-wrapper {
    width: 100%;
}
.ec-lesson-bottom-tabs {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.ec-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    border-bottom: 1px solid #eaeaea;
    background-color: #fafafa;
}
.ec-tab-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #888888;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    margin-bottom: -1px; 
}
.ec-tab-link:hover {
    color: #4a4a4a;
}
.ec-tab-link.active {
    color: #638A82; 
    border-bottom: 3px solid #638A82;
}
.ec-tabs-content {
    padding: 2rem;
}
.ec-tab-pane {
    display: none;
    animation: fadeInTab 0.3s ease;
}
.ec-tab-pane.active {
    display: block;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.ec-tab-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}
.ec-attachment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ec-attachment-list li {
    margin-bottom: 1rem;
}
.ec-attachment-list a {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    text-decoration: none;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.ec-attachment-list a:hover {
    background: #fafafa;
    border-color: #cdcfd5;
    transform: translateX(4px);
}
.ec-pdf-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.ec-no-data {
    font-family: 'Inter', sans-serif;
    color: #888888;
    font-style: italic;
    font-size: 0.9rem;
}
.ec-transcripcion-content {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}
presto-player, .presto-player {
    --presto-primary: #592538 !important;
    --presto-brand: #592538 !important;
    --pp-primary: #592538 !important;
    --pp-brand: #592538 !important;
    --pp-bg: #592538 !important;
    --plyr-color-main: #592538 !important;
    --plyr-audio-controls-background: #592538 !important;
}
.wp-block-presto-player-audio,
.presto-audio-preset {
    background-color: #592538 !important;
}
.ec-audio-player-wrapper [class*="presto"] {
    background-color: #592538 !important;
}
.tutor-dashboard .tutor-rating-container,
.tutor-dashboard .tutor-ratings,
.tutor-dashboard .tutor-course-rating,
.tutor-dashboard .tutor-ratings-stars {
    display: none !important;
}
.tutor-dashboard-content .tutor-rating-container,
.tutor-dashboard-content .tutor-course-rating,
.tutor-dashboard-content .tutor-ratings,
.tutor-dashboard-content .tutor-loop-rating-wrap,
.tutor-dashboard-content .tutor-star-rating-group,
.tutor-dashboard-content .tutor-course-loop-rating,
.tutor-dashboard-content span[class*="rating"],
.tutor-dashboard-content div[class*="rating"],
.tutor-dashboard-content .tutor-table th:nth-last-child(1),
.tutor-dashboard-content .tutor-table td:nth-last-child(1) {
    display: none !important;
}
.tutor-ratings-stars,
.tutor-rating-text,
.tutor-rating-count,
.tutor-rating-value,
.tutor-icon-star-line,
.tutor-icon-star-filled,
.tutor-course-rating,
.tutor-ratings,
.tutor-star-rating-group,
.tutor-loop-rating-wrap,
.tutor-course-loop-rating {
    display: none !important;
}
.ec-dashboard-wrap,
.ec-dashboard-inner,
.ec-main,
.ec-content-card {
    max-width: 100%;
    box-sizing: border-box;
}
.ec-dashboard-wrap {
    overflow-x: hidden;
}
.ec-content-card .tutor-table-responsive,
.ec-content-card table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}
@media (max-width: 768px) {
    .ec-dashboard-inner {
        width: 100%;
        max-width: 100vw;
    }
    .ec-main > * {
        max-width: 100%;
        box-sizing: border-box;
    }
    .ec-main input,
    .ec-main select,
    .ec-main textarea,
    .ec-main form {
        max-width: 100%;
        box-sizing: border-box;
    }
}
html {
    overflow-x: hidden;
    width: 100%;
}
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
@media (max-width: 768px) {
    *, *::before, *::after {
        box-sizing: border-box;
        max-width: 100%;
    }
    svg, canvas {
        max-width: none;
    }
    img, video, audio, iframe, embed, object {
        max-width: 100% !important;
        height: auto;
    }
}
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
        width: max-content;
    }
    form table {
        display: table;
        width: 100%;
    }
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .woocommerce-checkout .col2-set,
    .woocommerce-page .col2-set {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100% !important;
        float: none !important;
        max-width: 100% !important;
    }
    .woocommerce-cart-form table.cart,
    .woocommerce table.shop_table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .woocommerce-checkout-review-order-table {
        display: block;
        overflow-x: auto;
        width: 100%;
    }
    #customer_details,
    #order_review,
    #order_review_heading {
        width: 100% !important;
        float: none !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .woocommerce-checkout .payment_box {
        max-width: 100%;
        box-sizing: border-box;
        word-break: break-word;
    }
    .woocommerce .woocommerce-cart-form,
    .woocommerce-page .woocommerce-cart-form {
        overflow-x: hidden;
        width: 100%;
    }
    .tutor-course-single-content-wrapper {
        overflow-x: hidden;
        width: 100%;
    }
    .tutor-course-archive-page .tutor-course-list,
    .tutor-course-loop-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    .tutor-single-course-top,
    .tutor-container {
        max-width: 100% !important;
        overflow-x: hidden;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .tutor-row {
        flex-wrap: wrap !important;
    }
    .tutor-col,
    [class*="tutor-col-"] {
        max-width: 100% !important;
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .ec-stat-card {
        min-width: 0;
        overflow: hidden;
    }
    .ec-stat-value {
        font-size: 1.6rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .ec-stat-label {
        font-size: 0.6rem;
        white-space: normal;
        overflow-wrap: break-word;
    }
}
@media (max-width: 768px) {
    .ec-checkout-wrap,
    .ec-thankyou-wrap {
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    .ec-checkout-full-bleed {
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        position: static !important;
        overflow-x: hidden;
    }
    .ec-checkout-main-page .ec-thankyou-container,
    .ec-thankyou-container {
        padding: 1rem !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    .ec-checkout-main-page .ec-thankyou-container form.checkout,
    .ec-thankyou-container form.checkout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
    }
    .ec-checkout-main-page .woocommerce-billing-fields,
    .ec-checkout-main-page #order_review,
    .woocommerce-billing-fields,
    #order_review {
        padding: 1rem !important;
        border-radius: .75rem !important;
    }
    .woocommerce-checkout-review-order-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 0.875rem;
    }
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2,
    .ec-checkout-column-billing,
    .ec-checkout-column-order {
        width: 100% !important;
        float: none !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
@media (max-width: 768px) {
    .ec-audio-description,
    .ec-audio-manager,
    .ec-audio-manager p,
    .ec-gestor-header,
    .ec-gestor-desc {
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
    }
    [class*="audio-manager"],
    [class*="ec-audio"],
    .ec-dashboard-content {
        overflow-x: hidden;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .tutor-profile-settings,
    .tutor-setting-page,
    .tutor-dashboard-settings {
        overflow-x: hidden;
    }
    .tutor-settings-wrap,
    .profile-edit-wrap,
    .tutor-profile-edit-table {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }
    .tutor-settings-wrap .tutor-row,
    .profile-edit-wrap .tutor-row {
        flex-direction: column !important;
        gap: .75rem;
    }
    .tutor-settings-wrap .tutor-col-sm-6,
    .tutor-settings-wrap .tutor-col-6,
    .profile-edit-wrap .tutor-col-sm-6,
    .profile-edit-wrap .tutor-col-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
}
@media (max-width: 768px) {
    .tutor-single-course-top,
    .tutor-single-course-sidebar-wrapper,
    .tutor-single-course-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        overflow-x: hidden;
    }
    .tutor-course-price-and-enroll {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .75rem;
    }
    .tutor-course-sidebar {
        position: static !important;
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .woocommerce-cart .entry-content,
    .woocommerce-cart .woocommerce,
    .ec-cart-page .woocommerce {
        padding: 0 !important;
        overflow-x: hidden;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .woocommerce-cart-form {
        overflow-x: hidden;
    }
    .woocommerce-cart-form .shop_table thead {
        display: none;
    }
    .woocommerce-cart-form .shop_table tbody,
    .woocommerce-cart-form .shop_table tr,
    .woocommerce-cart-form .shop_table td {
        display: block;
    }
    .woocommerce-cart-form .shop_table tbody tr {
        position: relative;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #F3F4F6;
        border-radius: 0.75rem;
        background: #FAFAFA;
    }
    .woocommerce-cart-form .shop_table tbody td {
        padding: 0.5rem 0;
        text-align: right !important;
        border-bottom: 1px solid #F0F0F0;
    }
    .woocommerce-cart-form .shop_table tbody td:last-child {
        border-bottom: none;
    }
    .woocommerce-cart-form .shop_table td::before {
        content: attr(data-title);
        float: left;
        font-weight: 700;
        font-size: 0.8rem;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        margin-right: 0.5rem;
    }
    .woocommerce-cart-form .shop_table .product-thumbnail {
        text-align: center !important;
        padding-bottom: 0.75rem !important;
    }
    .woocommerce-cart-form .shop_table .product-thumbnail img {
        width: 60px;
        height: 60px;
    }
    .woocommerce-cart-form .shop_table .product-name {
        text-align: right !important;
    }
    .woocommerce-cart-form .shop_table .product-name::before {
        display: none;
    }
    .woocommerce-cart-form .shop_table .product-remove {
        text-align: center !important;
    }
    .woocommerce-cart-form .shop_table .product-remove::before {
        display: none;
    }
    .woocommerce-cart-form .shop_table .product-remove .remove {
        font-size: 1.25rem;
        color: #DC2626;
    }
    .woocommerce-cart-form .shop_table .actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0 !important;
        text-align: center;
        border-top: 2px solid #E5E7EB;
        margin-top: 0.5rem;
    }
    .woocommerce-cart-form .shop_table .actions .coupon {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .woocommerce-cart-form .shop_table .actions .coupon label {
        display: none;
    }
    .woocommerce-cart-form .shop_table .actions .coupon input.input-text {
        width: 100% !important;
        text-align: center;
        padding: 0.75rem;
        border: 1px solid #E5E7EB;
        border-radius: 0.5rem;
        font-size: 0.9rem;
    }
    .woocommerce-cart-form .shop_table .actions .coupon button {
        width: 100%;
    }
    .woocommerce-cart-form .shop_table .actions .button {
        width: 100%;
        display: block;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    .cart-collaterals,
    .woocommerce-cart-form .cart-collaterals {
        width: 100% !important;
        float: none !important;
    }
    .ec-cart-layout {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .ec-create-course-action {
        width: 100%;
    }
    .ec-create-course-btn {
        width: 100% !important;
        white-space: normal !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
}
@media (max-width: 768px) {
    #tutor_profile_cover_photo_editor {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    #tutor_cover_area {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 120px;
        background-size: cover !important;
        background-position: center !important;
    }
    #tutor_photo_meta_area {
        display: flex;
        flex-direction: column;
        gap: .25rem;
        font-size: 0.75rem;
        padding: .5rem 0;
        flex-wrap: wrap;
    }
    #tutor_photo_meta_area span {
        white-space: normal !important;
        overflow-wrap: break-word;
    }
    #tutor_profile_area {
        width: 80px !important;
        height: 80px !important;
    }
}
@media (max-width: 768px) {
    .wp-editor-wrap,
    #wp-tutor_profile_bio-wrap,
    .wp-editor-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    .mce-toolbar,
    .mce-toolbar-grp,
    .mce-toolbar .mce-flow-layout {
        flex-wrap: wrap !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .wp-editor-tabs {
        display: flex;
        width: 100%;
    }
    .wp-editor-tabs .wp-switch-editor {
        flex: 1;
        text-align: center;
    }
    #tutor_profile_bio_ifr,
    .wp-editor-area,
    .mce-edit-area iframe {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .mce-container,
    .mce-panel,
    .mce-flow-layout-item {
        max-width: 100% !important;
        overflow-x: auto !important;
    }
}
@media (max-width: 768px) {
    .tutor-dashboard-setting-profile .tutor-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .tutor-dashboard-setting-profile [class*="tutor-col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
    .tutor-dashboard-setting-profile .tutor-form-select,
    .tutor-dashboard-setting-profile .tutor-form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .tutor-profile-settings-save,
    .tutor-btn.tutor-profile-settings-save {
        width: 100% !important;
        justify-content: center !important;
    }
}
@media (max-width: 768px) {
    .tutor-dashboard-content-inner {
        overflow-x: hidden;
        max-width: 100%;
    }
    .tutor-dashboard-nav-bar,
    .tutor-nav.tutor-nav-tabs {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap !important;
        display: flex;
    }
    .tutor-nav.tutor-nav-tabs .tutor-nav-item {
        flex-shrink: 0;
    }
}
@media (max-width: 768px) {
    .ec-content-card,
    .ec-audio-section,
    [class*="ec-audio"] {
        overflow-x: hidden;
        overflow-y: visible;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .ec-content-card p,
    .ec-content-card h2,
    .ec-content-card h3,
    .ec-content-card span,
    .ec-content-card div {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }
    .ec-audio-table,
    .ec-content-card table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    .ec-content-card .ec-btn-primary,
    .ec-content-card a[class*="btn"] {
        width: 100%;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .ec-content-card table td,
    .ec-content-card table th,
    .tutor-table-responsive table td,
    .tutor-table-responsive table th {
        word-break: break-word;
    }
}
@media (max-width: 768px) {
    .ec-create-course-btn {
        max-width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .tutor-nav {
        flex-wrap: wrap !important;
    }
    .tutor-nav-link {
        max-width: 100% !important;
    }
    .tutor-table, .tutor-table td, .tutor-table th {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    .tutor-checkout-order-review,
    .woocommerce-checkout-review-order,
    .payment_box {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
}
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    .ec-dashboard-wrap, .ec-main, .ec-dashboard-inner, .tutor-dashboard-content, .tutor-wrap {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        min-width: 0 !important; 
    }
    .tutor-table-responsive,
    .tutor-table-container,
    .ec-audio-table-wrapper {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
    .tutor-table,
    table.ec-audio-table {
        min-width: 500px !important; 
        width: max-content !important;
    }
    .tutor-table td, .tutor-table th {
        word-break: normal !important; 
        white-space: normal !important;
    }
    .ec-create-course-btn {
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
        display: block !important;
        text-align: center !important;
    }
    .tutor-nav {
        flex-wrap: wrap !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    .tutor-nav-link {
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
        text-align: center !important;
    }
    .tutor-checkout-order-review,
    .woocommerce-checkout-review-order,
    .payment_box {
        word-break: break-all !important;
        overflow-wrap: anywhere !important;
        white-space: normal !important;
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    p, span, div {
        max-width: 100vw;
        overflow-wrap: break-word;
    }
}
@media (min-width: 769px) {
    .woocommerce-cart-form .shop_table .actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .woocommerce-cart-form .shop_table .actions .coupon {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .woocommerce-cart-form .shop_table .actions .coupon input.input-text {
        padding: 0.5rem 0.75rem;
        border: 1px solid #E5E7EB;
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
    .woocommerce-cart-form .shop_table .actions .button {
        white-space: nowrap;
    }
}
@media (max-width: 1024px) {
    .woocommerce table.shop_table th {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }
    .woocommerce table.shop_table td {
        padding: 1rem;
    }
    .woocommerce table.shop_table .product-thumbnail img {
        width: 55px;
        height: 55px;
    }
}
.woocommerce-cart .ec-cart-content-area {
    margin: 0;
    padding: 0;
}
.woocommerce-cart .ec-cart-content-area > .woocommerce {
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.ec-audio-upload-box input[type="file"] {
    border: 2px solid var(--color-brand-dark, #592538);
    border-radius: 6px;
    padding: 8px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
    cursor: pointer;
}
/* ============================================================
   H5P EN LECCIONES — Maximizar espacio sin deformar
   ============================================================ */

/* Contenedor padre que H5P genera — expandir al máximo del área disponible */
.h5p-iframe-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
    width: calc(100% + 5rem) !important;
    margin-bottom: 2rem !important;
}

/* El iframe mantiene su aspect ratio natural, sin min-height forzado */
.h5p-iframe-wrapper iframe,
.h5p-iframe {
    width: 100% !important;
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(89, 37, 56, 0.08);
    display: block;
}

/* Forzar que Tutor LMS no limite el ancho del contenedor H5P */
.tutor-lesson-content .h5p-iframe-wrapper,
.tutor-single-lesson-wrap .h5p-iframe-wrapper,
.tutor-lesson-description .h5p-iframe-wrapper {
    width: calc(100% + 5rem) !important;
    max-width: none !important;
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
    padding: 0 !important;
}

/* Cuando H5P se renderiza como shortcode embebido (sin iframe wrapper) */
.h5p-content {
    width: 100% !important;
    max-width: 100% !important;
}

/* En móvil: el área de contenido tiene menos padding, ajustar márgenes negativos */
@media (max-width: 768px) {
    .h5p-iframe-wrapper,
    .tutor-lesson-content .h5p-iframe-wrapper,
    .tutor-single-lesson-wrap .h5p-iframe-wrapper,
    .tutor-lesson-description .h5p-iframe-wrapper {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
        width: calc(100% + 2.5rem) !important;
    }

    .h5p-iframe-wrapper iframe,
    .h5p-iframe {
        border-radius: 6px;
    }
}

/* ============================================================
   AUDIO — Etiqueta "Resumen de la lección en audio"
   ============================================================ */
.ec-audio-section-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #592538;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #F2EBE5;
}

.ec-audio-section-label i {
    font-size: 1.3rem;
    color: #8C3F63;
}

/* ============================================================
   H5P — Indicador "Ver en vista completa" (solo móvil)
   ============================================================ */
@media (max-width: 768px) {
    .h5p-iframe-wrapper {
        position: relative;
    }

    .ec-h5p-fullscreen-hint {
        position: absolute;
        bottom: 42px;
        right: 8px;
        display: flex;
        align-items: center;
        gap: 0.35rem;
        background: rgba(89, 37, 56, 0.88);
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        padding: 5px 10px;
        border-radius: 16px;
        pointer-events: none;
        z-index: 10;
        animation: ec-hint-fade 6s ease-in-out forwards;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(89, 37, 56, 0.3);
    }

    .ec-h5p-fullscreen-hint .ec-hint-arrow {
        display: inline-block;
        animation: ec-hint-bounce 1s ease-in-out infinite;
        font-size: 0.85rem;
        line-height: 1;
    }

    /* Animación de la flecha rebotando */
    @keyframes ec-hint-bounce {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(3px, 3px); }
    }

    /* Desvanecimiento del hint después de unos segundos */
    @keyframes ec-hint-fade {
        0% { opacity: 0; transform: translateY(5px); }
        8% { opacity: 1; transform: translateY(0); }
        75% { opacity: 1; }
        100% { opacity: 0; pointer-events: none; }
    }
}

/* En desktop no se muestra el hint */
@media (min-width: 769px) {
    .ec-h5p-fullscreen-hint {
        display: none !important;
    }
}

/* ============================================================
   TARJETAS DE CURSO — Ribbon "GRATIS"
   ============================================================ */
.ec-card-thumb {
    position: relative;
}

.ec-card-free-ribbon {
    position: absolute;
    top: 12px;
    right: 0;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 12px 6px 14px;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35);
    z-index: 5;
    animation: ec-free-pulse 2.5s ease-in-out infinite;
}

@keyframes ec-free-pulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35); }
    50% { box-shadow: 0 3px 20px rgba(16, 185, 129, 0.55); }
}

/* Texto "Gratis" en el footer de la tarjeta — estilizar también */
.ec-card-free {
    color: #059669 !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   BANNER PROMOCIONAL — Portada
   ============================================================ */
.ec-promo-banner {
    display: block;
    background: linear-gradient(135deg, #F2F0F0 0%, #F2EBE5 60%, #ecddd5 100%);
    padding: 1.5rem 1.5rem 0 1.5rem;
    margin: 0;
}

.ec-promo-banner a {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(89, 37, 56, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ec-promo-banner a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(89, 37, 56, 0.2);
}

.ec-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .ec-promo-banner {
        padding: 1rem 1rem 0 1rem;
    }

    .ec-promo-banner a {
        border-radius: 8px;
    }
}

/* ── FAB Video Guía ──────────────────────────────── */
.ec-fab-label {
    position: fixed;
    bottom: 80px;
    right: 24px;
    background: #fff;
    color: #333;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-size: 13px;
    line-height: 1.4;
    z-index: 9998;
    max-width: 170px;
    text-align: center;
    font-family: inherit;
}
.ec-fab-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 28px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}
.ec-fab-label strong {
    display: block;
    color: #592538;
    margin-top: 2px;
}
.ec-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #592538;
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(89,37,56,0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
}
.ec-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(89,37,56,0.45);
}
.ec-fab svg {
    width: 28px;
    height: 28px;
}
.ec-fab-modal {
    border: none;
    border-radius: 16px;
    padding: 0;
    max-width: 900px;
    width: 95vw;
    background: transparent;
    overflow: visible;
    margin: auto;
    inset: 0;
    position: fixed;
}
.ec-fab-modal::backdrop {
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.ec-fab-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    border: none;
    display: block;
}
.ec-fab-close {
    position: absolute;
    top: -36px;
    right: 0;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    opacity: .8;
    line-height: 1;
    padding: 4px;
}
.ec-fab-close:hover {
    opacity: 1;
}
