/* ===============================================
Auth Page Css Start
=============================================== */
.auth-page {
    min-height: inherit;
    display: flex;
    align-items: center;

    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* padding: 100px 0; */
    padding-top: 50px;
    padding-bottom: 50px;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: var(--ColorPrimary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--BoxShadow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.auth-logo i {
    font-size: 32px;
    color: var(--ColorLightPrimary);
}

.auth-title {
    font-size: var(--FontSizeExtraLarge);
    color: var(--ColorDarkPrimary);
    margin-bottom: 10px;
    font-weight: 600;
}

.auth-subtitle {
    color: var(--ColorDarkSecondary);
    font-size: var(--FontSizeSmall);
}



.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ColorDarkSecondary);
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--ColorPrimary);
    background: rgba(var(--ColorPrimaryRGB), 0.1);
}

.password-toggle:focus {
    outline: none;
    color: var(--ColorPrimary);
    background: rgba(var(--ColorPrimaryRGB), 0.1);
}

/* Unused - only in old commented code */
/*
.forgot-link {
    text-align: center;
    margin-bottom: 30px;
}

.forgot-link a {
    color: var(--ColorPrimary);
    text-decoration: none;
    font-size: var(--FontSizeSmall);
    transition: all 0.3s ease;
}

.forgot-link a:hover {
    color: var(--ColorDarkPrimary);
    text-decoration: underline;
}
*/

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--ColorLightSecondary, #e2e8f0);
    transform: translateY(-50%);
    z-index: 0;
}

.divider span {
    background: var(--ColorLightPrimary, #ffffff);
    padding: 12px 24px;
    color: var(--ColorDarkSecondary, #64748b);
    font-size: var(--FontSizeExtraSmall, 14px);
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid var(--ColorPrimary, #6366f1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Unused - auth-btn class not used in auth forms */
/*
.auth-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.auth-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--ColorLightPrimary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
*/


/* ===============================================
Auth Components CSS - Registration & Login
=============================================== */


.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--border, #e2e8f0);
    z-index: 0;
}

.step-indicator::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    height: 3px;
    background: var(--ColorPrimary, #6366f1);
    z-index: 1;
    transition: width 0.4s ease;
}

.step-indicator[data-step="1"]::after {
    width: 0%;
}

.step-indicator[data-step="2"]::after {
    width: calc(50% - 20px);
}

.step-indicator[data-step="3"]::after {
    width: calc(100% - 40px);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ColorLightPrimary, #ffffff);
    border: 3px solid var(--border, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary, #64748b);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.step.active .step-number {
    background: var(--ColorPrimary, #6366f1);
    border-color: var(--ColorPrimary, #6366f1);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-number {
    background: var(--ColorPrimary);
    border-color: var(--ColorPrimary);
    color: var(--ColorLightPrimary);
}

.step.completed .step-number::after {
    content: '✓';
    font-size: 16px;
}

.step-label {
    font-size: 12px;
    color: var(--text-secondary, #64748b);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--ColorPrimary, #6366f1);
    font-weight: 600;
}


.contact-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-secondary, #f8fafc);
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-tab {
    padding: 14px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-tab:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--ColorPrimary, #6366f1);
}

.contact-tab.active {
    background: var(--ColorPrimary, #6366f1);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.contact-tab i {
    font-size: 18px;
}

/* .contact-tabs {
    margin-bottom: 24px;
} */

.contact-tabs .tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.contact-tabs .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Unused - country-code class not used, using form-control instead */
/*
.country-code {
    width: 100px;
    padding: 15px 12px;
    border: 2px solid var(--ColorPrimary);
    border-radius: 15px 0 0 15px;
    border-right: none;
    font-size: 15px;
    background: var(--ColorLightPrimary);
    color: var(--ColorDarkPrimary);
    outline: none;
}
*/


/* OTP Boxes - Reusable for registration, forgot password, and contact */
#signup-step-2 .otp-boxes,
#forgot-step-2 .otp-boxes,
#contact-step-2 .otp-boxes {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

#signup-step-2 .otp-box,
#forgot-step-2 .otp-box,
#contact-step-2 .otp-box {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid var(--border, #e2e8f0);
    border-radius: 12px;
    background: var(--ColorLightPrimary, #ffffff);
    color: var(--ColorDarkPrimary, #0f172a);
    transition: all 0.3s ease;
    outline: none;
}

#signup-step-2 .otp-box:focus,
#forgot-step-2 .otp-box:focus,
#contact-step-2 .otp-box:focus {
    border-color: var(--ColorPrimary, #6366f1);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: scale(1.05);
}

#signup-step-2 .otp-box.filled,
#forgot-step-2 .otp-box.filled,
#contact-step-2 .otp-box.filled {
    border-color: var(--ColorPrimary, #6366f1);
    background: rgba(99, 102, 241, 0.1);
}

#signup-step-2 .otp-box.error,
#forgot-step-2 .otp-box.error,
#contact-step-2 .otp-box.error {
    border-color: var(--error, #ef4444);
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
}


.contact-display {
    background: var(--ColorLightSecondary);
    border-radius: 12px;
    padding: 16px;
    /* margin-bottom: 24px; */
    text-align: center;
}



#signup-step-2 .otp-help,
#forgot-step-2 .otp-help,
#contact-step-2 .otp-help {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary, #64748b);
    margin-top: 12px;
    font-weight: 500;
}

#signup-step-2 .otp-help strong,
#forgot-step-2 .otp-help strong,
#contact-step-2 .otp-help strong {
    color: var(--ColorPrimary, #6366f1);
    font-weight: 600;
}


/* #signup-step-2 .resend-section {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    background: var(--bg-secondary, #f8fafc);
    border-radius: 12px;
} */

#signup-step-2 .btn-link {
    background: none;
    color: var(--ColorPrimary, #6366f1);
    border: 2px solid var(--ColorPrimary, #6366f1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    display: inline-block;
}

#signup-step-2 .btn-link:hover:not(:disabled) {
    background: var(--ColorPrimary, #6366f1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

#signup-step-2 .btn-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--border, #e2e8f0);
    color: var(--text-secondary, #64748b);
}

#signup-step-2 .timer,
#forgot-step-2 .timer,
#contact-step-2 .timer {
    font-size: 13px;
    color: var(--text-secondary, #64748b);
    font-weight: 500;
}

/* #signup-step-2 .back-btn {
    text-align: center;
    margin-top: 20px;
} */

#signup-step-2 .back-btn .btn-link {
    background: none;
    color: var(--text-secondary, #64748b);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#signup-step-2 .back-btn .btn-link:hover {
    background: var(--bg-secondary, #f8fafc);
    color: var(--ColorDarkPrimary, #0f172a);
    border-color: var(--text-secondary, #64748b);
}


.login-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: var(--bg-secondary, #f8fafc);
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.login-tab {
    border: 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-tab.active {
    background: var(--ColorPrimary, #6366f1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, .25);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.form-wrap {
    margin-bottom: 14px;
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
}

.remember-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn .btn-text {
    pointer-events: none;
}

.hidden {
    display: none !important;
}

/* ===============================================
Auth Page Css End
=============================================== */


/* ===============================================
Form Error & Message System
=============================================== */

/* --- Invalid Form Controls --- */
.is-invalid {
    border-color: #ef4444 !important;
}

.form-control.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* --- Error Messages --- */

/* Base error message - for inline field errors */
.error-message {
    display: none;
    margin-top: 6px;
    color: #ef4444;
    font-size: 13px;
    line-height: 1.4;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    border-radius: 8px;
    animation: slideInDown 0.3s ease-out;
}

/* Show error message when not hidden */
.error-message:not(.hidden) {
    display: block !important;
}

.error-message i {
    margin-right: 6px;
    color: #ef4444;
}

.error-message .error-text {
    display: block;
}

/* Support for multiple errors in error-text */
.error-message .error-text>div {
    margin-top: 4px;
    line-height: 1.4;
}

.error-message .error-text>div:first-child {
    margin-top: 0;
}

/* General error message - for form-level errors */
.error-message.general {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    background: #fee;
    color: #c33;
    padding: 12px 15px;
    border-left: 4px solid #c33;
    border-radius: 10px;
    font-size: var(--FontSizeExtraSmall, 14px);
    animation: shake 0.5s ease-in-out;
}

.error-message.general.hidden {
    display: none;
}

/* Bootstrap-style invalid feedback */
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: var(--FontSizeExtraSmall, 14px);
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #dc3545;
    animation: slideInDown 0.3s ease-out;
}

/* --- Success Messages --- */
.success-message {
    display: block;
    background: #efe;
    color: #363;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: var(--FontSizeExtraSmall, 14px);
    border-left: 4px solid #363;
    animation: slideInDown 0.5s ease-out;
}

.success-message.hidden {
    display: none;
}

.success-message i {
    margin-right: 8px;
    color: #363;
}

/* --- Warning Messages --- */
.warning-message {
    display: block;
    background: #fffbeb;
    color: #92400e;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: var(--FontSizeExtraSmall, 14px);
    border-left: 4px solid #f59e0b;
    animation: slideInDown 0.5s ease-out;
}

.warning-message.hidden {
    display: none;
}

.warning-message i {
    margin-right: 8px;
    color: #f59e0b;
}

/* --- Info Messages --- */
.info-message {
    display: block;
    background: #eff6ff;
    color: #1e40af;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: var(--FontSizeExtraSmall, 14px);
    border-left: 4px solid #3b82f6;
    animation: slideInDown 0.5s ease-out;
}

.info-message.hidden {
    display: none;
}

.info-message i {
    margin-right: 8px;
    color: #3b82f6;
}

/* --- Animations --- */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ===============================================
Form Error & Message System End
=============================================== */






/* button css start  */
.btn {
    padding: auto 20px !important;
    border-radius: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn>i {
    margin-bottom: 3px;
    ;
}

.btn-pill {
    border-radius: 50px;
}

.btn-theme {
    /* border-radius: 50px; */
    background: var(--ColorPrimary);
    color: var(--ColorLightPrimary);
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; */
    overflow: hidden;
    transition: .2s linear;
    position: relative;
    box-shadow: var(--BoxShadow) !important;
    z-index: 2;
    border: 1px solid var(--ColorPrimary);
    min-height: 40px;
}

.btn-theme:hover {
    color: var(--ColorPrimary);
    background: var(--ColorLightPrimary);
    border: 1px solid var(--ColorPrimary);
}

.btn-theme:focus {
    outline: none !important;
    box-shadow: var(--BoxShadow);
}

.btn-theme:active {
    box-shadow: var(--BoxShadow);
}

.btn-theme,
.btn-theme * {
    position: relative;
    z-index: 2;
}





.btn-theme-light {
    border-radius: 10px;
    background: var(--ColorLightPrimary);
    color: var(--ColorPrimary);
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; */
    overflow: hidden;
    transition: .2s linear;
    position: relative;
    box-shadow: var(--BoxShadow) !important;
    z-index: 2;
    border: 1px solid var(--ColorLightPrimary);
    min-height: 40px;
}

.btn-theme-light:hover {
    color: var(--ColorLightPrimary);
    background: var(--ColorPrimary);
    border: 1px solid var(--ColorLightPrimary);
}

.btn-theme-light:focus {
    outline: none !important;
    box-shadow: var(--BoxShadow);
}

.btn-theme-light:active {
    box-shadow: var(--BoxShadow);
}

.btn-theme-light,
.btn-theme-light * {
    position: relative;
    z-index: 2;
}





.btn-icon {
    min-height: 40px;
    min-width: 40px;
}







/* Ripple effect */
.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--ColorPrimary);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1;
    /* always behind the content */
    opacity: 0;
}

/* Ripple animation when active */
.ripple:active::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Ripple animation class for after click release */
.ripple.ripple-animating::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Ripple shrinking animation */
.ripple.ripple-shrinking::before {
    width: 0;
    height: 0;
    opacity: 0;
}

/* CRITICAL FIX: Override hover state during active ripple */
.btn-theme.ripple:active,
.btn-theme.ripple:active *,
.ripple:active,
.ripple:active * {
    color: var(--ColorLightPrimary) !important;
    transition: color 0.3s ease-in-out !important;
}

/* button css end  */











/* ==========================================================================
   MODERN ASSET SHEBA CSS - CLEAN VERSION
   ========================================================================== */

/* Hide native search clear button */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* ==========================================================================
   LAYOUT & RESPONSIVE
   ========================================================================== */



/* ====================================
   HEADER BASE
==================================== */
header {
    background: var(--ColorLightPrimary);
    border-bottom: 1px solid var(--ColorPrimaryAlpha);
    box-shadow: var(--BoxShadow);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header .side-content {
    display: flex;
    align-items: center;
    height: auto;
}

/* ====================================
   LEFT & RIGHT SIDE CONTENT
==================================== */
header .left-side .side-content,
header .right-side .side-content {
    min-width: 300px;
    max-width: 300px;
}

@media (max-width: 1200px) {

    header .left-side .side-content,
    header .right-side .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
    }
}

/* ====================================
   RIGHT SIDE MOBILE FIXED
==================================== */
@media (max-width: 991.98px) {
    header .right-side {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        background: var(--ColorLightPrimary);
        z-index: 1000;
        padding: 10px;
        border-radius: 10px 10px 0 0;
        height: auto !important;
        justify-content: center;
        gap: 10px;
    }
}

/* ====================================
   LEFT SIDE MOBILE
==================================== */
/* @media (max-width: 991.98px) {
    .left-side .side-content {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 10px;
    }
} */

/* ====================================
   BUTTONS & BRAND
==================================== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

/* ====================================
   MOBILE HEADER PADDING ADJUST
==================================== */




/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar-nav .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px 20px;
    position: relative;
    white-space: nowrap;
    color: var(--ColorPrimary);
    font-size: var(--FontSizeSmall) !important;
    border-radius: 100px;
    text-align: start;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    min-height: 50px;
    min-width: 50px;
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    user-select: none;
    text-decoration: none;
    padding-bottom: 15px;
    ;
}

.nav-link span {
    margin-top: 6px;
}

.navbar-nav .nav-item .nav-link.active {
    background: var(--ColorPrimary);
    color: var(--ColorLightPrimary);
}

.navbar-nav .nav-item .nav-link:hover {
    background: var(--ColorLightPrimary);
    color: var(--ColorPrimary);
    box-shadow: var(--BoxShadow);
}

.navbar-nav .nav-item .nav-link:focus {
    outline: none;
    box-shadow: var(--BoxShadow);
}

.navbar-nav .nav-item .nav-link:active {
    box-shadow: var(--BoxShadow);
}

@media (max-width: 767.98px) {
    .navbar-nav .nav-item .nav-link {
        margin: 0;
    }
}




/* ==========================================================================
   DROPDOWN
   ========================================================================== */
/* @media (max-width: 1199.98px) {
    #nav .navbar-nav .nav-item:not(.dropdown) .nav-link {
        gap: 0;
    }
    #nav .navbar-nav .nav-item .nav-link span {
        display: none;
    }
} */

.navbar-nav .nav-item .dropdown-toggle:hover {
    background: var(--ColorLightPrimary);
    color: var(--ColorPrimary);
    box-shadow: var(--BoxShadow);
}

.navbar-nav .nav-item .dropdown-toggle:focus {
    outline: none;
    box-shadow: var(--BoxShadow);
}

.navbar-nav .nav-item .dropdown-toggle:active {
    box-shadow: var(--BoxShadow);
}


.dropdown-menu {
    background: var(--ColorLightPrimary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--ColorPrimaryAlpha);
    border-radius: 12px;
    box-shadow: var(--BoxShadow);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 250px;
    max-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
}


@media (max-width: 1200px) {
    .dropdown-menu {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        max-width: 90vw;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        left: 10px;
        right: 10px;
        transform: none;
        max-width: calc(100vw - 20px);
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .dropdown-menu {
        left: 5px;
        right: 5px;
        max-width: calc(100vw - 10px);
    }
}


.dropdown-menu {
    padding: 10px;
}

.dropdown-menu .dropdown-header {
    color: var(--ColorLightPrimary);
    font-weight: 700;
    font-size: var(--FontSizeSmall);
    background: var(--ColorPrimary);
    border-radius: 10px;
    padding: 10px;
}

.dropdown-menu .dropdown-footer {
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu .dropdown-footer:hover {
    background: var(--ColorPrimary) !important;
    color: var(--ColorLightPrimary) !important;
    box-shadow: var(--BoxShadow);
    cursor: pointer;
}

.dropdown-menu .dropdown-divider {
    margin: 8px 0;
    border-color: var(--ColorPrimaryAlpha);
}

.dropdown-menu .dropdown-item {
    color: var(--ColorDarkPrimary);
    font-size: var(--FontSizeSmall);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--ColorPrimaryAlpha);
    color: var(--ColorPrimary);
    box-shadow: var(--BoxShadow);
}

.dropdown-menu .dropdown-item:active {
    background: var(--ColorPrimary);
    color: var(--ColorLightPrimary);
}

/* Dropdown Arrow Animation */
.dropdown-toggle::after {
    display: none;
    /* Hide default Bootstrap arrow */
}

/* Custom dropdown icon */
.dropdown-toggle::after {
    content: "\f107";
    /* FontAwesome chevron-down icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    margin-left: 8px;
    display: inline-block;
    border: none;
    /* Remove default border */
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
}

.dropdown-item span {
    margin-top: 5px;
}




/* ------------------------------------------------------
CENTRAL SETTINGS START
------------------------------------------------------- */
main .central-side .central-content {
    max-width: 100%;
    width: 100%;
    display: block;
}

/* VARIANTS: Apply min-width: 0 fix at specific breakpoints to match sidebar behavior */

/* XXL: Fix applies >= 1400px */
@media (min-width: 1400px) {
    main .central-side.central-collapse-xxl {
        min-width: 0 !important;
    }
}

/* XL: Fix applies >= 1200px */
@media (min-width: 1200px) {
    main .central-side.central-collapse-xl {
        min-width: 0 !important;
    }
}

/* LG: Fix applies >= 992px */
@media (min-width: 992px) {
    main .central-side.central-collapse-lg {
        min-width: 0 !important;
    }
}

/* MD: Fix applies >= 768px */
@media (min-width: 768px) {
    main .central-side.central-collapse-md {
        min-width: 0 !important;
    }
}

/* SM: Fix applies >= 576px */
@media (min-width: 576px) {
    main .central-side.central-collapse-sm {
        min-width: 0 !important;
    }
}

/* ------------------------------------------------------
CENTRAL SETTINGS END
------------------------------------------------------- */

/* ------------------------------------------------------
SIDEBAR SETTINGS START
------------------------------------------------------- */
main .left-side .side-content,
main .right-side .side-content {
    min-width: 300px;
    max-width: 300px;
    /* height: calc(100vh - 80px); */
    position: sticky;
    top: 78px;
    overflow-y: auto;
    background: #fff;
    z-index: 10;
}

main .left-side .side-content:has(.offcanvas.show),
main .right-side .side-content:has(.offcanvas.show) {
    z-index: 1050 !important;
}

/* LEFT SIDE VARIANTS */
@media (max-width: 1400px) {
    main .left-side.left-collapse-xxl .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 1200px) {
    main .left-side.left-collapse-xl .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 992px) {
    main .left-side.left-collapse-lg .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 768px) {
    main .left-side.left-collapse-md .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }

}

/* RIGHT SIDE VARIANTS */
@media (max-width: 1400px) {
    main .right-side.right-collapse-xxl .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 1200px) {
    main .right-side.right-collapse-xl .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 992px) {
    main .right-side.right-collapse-lg .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 768px) {
    main .right-side.right-collapse-md .side-content {
        width: auto !important;
        min-width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        z-index: 1000 !important;
    }
}

/* ------------------------------------------------------
SIDEBAR SETTINGS END
------------------------------------------------------- */

/* ------------------------------------------------------
OFFCANVAS FIXES START
------------------------------------------------------- */
/* LEFT SIDE VARIANTS */
@media (min-width: 1400px) {
    main .left-side.left-collapse-xl .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-right: none;
        overflow-y: auto;
    }

    main .left-side.left-collapse-xl .side-content .offcanvas-backdrop {
        display: none;
    }

    main .left-side.left-collapse-xl .side-content .offcanvas .btn-clos {
        display: none;
    }
}

@media (min-width: 1200px) {
    main .left-side.left-collapse-lg .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-right: none;
        overflow-y: auto;
    }

    main .left-side.left-collapse-lg .side-content .offcanvas-backdrop {
        display: none;
    }

    main .left-side.left-collapse-lg .side-content .offcanvas .btn-clos {
        display: none;
    }
}

@media (min-width: 992px) {
    main .left-side.left-collapse-md .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-right: none;
        overflow-y: auto;
    }

    main .left-side.left-collapse-md .side-content .offcanvas-backdrop {
        display: none;
    }

    main .left-side.left-collapse-md .side-content .offcanvas .btn-clos {
        display: none;
    }
}

@media (min-width: 768px) {
    main .left-side.left-collapse-sm .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-right: none;
        overflow-y: auto;
    }

    main .left-side.left-collapse-sm .side-content .offcanvas-backdrop {
        display: none;
    }

    main .left-side.left-collapse-sm .side-content .offcanvas .btn-clos {
        display: none;
    }
}

/* RIGHT SIDE VARIANTS */
@media (min-width: 1400px) {
    main .right-side.right-collapse-xl .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-left: none;
        overflow-y: auto;
    }

    main .right-side.right-collapse-xl .side-content .offcanvas-backdrop {
        display: none;
    }

    main .right-side.right-collapse-xl .side-content .offcanvas .btn-clos {
        display: none;
    }
}

@media (min-width: 1200px) {
    main .right-side.right-collapse-lg .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-left: none;
        overflow-y: auto;
    }

    main .right-side.right-collapse-lg .side-content .offcanvas-backdrop {
        display: none;
    }

    main .right-side.right-collapse-lg .side-content .offcanvas .btn-clos {
        display: none;
    }
}

@media (min-width: 992px) {
    main .right-side.right-collapse-md .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-left: none;
        overflow-y: auto;
    }

    main .right-side.right-collapse-md .side-content .offcanvas-backdrop {
        display: none;
    }

    main .right-side.right-collapse-md .side-content .offcanvas .btn-clos {
        display: none;
    }
}

@media (min-width: 768px) {
    main .right-side.right-collapse-sm .side-content .offcanvas {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        visibility: visible;
        transform: none;
        border-left: none;
        overflow-y: auto;
    }

    main .right-side.right-collapse-sm .side-content .offcanvas-backdrop {
        display: none;
    }

    main .right-side.right-collapse-sm .side-content .offcanvas .btn-clos {
        display: none;
    }
}

/* ------------------------------------------------------
OFFCANVAS FIXES END
------------------------------------------------------- */



/* SECTION CSS START */
section .section-body {
    padding: 16px 0;
}

.section-title {
    font-size: var(--FontSizeExtraLarge);
    /* font-weight: 700; */
    color: var(--ColorDarkPrimary);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--ColorDarkSecondary);
    font-size: var(--FontSizeSmall);
    margin-bottom: 0;
}

/* SECTION CSS END */







/* SEARCH RESULT CSS START */
/* Search Section */
.search-section {
    background: linear-gradient(135deg, var(--ColorPrimary) 0%, rgba(var(--ColorPrimaryRGB), 0.9) 100%);
    padding: 40px 0;
    border-radius: 12px;
    /* margin-bottom: 30px; */
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-badge {
    background: var(--ColorLightPrimaryAlpha);
    color: var(--ColorLightPrimary);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: var(--FontSizeSmall);
}

.location-badge:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 100px 18px 20px;
    border-radius: 50px;
    border: 1px solid transparent;
    font-size: var(--FontSizeSmall);
    box-shadow: var(--BoxShadow);
    outline: none;
    background: var(--ColorLightPrimary);
    color: var(--ColorDarkPrimary);
    font-family: var(--FontPrimary);
    transition: all 0.3s;
}

.search-input::placeholder {
    color: var(--ColorDarkSecondary);
}

.search-input:focus {
    box-shadow: var(--BoxShadowHover);
    border-color: var(--ColorPrimary);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ColorLightPrimary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    color: var(--ColorPrimary);
    box-shadow: var(--BoxShadow);
}

.search-btn:hover {
    background: var(--ColorPrimary);
    color: var(--ColorLightPrimary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--BoxShadowHover);
}

.search-clear-btn {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ColorDarkSecondary);
    transition: all 0.3s;
    z-index: 5;
}

.search-clear-btn:hover {
    background: var(--ColorLightSecondary);
    color: var(--ColorDarkPrimary);
}

.search-clear-btn.show {
    display: flex;
}

/* SEARCH RESULT CSS END */

/* CATEGORY LIST CSS START */


/* Category Card */
.category-card {
    background: var(--ColorLightPrimary);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--ColorLightSecondary);
    height: 100%;
    box-shadow: var(--BoxShadow);
}

.category-card:hover {
    /* transform: translateY(-3px); */
    box-shadow: var(--BoxShadowHover);
    border-color: var(--ColorPrimary);
}

.cat-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: white;
    overflow: hidden;
    background: rgba(var(--ColorPrimaryRGB), 0.1);
}

.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cat-icon i {
    color: var(--ColorPrimary);
}

.cat-name {
    font-weight: 600;
    color: var(--ColorDarkPrimary);
    margin-bottom: 5px;
    font-size: var(--FontSizeSmall);
}

.cat-count {
    color: var(--ColorDarkSecondary);
    font-size: var(--FontSizeExtraSmall);
}

/* CATEGORY LIST CSS END */


/* ADS LISTING CSS START */
/* Product Card */
.product-card {
    background: var(--ColorLightPrimary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--ColorLightSecondary);
    /* height: 100%; */
    box-shadow: var(--BoxShadow);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--BoxShadowHover);
    border-color: var(--ColorPrimary);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: var(--FontSizeExtraSmall);
    font-weight: 600;
    z-index: 2;
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-hot {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.badge-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--ColorDarkPrimary);
}

.badge-urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ColorLightPrimary);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--BoxShadow);
    transition: all 0.3s;
    z-index: 2;
    cursor: pointer;
    color: var(--ColorDarkSecondary);
    padding: 0;
}

.wishlist-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: scale(1.1);
}

.wishlist-btn.active,
.wishlist-btn[data-is-favorited="true"] {
    background: #fee2e2;
    color: #ef4444;
}

.wishlist-btn i {
    font-size: 16px;
    line-height: 1;
}

/* Default state - show empty heart, hide filled heart */
.wishlist-btn i.far.fa-heart {
    display: inline-block !important;
}

.wishlist-btn i.fas.fa-heart {
    display: none !important;
}

/* Active/favorited state - hide empty heart, show filled heart */
.wishlist-btn.active i.far.fa-heart,
.wishlist-btn[data-is-favorited="true"] i.far.fa-heart {
    display: none !important;
}

.wishlist-btn.active i.fas.fa-heart,
.wishlist-btn[data-is-favorited="true"] i.fas.fa-heart {
    display: inline-block !important;
}

.product-body {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    color: var(--ColorDarkPrimary);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: var(--FontSizeSmall);
    min-height: 45px;
    line-height: 1.4;
}

.product-location {
    color: var(--ColorDarkSecondary);
    font-size: var(--FontSizeExtraSmall);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    font-size: var(--FontSizeNormal);
    font-weight: bold;
    color: var(--ColorPrimary);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ColorLightSecondary);
    color: var(--ColorDarkSecondary);
    font-size: 48px;
}

/* ADS LISTING CSS END */

/* CTA SECTION CSS START */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ColorPrimary) 0%, rgba(var(--ColorPrimaryRGB), 0.9) 100%);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--ColorLightPrimary);
    /* margin: 40px 0; */
}

.cta-section h3 {
    font-size: var(--FontSizeExtraLarge);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ColorLightPrimary);
}

.cta-section p {
    font-size: var(--FontSizeNormal);
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--ColorLightPrimary);
}

.cta-btn {
    background: var(--ColorLightPrimary);
    color: var(--ColorPrimary);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-size: var(--FontSizeNormal);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--BoxShadow);
}

.cta-btn:hover {
    background: var(--ColorLightPrimary);
    color: var(--ColorDarkPrimary);
    transform: translateY(-2px);
    box-shadow: var(--BoxShadowHover);
}

.cta-btn i {
    font-size: var(--FontSizeNormal);
}

/* CTA SECTION CSS END */


/* FOOTER CSS START */
/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Footer Top Section */
.footer-top {
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    grid-column: span 1;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ColorPrimary), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(var(--ColorPrimaryRGB), 0.4);
    transition: transform 0.3s ease;
}

.brand-icon:hover {
    transform: translateY(-4px) scale(1.05);
}

.brand-icon i {
    font-size: 28px;
    color: white;
}

.brand-name {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ColorPrimary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: var(--FontSizeSmall);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--ColorPrimary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(var(--ColorPrimaryRGB), 0.3);
    border-color: var(--ColorPrimary);
}

/* Footer Columns */
.footer-column h5 {
    font-size: var(--FontSizeLarge);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column h5 i {
    color: var(--ColorPrimary);
    font-size: var(--FontSizeNormal);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: var(--FontSizeSmall);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--ColorPrimary);
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 12px;
    opacity: 0.6;
}

/* Contact Info */
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(var(--ColorPrimaryRGB), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorPrimary);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--ColorPrimary);
    color: white;
    transform: scale(1.1);
}

.contact-text {
    flex: 1;
}

.contact-text span,
.contact-text a {
    color: #94a3b8;
    font-size: var(--FontSizeSmall);
    line-height: 1.6;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--ColorPrimary);
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section h6 {
    color: white;
    font-size: var(--FontSizeNormal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.newsletter-section h6 i {
    color: var(--ColorPrimary);
    margin-right: 0.5rem;
}

.newsletter-section p {
    color: #94a3b8;
    font-size: var(--FontSizeSmall);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: var(--FontSizeSmall);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #64748b;
}

.newsletter-input:focus {
    border-color: var(--ColorPrimary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    background: var(--ColorPrimary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--FontSizeSmall);
}

.newsletter-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(var(--ColorPrimaryRGB), 0.3);
}

/* Footer Middle */
.footer-middle {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ColorPrimary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: var(--FontSizeSmall);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

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

.copyright {
    color: #64748b;
    font-size: var(--FontSizeSmall);
}

.copyright span {
    color: var(--ColorPrimary);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: var(--FontSizeSmall);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--ColorPrimary);
}

.footer-bottom-links .separator {
    color: #475569;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-name {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .newsletter-section {
        padding: 1.5rem;
    }

    .footer-stats {
        grid-template-columns: 1fr;
    }
}

/* FOOTER CSS END */

/* TOAST NOTIFICATIONS CSS START - Using Bootstrap Native Styles */
.toast-container {
    max-width: 400px;
    width: 100%;
}

.toast {
    background: var(--ColorLightPrimary);
    border: 1px solid var(--ColorLightSecondary);
    border-radius: 12px;
    min-width: 300px;
    max-width: 400px;
    margin-bottom: 12px;
}

.toast-header {
    background: transparent;
    border-bottom: 1px solid var(--ColorLightSecondary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.toast-header .toast-icon.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.toast-header .toast-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-header .toast-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.toast-header .toast-icon.info {
    background: rgba(var(--ColorPrimaryRGB), 0.1);
    color: var(--ColorPrimary);
}

.toast-header .toast-title {
    font-weight: 600;
    font-size: var(--FontSizeSmall);
    color: var(--ColorDarkPrimary);
    margin: 0;
}

.toast-body {
    padding: 12px 16px;
    font-size: var(--FontSizeExtraSmall);
    color: var(--ColorDarkSecondary);
    line-height: 1.5;
}

@media (max-width: 576px) {
    .toast-container {
        max-width: calc(100% - 24px);
        left: 12px;
        right: 12px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* TOAST NOTIFICATIONS CSS END */