/* =========================================================
   WEBSITE GLOBAL BASE CSS — OPTIMIZED DESIGN SYSTEM
   Merged and optimized from the supplied base + component CSS.
   Compatible with the previous WooCommerce/custom page styles.
   Mobile-first / dark-mode ready / reusable across all pages.
========================================================= */


/* =========================================================
   01. DESIGN TOKENS
========================================================= */

:root {
    /* Brand */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #ef4444;
    --accent-dark: #b91c1c;
    --success: #10b981;
    --success-dark: #059669;
    --warning: #f59e0b;

    /* Backgrounds */
    --bg: #f8fafc;
    --bg-soft: #f1f5f9;
    --card: #ffffff;
    --card-soft: #f1f5f9;

    /* Text */
    --text: #0f172a;
    --muted: #64748b;
    --text-inverse: #ffffff;
    --text-light: #ffffff;

    /* Highlights */
    --highlight: #6366f1;
    --highlight-contrast: #f87171;

    /* Borders */
    --border: #e2e8f0;
    --border-strong: rgba(99, 102, 241, 0.35);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-xs: 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 35px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.16);

    /* Motion */
    --transition-fast: 180ms ease;
    --transition: 220ms ease;
    --transition-slow: 420ms ease;

    /* Layout */
    --container: 1280px;
    --container-narrow: 1120px;
}


/* =========================================================
   02. DARK MODE TOKENS
   Activate with body.dark-mode
========================================================= */

body.dark-mode {
    --primary: #818cf8;
    --primary-dark: #6366f1;
    --accent: #f87171;
    --accent-dark: #b91c1c;
    --success: #34d399;
    --success-dark: #059669;

    --bg: #0b1220;
    --bg-soft: #111827;
    --card: #111827;
    --card-soft: #020617;

    --text: #ffffff;
    --muted: #9ca3af;
    --text-inverse: #ffffff;
    --text-light: #ffffff;

    --highlight: #818cf8;
    --highlight-contrast: #f87171;

    --border: #1f2937;
    --border-strong: rgba(129, 140, 248, 0.45);

    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.16), transparent 34%),
        linear-gradient(180deg, #020617 0%, var(--bg) 100%);
    color: var(--text);
}


/* =========================================================
   03. RESET / BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: rgba(99, 102, 241, 0.22);
    color: var(--text);
}


/* =========================================================
   04. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    color: var(--text);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
    overflow-wrap: anywhere;
}

small {
    font-size: 0.85rem;
}

strong {
    color: var(--text);
    font-weight: 800;
}

.text-muted {
    color: var(--muted) !important;
}

.text-highlight {
    color: var(--highlight-contrast) !important;
}


/* =========================================================
   05. LINKS
========================================================= */

a {
    color: var(--primary);
    text-decoration: none !important;
    transition:
        color var(--transition-fast),
        opacity var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   06. LAYOUT HELPERS
========================================================= */

.container,
.site-main,
.content-area,
main {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1rem;
}

.container-narrow {
    max-width: var(--container-narrow);
}

section {
    margin-block: clamp(2rem, 5vw, 5rem);
}

.page-shell {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2.5rem) 1rem;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.centered {
    margin-inline: auto;
    text-align: center;
}

.grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.4rem);
}


/* =========================================================
   07. HEADER / HERO PATTERNS
========================================================= */

.header,
.page-header,
.section-header {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.header h1,
.page-header h1,
.section-header h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 6vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.header p,
.page-header p,
.section-header p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}


/* =========================================================
   08. CARDS / PANELS / WIDGETS
========================================================= */

.card,
.panel,
.widget,
.box {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text);
    box-shadow: var(--shadow-sm);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.card::before,
.panel::before,
.box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.13), transparent 36%);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover,
.panel:hover,
.widget:hover,
.box:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

.card:hover::before,
.panel:hover::before,
.box:hover::before {
    opacity: 1;
}

.card.popular,
.current {
    border-color: var(--highlight-contrast) !important;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.13), transparent 38%),
        var(--card);
}

.popular-badge,
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(239, 68, 68, 0.28);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}


/* =========================================================
   09. BUTTON SYSTEM
========================================================= */

button,
.button,
.btn,
input[type="submit"],
input[type="button"],
input[type="reset"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.95rem 1.2rem !important;
    border: 0 !important;
    border-radius: var(--radius-md) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #ffffff !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.25);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        color var(--transition-fast),
        opacity var(--transition-fast);
}

button:hover,
.button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(135deg, var(--primary), #3e42d7) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.34);
}

button:active,
.button:active,
.btn:active {
    transform: scale(0.98);
}

button:disabled,
button[disabled],
.button.disabled,
.btn.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary,
.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #ffffff !important;
}

.btn-secondary,
.button-secondary,
.alt-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.button-secondary:hover,
.alt-button:hover {
    background: linear-gradient(135deg, var(--accent-dark), #7f1d1d) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.30);
}

.btn-outline,
.button-outline {
    background: var(--card) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
}

.btn-outline:hover,
.button-outline:hover {
    background: var(--bg-soft) !important;
    color: var(--primary) !important;
}


/* =========================================================
   10. FORMS
========================================================= */

input,
textarea,
select {
    width: 100%;
    min-height: 46px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    color: var(--text);
    font-size: 1rem;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

input[type="checkbox"],
input[type="radio"] {
    width: 1.15rem;
    min-height: auto;
    accent-color: var(--primary);
    cursor: pointer;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    display: inline-flex;
    align-items: center;
}


/* =========================================================
   11. TABLES
========================================================= */

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}

table th,
table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

table th {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* =========================================================
   12. NOTICES / ALERTS
========================================================= */

.notice,
.alert,
.message,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    color: var(--text);
    box-shadow: var(--shadow-xs);
    line-height: 1.55;
}

.notice-success,
.alert-success,
.woocommerce-message {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.notice-info,
.alert-info,
.woocommerce-info {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.18);
}

.notice-error,
.alert-error,
.woocommerce-error {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.18);
}

.notice-warning,
.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.24);
    color: #b45309;
}

.woocommerce-notices-wrapper {
    margin-bottom: 1.5rem;
}


/* =========================================================
   13. PRICING / PACK COMPONENTS
   Optional reusable components from the supplied pricing CSS.
========================================================= */

.toggle-container {
    position: relative;
    display: flex;
    align-items: center;
    width: min(100%, 430px);
    padding: 0.45rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

.toggle-radio {
    display: none;
}

.toggle-label {
    position: relative;
    z-index: 2;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-pill);
    color: var(--muted);
    font-size: clamp(0.82rem, 2.5vw, 0.95rem);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.toggle-slider {
    position: absolute;
    z-index: 1;
    top: 0.45rem;
    bottom: 0.45rem;
    left: 0.45rem;
    width: calc(50% - 0.45rem);
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.26);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

#monthly:checked ~ .toggle-slider {
    transform: translateX(0);
}

#annual:checked ~ .toggle-slider {
    transform: translateX(100%);
}

#monthly:checked ~ label[for="monthly"],
#annual:checked ~ label[for="annual"] {
    color: var(--text-inverse);
}

.discount-tag {
    display: inline-flex;
    align-items: center;
    margin-left: 0.4rem;
    padding: 0.22rem 0.45rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-name {
    margin: 0 0 0.45rem;
    color: var(--text);
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    font-weight: 800;
    line-height: 1.2;
}

.plan-desc {
    min-height: 2.4rem;
    margin: 0 0 1.6rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
}

.price {
    color: var(--text);
    font-size: clamp(2.65rem, 10vw, 3.65rem);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 0.95;
    transition: opacity 150ms ease;
}

.period {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 650;
}

.features-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.9rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.45;
}

.feature-item svg,
.feature-item-check {
    flex: 0 0 auto;
    width: 20px;
    min-width: 20px;
    height: 20px;
    color: var(--success);
}

.feature-item.disabled {
    color: var(--muted);
    opacity: 0.64;
}

.feature-item.disabled svg,
.feature-item.disabled .feature-item-check {
    color: var(--muted);
    opacity: 0.7;
}

.feature-item strong,
.nan_span_pack {
    color: var(--highlight-contrast);
    font-weight: 800;
}

.nan_span_pack {
    margin-left: 10px;
    text-transform: uppercase;
}

.card_year {
    display: none;
}

.current-info {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 750;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.24);
}


/* =========================================================
   14. IMAGES / MEDIA
========================================================= */

.card img,
.panel img,
.box img,
.woocommerce img {
    border-radius: var(--radius-md);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.card:hover img,
.panel:hover img,
.box:hover img {
    transform: scale(1.02);
}


/* =========================================================
   15. LISTS
========================================================= */

ul,
ol {
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.45rem;
}


/* =========================================================
   16. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.25);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.45);
}


/* =========================================================
   17. ANIMATIONS / EFFECTS
========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.pulse {
    animation: pulseGlow 2s infinite;
}


/* =========================================================
   18. PROCESSING / LOADING OVERLAY
========================================================= */

body.processing {
    pointer-events: none;
}

body.processing::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

body.processing::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000000;
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}


/* =========================================================
   19. UTILITIES
========================================================= */

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.hidden {
    display: none !important;
}

.rounded {
    border-radius: var(--radius-md) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.bg-card {
    background: var(--card) !important;
}

.bg-soft {
    background: var(--bg-soft) !important;
}


/* =========================================================
   20. DARK MODE COMPONENT ADJUSTMENTS
========================================================= */

body.dark-mode .card,
body.dark-mode .panel,
body.dark-mode .widget,
body.dark-mode .box,
body.dark-mode .toggle-container,
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select,
body.dark-mode .notice,
body.dark-mode .alert,
body.dark-mode .message,
body.dark-mode .woocommerce-message,
body.dark-mode .woocommerce-info,
body.dark-mode .woocommerce-error {
    background: var(--card);
    border-color: var(--border);
    color: var(--text);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: var(--card-soft);
}

body.dark-mode .card.popular,
body.dark-mode .current {
    background:
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.18), transparent 38%),
        var(--card);
}

body.dark-mode .header h1,
body.dark-mode .page-header h1,
body.dark-mode .section-header h1,
body.dark-mode .price,
body.dark-mode .feature-item {
    color: var(--text);
}

body.dark-mode .plan-name {
    color: var(--highlight-contrast);
    text-transform: uppercase;
}

body.dark-mode .header p,
body.dark-mode .page-header p,
body.dark-mode .section-header p,
body.dark-mode .plan-desc,
body.dark-mode .period,
body.dark-mode .feature-item.disabled {
    color: var(--muted);
}

body.dark-mode .toggle-slider,
body.dark-mode .current-info,
body.dark-mode .btn-primary,
body.dark-mode .button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}


/* =========================================================
   21. RESPONSIVE — TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container,
    .site-main,
    .content-area,
    main {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    section {
        margin: 2rem 0;
    }

    .card,
    .panel,
    .widget,
    .box {
        border-radius: 18px;
        padding: 1rem;
    }

    button,
    .button,
    .btn,
    input[type="submit"],
    input[type="button"],
    input[type="reset"] {
        width: 100%;
        min-height: 46px;
    }

    .grid {
        grid-template-columns: 1fr;
        max-width: 430px;
        margin-inline: auto;
        gap: 1rem;
    }

    .popular-badge {
        top: 0.85rem;
        right: 0.85rem;
        padding: 0.36rem 0.65rem;
        font-size: 0.66rem;
    }

    .plan-desc {
        min-height: auto;
        margin-bottom: 1.25rem;
    }

    .price-container {
        margin-bottom: 1.35rem;
    }

    .features-list {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    table,
    table tbody,
    table tr,
    table th,
    table td {
        display: block;
        width: 100%;
    }

    table thead {
        display: none;
    }

    table tr {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    table td,
    table th {
        padding: 0.45rem 0;
        border-bottom: 0;
        text-align: left;
    }
}


/* =========================================================
   22. RESPONSIVE — SMALL PHONES
========================================================= */

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .card,
    .panel,
    .widget,
    .box {
        border-radius: 16px;
    }

    button,
    .button,
    .btn {
        min-height: 46px;
        padding: 0.85rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .toggle-container {
        width: 100%;
        padding: 0.35rem;
    }

    .toggle-label {
        min-height: 40px;
        padding: 0.5rem 0.65rem;
        font-size: 0.78rem;
    }

    .toggle-slider {
        top: 0.35rem;
        bottom: 0.35rem;
        left: 0.35rem;
        width: calc(50% - 0.35rem);
    }

    .discount-tag {
        display: none;
    }

    .feature-item {
        font-size: 0.88rem;
    }

    .current-info {
        font-size: 0.84rem;
    }
}

/*CUSTOM*/
button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit{
	width:100% !important;
}

button.woocommerce-button.button.woocommerce-form-login__submit{
	width:100% !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset !important;
    -webkit-text-fill-color: var(--text-inverse) !important;
}

.btn{
	width:100% !important;
}

.nan_not_loggedin_msg {
    display: block;
    width: min(90%, 720px);
    margin: 10px auto;
    padding: 12px 16px;

    border-radius: var(--radius);
    color: #ffffff;
    font-size: var(--font-sm);
    font-weight: 800;
    text-align: center;
    z-index: 99999;
	 background: var(--black);
    text-transform: uppercase;
}

.nan_not_loggedin_msg > a {
    color: #ffffff !important;
}

