.panel-limit-info-wrap {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 1.5rem;
}
.panel-limit-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.panel-limit-info:hover {
    color: var(--green);
}
.panel-limit-label {
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
}
.panel-limit-info:hover .panel-limit-label {
    color: var(--green);
}
.panel-limit-popup {
    display: none;
    position: absolute;
    top: 2.0rem;
    left: 50%;
    transform: translateX(-50%);
    background: #2c2f34;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,47,52,0.18);
    padding: 1rem 1rem 0.8rem 1rem;
    min-width: 260px;
    max-width: 320px;
    z-index: 100;
    font-size: 0.95rem;
}

.panel-limit-popup.show,
.panel-limit-info-wrap:hover .panel-limit-popup,
.panel-limit-popup:hover {
    display: block;
}
.panel-limit-popup-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.panel-limit-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.panel-limit-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}
.panel-limit-title {
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}
.panel-limit-bar-wrap {
    display: block;
    width: 100%;
}
.panel-limit-bar-bg {
    width: 100%;
    height: 6px;
    background: #44474d;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.panel-limit-bar {
    height: 100%;
    background: var(--green);
    border-radius: 6px;
    transition: width 0.3s;
}
.panel-limit-bar.near-limit { background: #f59e0b; }
.panel-limit-bar.at-limit { background: #ef4444; }
.panel-limit-value {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    color: #fff;
    min-width: 56px;
    text-align: right;
    white-space: nowrap;
}
.panel-limit-popup .qr-premium-btn {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
}
.panel-limit-popup .qr-premium-btn .iconify { font-size: 1.05rem; }

@media (max-width: 575.98px) {
    .panel-limit-popup {
        min-width: 220px;
        padding: 0.8rem 0.8rem 0.6rem 0.8rem;
        left: -25%;
        transform: translateX(-50%);
    }
    .panel-limit-bar-bg { height: 5px; }
    .panel-limit-info-wrap {
        margin-right: 0 !important;
    }
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/Poppins-Light.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Poppins-Regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/Poppins-Medium.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/Poppins-SemiBold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Poppins-Bold.woff2') format('woff2');
}

:root {
    --green: rgba(13, 147, 97, 1);
    --black: rgba(44, 47, 52, 1);
    --gray: rgba(139, 139, 139, 1);
    --soft-green: rgba(13, 147, 97, 0.1);

    --off-white: rgba(243, 243, 243, 1);
    --poppins: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    width: 100%;
}


body {
    font-family: var(--poppins);
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.center-content > *:last-child {
    margin-bottom: auto;
}

.center-content .container {
    margin: auto;
}

footer {
    flex-shrink: 0;
}

.btn-green {
    background-color: var(--green);
    color: white;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.btn-green:hover {
    background-color: white;
    color: var(--green);
    border-color: var(--green);
}

.btn-green:disabled {
    background-color: rgba(139, 139, 139, 0.4);
    color: white;
    border-color: transparent;
    cursor: not-allowed;
}

.btn-green:disabled:hover {
    background-color: rgba(139, 139, 139, 0.4);
    color: white;
    border-color: transparent;
}

.white-btn {
    background-image: linear-gradient(to right, var(--green) 50%, var(--off-white) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.white-btn:hover {
    background-position: 0 0;
    color: white;
    border-color: var(--green);
}

.white-btn:hover .iconify,
.btn-green .iconify {
    color: white;
}

.white-btn .iconify,
.btn-green:hover .iconify {
    color: var(--green);
}

.form-label,
.form-check-label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    color: var(--black);
}

.form-control {
    border: 1px solid rgba(233, 233, 233, 1);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: clamp(12px, 1vw, 14px);
    gap: 0.5rem;
}

.form-control::placeholder {
    color: var(--gray);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 400;
}

.form-control:focus {
    border-color: var(--green);
    box-shadow: none;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 4px;
    border: 1px solid rgba(233, 233, 233, 1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
    box-shadow: none;
}

.form-check-input:focus {
    box-shadow: none;
}

.otp-input {
    flex: 1;
    height: 3.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(233, 233, 233, 1);
    border-radius: 8px;
    max-width: 4.5rem;

    min-width: 0;

}

.otp-input:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 147, 97, 0.2);
}

@media (max-width: 576px) {
    .otp-input {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        margin: 0 0.125rem;
    }



}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #f04438;
}

.is-invalid {
    border-color: #f04438 !important;
}

.is-invalid:focus {
    box-shadow: none !important;
}

.form-group-validation {
    position: relative;
    margin-bottom: 1rem;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-box {
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden;
    animation: toast-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-box.hide {
    animation: toast-out 0.5s ease forwards;
}

@keyframes toast-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes toast-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--black);
}

.toast-message {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    animation: toast-progress 3s linear forwards;
}

@keyframes toast-progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.toast-success .toast-icon {
    background: var(--soft-green);
    color: var(--green);
}

.toast-success .toast-progress-bar {
    background: var(--green);
}

.toast-error .toast-icon {
    background: rgba(240, 68, 56, 0.1);
    color: rgba(240, 68, 56, 1);
}

.toast-error .toast-progress-bar {
    background: rgba(240, 68, 56, 1);
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle-icon:hover {
    color: var(--green);
}

.password-wrapper input {
    padding-right: 45px;
}

.gradient-green-btn {
    background: linear-gradient(to right, rgba(44, 47, 52, 1), rgba(37, 70, 62, 1), rgba(13, 147, 97, 1));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.gradient-green-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 147, 97, 0.3);
    color: white;
}

.navbar-sticky-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}

.form-select{
    font-size: 14px;
}

.form-select:focus,
.form-control:focus {
    border-color: #e2e8f0;
    box-shadow: none;
    outline: none;
}
.navbar {
    background-color: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.navbar .nav-link {
    color: var(--black);
    font-size: clamp(12px, 1.25vw, 14px);
    font-weight: 500;
    transition: all 0.4s ease;
}

.navbar .nav-link:hover {
    color: var(--green);
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: var(--green); 
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.navbar-toggler:hover {
    background-color: rgba(13, 147, 97, 0.9); 
}

.navbar-toggler:active {
    transform: scale(0.95); 
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border: 2px solid var(--soft-green);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar:hover {
    border-color: var(--green);
}

.navbar-user-label {
    font-size: clamp(12px, 1.25vw, 14px);
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    transition: color 0.4s ease;
    text-decoration: none;
}

.navbar-user-label:hover {
    color: var(--green);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-item {
    font-size: 14px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    color: var(--black);
}

.dropdown-item:hover {
    background-color: var(--soft-green);
    color: var(--green);
}

.dropdown-item.text-danger:hover {
    background-color: #fff5f5;
    color: #dc3545;
}

.dropdown-header {
    font-weight: 600;
    color: var(--black);
    padding: 0.6rem 1rem;
}

.navbar-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
body.navbar-sidebar-open .navbar-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.navbar-sidebar-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    opacity: 0.9;
}
.navbar-sidebar-close:hover {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .navbar-sidebar-close {
        display: flex;
    }
    .navbar-collapse {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85%;
        height: 100%;
        background: var(--green);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 3.5rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.2s ease;
        z-index: 1050;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    body.navbar-sidebar-open .navbar-collapse {
        transform: translateX(0);
    }
    body.navbar-sidebar-open {
        overflow: hidden;
    }
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        width: 100%;
    }
    .navbar-collapse .nav-item {
        width: 100%;
        text-align: left;
        margin: 0;
    }
    .navbar-collapse .nav-link {
        display: block;
        text-align: left;
        padding: 0.75rem 0;
        color: #fff !important;
        font-weight: 500;
    }
    .navbar-collapse .nav-link:hover {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .navbar-collapse .navbar-desktop-auth {
        display: none !important;
    }

    .navbar-collapse .d-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 0;
        width: 100%;
    }
    .navbar-sidebar-divider {
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.35);
        margin: 1rem 0;
        width: 100%;
    }
    .navbar-sidebar-mobile-auth {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .navbar-sidebar-mobile-auth a {
        color: #fff !important;
        text-decoration: none;
        font-size: clamp(12px, 1.25vw, 14px);
        font-weight: 500;
        padding: 0.75rem 0;
        transition: opacity 0.2s;
    }
    .navbar-sidebar-mobile-auth a:hover {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    .navbar-sidebar-mobile-auth a.sidebar-logout {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .navbar-collapse .white-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }
    .navbar-collapse .btn-green {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    .navbar-collapse .btn-green:hover {
        background: rgba(255, 255, 255, 0.35);
        color: #fff;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .navbar .container {
        flex-direction: column !important;
        align-items: center;
        max-width: 100% !important;
    }

    .navbar-brand {
        margin-right: 0 !important;
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .navbar-collapse {
        width: 100%;
        display: flex !important;
        flex-basis: auto;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-nav {
        margin-left: 0 !important;
        margin-right: auto;
        flex-direction: row !important;
    }

    .navbar-nav .nav-item {
        margin-right: 0.5rem;
    }

    .navbar-collapse .d-flex {
        margin-top: 0 !important;
        flex-direction: row !important;
    }
}

.site-footer {
    background-color: var(--black);
    color: #fff;
    padding: 5rem 0 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--green);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    padding-left: 0;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: var(--green);
    transform: translateY(-3px);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-logo {
    display: block;
    opacity: 0.9;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-payment span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

#agreementUpdateModal + .modal-backdrop,
body.agreement-modal-open .modal-backdrop {
    z-index: 99998 !important;
}

.footer-payment img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-payment img:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 991px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-bottom-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-paytr-logo {
        margin-left: 0 !important;
    }

    .footer-legal {
        justify-content: center;
    }

}


.dropdown-item.active, .dropdown-item:active {
    background-color: var(--green);
    color: #fff;
}

.qr-premium-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(120deg, #179e5c 0%, #13b77a 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(13,147,97,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.qr-premium-btn .iconify {
    color: #fff !important;
    font-size: 1.3em;
}
.qr-premium-btn .upgrade-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    display: inline;
}
.qr-premium-btn:hover {
    background: linear-gradient(120deg, #13b77a 0%, #179e5c 100%);
    box-shadow: 0 4px 16px rgba(13,147,97,0.16);
}
.qr-premium-btn:active {
    background: linear-gradient(120deg, #179e5c 0%, #13b77a 100%);
    box-shadow: 0 2px 8px rgba(13,147,97,0.10);
    transform: none;
}

.btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    color: black;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    box-shadow: none !important;
}

.settings-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}
.settings-modal.is-visible { display: flex; opacity: 1; }
.settings-modal .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(20px);
    transition: transform 0.3s;
}
.settings-modal.is-visible .modal-content { transform: translateY(0); }
.modal-icon {
    width: 60px; height: 60px;
    background: #fef2f2; color: #ef4444;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 1.5rem;
}
.modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.modal-btn {
    flex: 1; padding: 0.75rem;
    border-radius: 12px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; border: none;
}
.btn-cancel { background: #f3f4f6; color: #4b5563; }
.btn-cancel:hover { background: #e5e7eb; }

.text-primary {
    color: var(--green) !important;
    font-size: clamp(16px, 2.5vw, 24px) !important;
}

.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99990;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 24px rgba(44,47,52,0.10);
    padding: 1rem 0;
    animation: cc-slide-up 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes cc-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cc-banner.cc-hiding {
    animation: cc-slide-down 0.25s ease forwards;
}

@keyframes cc-slide-down {
    to { transform: translateY(100%); opacity: 0; }
}

.cc-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cc-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 240px;
}

.cc-icon { font-size: 1.4rem; line-height: 1; margin-top: 2px; flex-shrink: 0; }

.cc-banner-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.25rem;
}

.cc-banner-desc {
    font-size: 0.8125rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.cc-link {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cc-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.25rem;
    font-family: var(--poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    line-height: 1;
}

.cc-btn-primary {
    background: var(--green);
    color: #fff;
    border: 1px solid transparent;
}
.cc-btn-primary:hover {
    background: #fff;
    color: var(--green);
    border-color: var(--green);
}

.cc-btn-secondary {
    background: var(--off-white);
    color: var(--black);
    border: 1px solid rgba(233,233,233,1);
}
.cc-btn-secondary:hover {
    background: #ebebeb;
}

.cc-btn-outline {
    background: transparent;
    color: var(--gray);
    border: 1px solid rgba(233,233,233,1);
}
.cc-btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.cc-modal {
    position: fixed;
    inset: 0;
    z-index: 99995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cc-modal[hidden] { display: none; }

.cc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44,47,52,0.45);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.cc-modal-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(44,47,52,0.18);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    animation: cc-modal-in 0.3s cubic-bezier(0.34,1.3,0.64,1) both;
}

@keyframes cc-modal-in {
    from { transform: scale(0.92) translateY(16px); opacity: 0; }
    to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

.cc-modal-header {
    padding: 1.5rem 1.5rem 0;
}

.cc-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.cc-modal-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cc-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.cc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cc-row:last-child { border-bottom: none; }

.cc-row-info { flex: 1; }

.cc-row-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.25rem;
}

.cc-row-desc {
    font-size: 0.8125rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.cc-toggle { flex-shrink: 0; cursor: pointer; }
.cc-toggle-disabled { cursor: not-allowed; }

.cc-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }

.cc-toggle-track {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: rgba(139,139,139,0.25);
    position: relative;
    transition: background 0.22s ease;
    display: block;
}

.cc-toggle-track.cc-toggle-on,
.cc-toggle-input:checked + .cc-toggle-track {
    background: var(--green);
}

.cc-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.cc-toggle-input:checked + .cc-toggle-track .cc-toggle-thumb {
    transform: translateX(20px);
}

.cc-toggle-on .cc-toggle-thumb {
    transform: translateX(20px);
}

@media (max-width: 640px) {
    .cc-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cc-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .cc-modal-footer {
        flex-direction: column-reverse;
    }
    .cc-modal-footer .cc-btn {
        width: 100%;
        justify-content: center;
    }
}

.required-star {
    color: #ef4444;
    font-size: clamp(10px, 1vw, 14px);
    margin-left: 2px;
}