

/* Modern Professional Authentication Styles */
:root {
    --primary-color: #b27a01;
    --primary-light: #d4941a;
    --primary-dark: #8a5e01;
    --secondary-color: #d2e7e2;
    --secondary-dark: #a8c8bd;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}


.modal.show .modal-dialog {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: calc(100vh - 2rem) !important;
    margin: 1rem auto !important;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 2rem);
}

/* Modal Base Styles */
.auth-modal-content,
.otp-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    background: var(--white);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.auth-modal-header,
.otp-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.auth-modal-header::before,
.otp-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.auth-modal-icon,
.otp-modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
}

.modal-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.auth-modal-subtitle,
.otp-modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.auth-close-btn,
.otp-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.auth-close-btn:hover,
.otp-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Modal Body */
.auth-modal-body,
.otp-modal-body {
    padding: 1.5rem 2rem 2rem;
    background: var(--gray-50);
    flex: 1;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

/* Toggle Buttons */
.auth-toggle-container {
    margin-bottom: 1.5rem;
}

.auth-toggle-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    background: var(--white);
    padding: 0.375rem;
    border-radius: 14px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border: 1px solid var(--gray-200);
}

.auth-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transform: translateY(-1px);
}

.auth-toggle-btn:not(.active):hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* Form Groups */
.auth-form-group {
    margin-bottom: 1.25rem;
}

.auth-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.875rem;
}

/* Input Wrappers */
.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--gray-400);
    font-size: 1rem;
    z-index: 2;
    transition: color 0.2s ease;
}

.auth-form-control {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--gray-900);
}

.auth-form-control::placeholder {
    color: var(--gray-400);
}

.auth-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(178, 122, 1, 0.1);
}

.auth-form-control:focus+.auth-input-icon {
    color: var(--primary-color);
}

.auth-password-toggle {
    position: absolute;
    right: 1rem;
    border: none;
    background: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: color 0.2s ease;
    z-index: 2;
}

.auth-password-toggle:hover {
    color: var(--gray-600);
}

/* Password Strength Meter */
.auth-password-strength {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.strength-meter {
    flex: 1;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    background: var(--gray-300);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Checkbox Styles */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.auth-checkbox input[type="checkbox"] {
    display: none;
}

.auth-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.auth-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.auth-checkbox input[type="checkbox"]:checked+.auth-checkbox-label .auth-checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-checkbox input[type="checkbox"]:checked+.auth-checkbox-label .auth-checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.auth-checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-checkbox-label a:hover {
    text-decoration: underline;
}

/* Buttons */
.auth-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.auth-primary-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);

}

.auth-guest-btn {
    background: linear-gradient(135deg, #7e7e7e 0%, #383328 100%);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.auth-guest-btn:hover {
    color: #fff;
}

.auth-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.auth-secondary-btn {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-700) 100%);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.auth-secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-loading {
    position: relative;
}

.auth-loading span {
    opacity: 0;
}

.auth-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: auth-spin 1s linear infinite;
}

@keyframes auth-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Google Button */
.auth-google-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.auth-google-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.auth-google-icon {
    width: 20px;
    height: 20px;
}

/* Divider */
.auth-divider {
    text-align: center;
    margin: 1rem 0 0.75rem;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.auth-divider span {
    background: var(--gray-50);
    padding: 0 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

/* Forgot Password Link */
.auth-forgot-link-wrapper {
    margin-top: 0.75rem;
    text-align: right;
}

.auth-forgot-password-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-forgot-password-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Back Button */
.auth-back-to-login {
    margin-bottom: 1.5rem;
}

.auth-back-btn {
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    font-weight: 500;
}

.auth-back-btn:hover {
    color: var(--primary-color);
}

/* Forgot Password Header */
.auth-forgot-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-forgot-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.auth-forgot-header p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Info Box */
.auth-info-box {
    background: linear-gradient(135deg, var(--info) 0%, #60a5fa 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.auth-info-box i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    opacity: 0.9;
}

.auth-info-box p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Error/Success Messages */
.auth-error {
    background: linear-gradient(135deg, var(--error) 0%, #f87171 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.auth-success {
    background: linear-gradient(135deg, var(--success) 0%, #34d399 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* OTP Modal Specific Styles */
.otp-email-display {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.email-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.email-info i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.email-info span {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
}

.email-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-status i {
    color: var(--success);
    font-size: 0.875rem;
}

.email-status span {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

/* OTP Input Grid */
.otp-form-group {
    margin-bottom: 2rem;
}

.otp-form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
    text-align: center;
}

.otp-input-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.otp-digit-input {
    width: 100%;
    height: 3.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--gray-900);
}

.otp-digit-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(178, 122, 1, 0.1);
    transform: scale(1.05);
}

.otp-digit-input.filled {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.otp-digit-input.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* Timer Section */
.otp-timer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timer-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 2;
}

.timer-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 100, 100;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timer-label {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.timer-status {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
}

.timer-status.expired {
    color: var(--error);
}

/* Resend Button */
.otp-resend-btn {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    color: var(--gray-700);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.otp-resend-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.otp-resend-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* OTP Submit Button */
.otp-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.otp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.otp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* OTP Options */
.otp-options {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.otp-help {
    text-align: center;
}

.otp-help p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.otp-help-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.otp-help-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.otp-help-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

/* Terms Modal Styles */
.terms-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(178, 122, 1, 0.2);
    overflow: hidden;
}

.terms-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 25px;
    position: relative;
}

.terms-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.terms-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.terms-modal-subtitle {
    opacity: 0.9;
    margin: 0;
    font-size: 14px;
}

.terms-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.terms-counter-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid var(--primary-color);
}

.terms-counter {
    text-align: center;
}

.counter-text {
    font-weight: 600;
    color: #495057;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.counter-text i {
    color: var(--primary-color);
    font-size: 18px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.select-all-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(178, 122, 1, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(178, 122, 1, 0.2);
    transition: all 0.3s ease;
}

.select-all-container:hover {
    background: rgba(178, 122, 1, 0.1);
    border-color: rgba(178, 122, 1, 0.3);
}

.select-all-checkbox-container {
    flex-shrink: 0;
}

.select-all-checkbox {
    display: none;
}

.select-all-checkbox-label {
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.select-all-checkbox-label::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 6px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.select-all-checkbox-label i {
    opacity: 0;
    color: white;
    font-size: 14px;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.select-all-checkbox:checked+.select-all-checkbox-label::before {
    opacity: 1;
    transform: scale(1);
}

.select-all-checkbox:checked+.select-all-checkbox-label i {
    opacity: 1;
}

.select-all-checkbox:checked+.select-all-checkbox-label {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(178, 122, 1, 0.3);
}

.select-all-label {
    flex: 1;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    transition: color 0.3s ease;
}

.select-all-label:hover {
    color: var(--primary-dark);
}

.select-all-label i {
    font-size: 16px;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.term-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.term-item.accepted {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.term-checkbox-container {
    flex-shrink: 0;
    margin-top: 5px;
}

.term-checkbox {
    display: none;
}

.term-checkbox-label {
    width: 24px;
    height: 24px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.term-checkbox-label i {
    opacity: 0;
    color: white;
    font-size: 12px;
    transition: opacity 0.3s ease;
}

.term-checkbox:checked+.term-checkbox-label {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    transform: scale(1.1);
}

.term-checkbox:checked+.term-checkbox-label i {
    opacity: 1;
}

.term-content {
    flex: 1;
}

.term-title {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.term-title i {
    color: var(--primary-color);
    font-size: 16px;
}

.term-text {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.terms-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.terms-actions .btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    min-width: 140px;
    transition: all 0.3s ease;
}

.terms-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.terms-actions .btn:not(:disabled):hover {
    transform: translateY(-2px);
}

.terms-actions .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.terms-actions .btn-success:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .modal.show .modal-dialog {
        margin: 0.5rem;
        max-width: none;
        min-width: auto;
        width: calc(100% - 1rem);
        max-height: 90vh;
    }

    .auth-modal-content,
    .otp-modal-content {
        border-radius: 16px;
        max-height: calc(90vh - 2rem);
    }

    .auth-modal-header,
    .otp-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .auth-modal-body,
    .otp-modal-body {
        padding: 1.25rem 1.5rem 1.5rem;
        max-height: calc(90vh - 120px);
    }

    .auth-modal-icon,
    .otp-modal-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 0.75rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .auth-toggle-buttons {
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }

    .auth-toggle-btn {
        padding: 0.75rem;
    }

    .auth-form-group {
        margin-bottom: 1rem;
    }

    .otp-input-grid {
        gap: 0.5rem;
    }

    .otp-digit-input {
        height: 2.75rem;
        font-size: 1.125rem;
    }

    .timer-circle {
        width: 45px;
        height: 45px;
    }

    .timer-text {
        font-size: 0.75rem;
    }

    .otp-timer-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.25rem;
    }

    .otp-help-actions {
        flex-direction: column;
        align-items: center;
    }

    .otp-help-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .terms-modal-body {
        max-height: calc(100vh - 200px);
        padding: 8px;
        padding-bottom: 60px;
    }

    .terms-counter-container {
        padding: 6px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .counter-text {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .counter-text i {
        font-size: 12px;
    }

    .progress-bar-container {
        height: 5px;
    }

    .select-all-container {
        margin-top: 6px;
        padding: 6px;
        gap: 6px;
        border-radius: 6px;
    }

    .select-all-checkbox-label {
        width: 18px;
        height: 18px;
        border-radius: 4px;
    }

    .select-all-label {
        font-size: 11px;
    }

    .select-all-label i {
        font-size: 11px;
    }

    .terms-list {
        gap: 6px;
    }

    .term-item {
        padding: 6px;
        gap: 6px;
        border-radius: 6px;
        border-width: 1px;
    }

    .term-checkbox-label {
        width: 16px;
        height: 16px;
        border-radius: 3px;
        border-width: 1px;
    }

    .term-checkbox-label i {
        font-size: 9px;
    }

    .term-title {
        font-size: 11px;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .term-title i {
        font-size: 11px;
    }

    .term-text {
        font-size: 10px;
        line-height: 1.2;
        margin: 0;
    }

    .terms-actions {
        position: sticky;
        bottom: 0;
        flex-direction: row;
        gap: 4px;
        margin-top: 8px;
        padding: 6px 8px 8px;
        border-top: 1px solid #dee2e6;
        background: rgba(248, 249, 250, 0.95);
        backdrop-filter: blur(5px);
        flex-shrink: 0;
        z-index: 10;
    }

    .terms-actions .btn {
        flex: 1;
        padding: 6px 8px;
        font-size: 10px;
        border-radius: 15px;
        font-weight: 600;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .terms-actions .btn i {
        font-size: 10px;
        margin-right: 3px;
    }
}

/* Even smaller screens */
@media (max-width: 375px) {
    .modal.show .modal-dialog {
        margin: 0 2px;
        padding-top: 10px;
        max-height: calc(100vh - 100px);
    }

    .terms-modal-content {
        max-height: calc(100vh - 115px);
    }

    .terms-modal-body {
        max-height: calc(100vh - 180px);
        padding: 6px;
        padding-bottom: 50px;
    }

    .terms-modal-header {
        padding: 8px 10px !important;
    }

    .terms-modal-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin-bottom: 3px;
    }

    .modal-title {
        font-size: 13px !important;
    }

    .terms-modal-subtitle {
        font-size: 10px;
    }

    .terms-actions .btn {
        padding: 5px 6px;
        font-size: 9px;
        min-height: 28px;
    }

    .terms-actions .btn i {
        font-size: 9px;
        margin-right: 2px;
    }
}

/* Scrollbar Styling */
.auth-modal-body::-webkit-scrollbar,
.otp-modal-body::-webkit-scrollbar,
.terms-modal-body::-webkit-scrollbar {
    width: 6px;
}

.auth-modal-body::-webkit-scrollbar-track,
.otp-modal-body::-webkit-scrollbar-track,
.terms-modal-body::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 3px;
}

.auth-modal-body::-webkit-scrollbar-thumb,
.otp-modal-body::-webkit-scrollbar-thumb,
.terms-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.auth-modal-body::-webkit-scrollbar-thumb:hover,
.otp-modal-body::-webkit-scrollbar-thumb:hover,
.terms-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Success Animation */
.otp-success-animation {
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Loading states for better UX */
.otp-loading {
    position: relative;
}

.otp-loading span {
    opacity: 0;
}

.otp-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: otp-spin 1s linear infinite;
}

@keyframes otp-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* New Footer Styles */
.new-marketplace-footer {
    background: #D2E7E2;
    color: #485057;
    position: relative;
    padding: 0px;
    overflow: hidden;
}

.new-footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(127, 179, 211, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 179, 179, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(177, 156, 217, 0.06) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px, 400px 400px;
    animation: new-footer-float 20s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes new-footer-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.new-footer-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
}

.new-newsletter-signup {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.new-newsletter-signup h4 {
    color: #34495e;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.new-newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.new-newsletter-input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    color: #34495e;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.new-newsletter-input::placeholder {
    color: #6f7879;
}

.new-newsletter-input:focus {
    border-color: #7fb3d3;
    box-shadow: 0 0 0 3px rgba(127, 179, 211, 0.1);
}

.new-newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #db990c, #7c5500);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.new-newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.new-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 16px;
}

.new-footer-brand {
    max-width: 350px;
}

.new-footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.new-jadednewlogofooter {
    height: 80px;
    width: auto;
}

.new-footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #485057;
    margin-bottom: 1rem;
}

.new-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.new-stat-item {
    text-align: center;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.new-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f6ad3c;
    display: block;
}

.new-stat-label {
    font-size: 0.6rem;
    color: #6f7879;
    text-transform: uppercase;
}

.new-footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1.5rem;
    position: relative;
}

.new-footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f6ad3c;
    border-radius: 1px;
}

.new-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer-links li {
    margin-bottom: 0.75rem;
}

.new-footer-links a {
    color: #485057;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new-footer-links a:hover {
    color: #b27a01;
    transform: translateX(4px);
}

.new-footer-links i {
    width: 16px;
    font-size: 0.8rem;
}

.new-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.new-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.new-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #db990c, #7c5500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.new-contact-details h5 {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.new-contact-details p {
    color: #485057;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.new-social-links {
    display: flex;
    gap: 8px;
}

.new-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #485057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-social-link i {
    font-size: 18px;
}

.new-social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.new-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.new-footer-copyright {
    color: #485057;
    font-size: 0.9rem;
}

.new-footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer-legal a {
    color: #485057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.new-footer-legal a:hover {
    color: #7fb3d3;
}

.new-payment-methods {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.new-payment-icon {
    width: 40px;
    height: 22px;

    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #5d6d7e;
    font-weight: 600;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.new-payment-icon img {
    width: 100%;
    height: 100%;

}

/* Responsive Design */
@media (max-width: 1024px) {
    .new-footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .new-footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-newsletter-form {
        flex-direction: column;
    }

    .new-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .new-footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .new-footer-content {
        padding: 3rem 1rem 0;
    }

    .new-newsletter-signup {
        padding: 1.5rem;
    }

    .new-footer-stats {
        grid-template-columns: 1fr;
    }
}

.enhanced-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin: 15px 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.enhanced-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    border: 2px solid transparent;
}

.enhanced-option-item:hover {
    background: rgba(246, 122, 69, 0.1);
    transform: translateX(5px);
}

.enhanced-option-item.active {
    background: linear-gradient(135deg, rgba(246, 122, 69, 0.1) 0%, rgba(246, 122, 69, 0.05) 100%);
    border-color: #D4AF37;
    color: #D4AF37;
    font-weight: 600;
}

.enhanced-currency-symbol {
    width: 35px;
    height: 35px;
    background: rgba(246, 122, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    color: #D4AF37;
    font-size: 16px;
}

.enhanced-option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.enhanced-option-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.enhanced-currency-code {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* Currency Loading Overlay */
.enhanced-currency-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enhanced-currency-loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.enhanced-loading-content {
    background: white;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.enhanced-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.enhanced-loading-content p {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* Scrollbar for options container */
.enhanced-options-container::-webkit-scrollbar {
    width: 6px;
}

.enhanced-options-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.enhanced-options-container::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 3px;
}

.enhanced-options-container::-webkit-scrollbar-thumb:hover {
    background: #e85a2b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .enhanced-lang-currency-selector {
        left: 5px;
        top: 50%;
    }

    .enhanced-toggle-btn {
        width: 60px;
        height: 60px;
    }

    .enhanced-toggle-icon {
        font-size: 18px;
    }

    .enhanced-panel {
        left: 70px;
        width: calc(100vw - 90px);
        max-width: 320px;
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .enhanced-panel {
        left: 65px;
        width: calc(100vw - 80px);
        max-width: 280px;
    }

    .enhanced-panel-header h4 {
        font-size: 14px;
    }

    .enhanced-option-item {
        padding: 10px 12px;
    }

    .enhanced-option-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #prime {
        display: none;
    }
}

.skiptranslate {
    display: none;
}

@media (max-width: 496px) {
    .search-responsive {
        flex-direction: column;

    }

    #flex-setsearch {
        padding-bottom: 20px !important;
    }

    .registration-button-resp {

        width: 100%;
        height: 36px;
        /* padding: 0; */
        font-size: 9px;
        font-weight: 700;

    }

    .registration-button-resp p {
        display: none;
    }
}

.categories-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-section {

    background: linear-gradient(307deg, #000000, #F67A45, #F67A45, #000000) !important;
}

.contact-section:before {
    display: none;
}

.contact-section {
    background: linear-gradient(to right, #333, #b5755a, #F67A45);
}

.categaries-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 10px;
    max-width: 90%;
    margin: auto;
}

.categaries-container::-webkit-scrollbar {
    display: none;
}

.learn-more .circle {
    background: transparent;
}

.learn-more .circle .icon.arrow {
    background: #ffffff;
}

.learn-more .button-text {
    color: #fff;
    font-size: 18px;
}

.learn-more .circle .icon.arrow::before {
    border-top: 0.125rem solid #ffffff;
    border-right: 0.125rem solid #ffffff;
}



.nav-top-icon {
    position: relative;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.scroll-btn:hover {
    background: #ddd;
}

.submenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: -5px;
    background: white;

    min-width: 870px;

    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
    padding: 6px;
    FLEX-WRAP: wrap;
    justify-content: left;
    overflow-y: scroll;
}

.footer .copyright-text {
    bottom: 0;
}

.Nav-categotries {
    width: 280px;
}

/* Join Us Dropdown Styles */
.join-us-container {
    position: relative;
    display: inline-block;
}

.join-us-btn {
    background: linear-gradient(135deg, #db990c, #7c5500);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 0.4rem;
    font-weight: 700;
    font-size: clamp(9px, 0.7vw, 14px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(219, 153, 12, 0.3);
    white-space: nowrap;
    border: 2px solid #db990c;
}

.join-us-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(219, 153, 12, 0.4);
}

.join-us-arrow {
    transition: transform 0.3s ease;
}

.join-us-container.active .join-us-arrow {
    transform: rotate(180deg);
}

.join-us-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 15px;
    min-width: 280px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    border: 2px solid #db990c;
    overflow: hidden;
}

.join-us-container.active .join-us-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.join-us-dropdown-header {
    background: linear-gradient(135deg, #db990c, #7c5500);
    color: white;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.join-us-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.join-us-option:last-child {
    border-bottom: none;
}

.join-us-option:hover {
    background: rgba(219, 153, 12, 0.08);
    color: #db990c;
    padding-left: 24px;
}

.join-us-option i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #db990c;
    transition: all 0.3s ease;
}

.join-us-option:hover i {
    transform: scale(1.15);
}

/* Mobile Join Us Dropdown */
.new-mobile-join-section {
    padding: 1.5rem 2rem;
    border-top: 1px solid #eaeded;
    background: #f9fafb;
}

.new-mobile-join-header {
    background: linear-gradient(135deg, #db990c, #7c5500);
    color: white;
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.new-mobile-join-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 12px;
    border-radius: 0 0 12px 12px;
    border: 2px solid #db990c;
    border-top: none;
}

.new-mobile-join-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 2px solid #eaeded;
    border-radius: 10px;
    color: #485057;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.new-mobile-join-option:hover {
    border-color: #db990c;
    background: rgba(219, 153, 12, 0.05);
    color: #db990c;
    transform: translateX(5px);
}

.new-mobile-join-option i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #db990c;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 1240px) {
    .join-us-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }

    .join-us-container.active .join-us-dropdown {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .join-us-btn {
        font-size: 12px;
        padding: 0.6rem 0.8rem;
    }
}




@media screen and (min-width: 1200px) {
    .ak-nav .ak-nav_list>li {
        margin-right: 8px !important;
    }

    .ak-nav .ak-nav_list a {
        font-size: 11px !important;
    }
}

@media screen and (min-width: 1240px) {

    .ak-nav .ak-nav_list a {
        font-size: 12px !important;
    }
}

@media screen and (min-width: 1350px) {

    .ak-nav .ak-nav_list a {
        font-size: 14px !important;
    }
}

@media (max-width: 1300px) {
    .submenu {
        min-width: 600px;
        height: 462px;
    }
}

@media (max-width: 991px) {
    .submenu {
        min-width: 260px;
        height: 462px;
    }

    .dropdown-content {
        min-width: 152px;
    }

    .dropdown-content li {
        font-size: 12px;
    }

    .Nav-categotries {
        width: 240px;
    }

    .Nav-categotries i {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .dropdown-content {
        min-width: 106px;
    }

    .dropdown-content li {
        font-size: 11px;
    }

    .Nav-categotries {
        width: 100%;
        gap: 2px;
        padding: 4px;
    }

    .submenu {
        min-width: 220px;
        height: 230px;
        padding: 0;
        left: 74%;
    }
}

@media (max-width: 400px) {

    .submenu {
        top: 28px;
        left: 50%;
    }

}

.footer.style-1 .link-social {
    gap: 8px;
}

.footer .nav-tag {
    font-size: 16px;
    font-weight: 700;
    color: #100f0f !important;
}

/* Top bar with gradient background and enhanced shine effect */
.mktplc_premium_topbar {
    background: linear-gradient(90deg, #000000 0%, #222222 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.mktplc_premium_topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: mktplc_shine 3s infinite;
    transform: skewX(-25deg);
}

@keyframes mktplc_shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.mktplc_premium_topbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mktplc_premium_contact_info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mktplc_premium_contact_item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.mktplc_premium_contact_item:hover {
    transform: translateY(-2px);
}

.mktplc_premium_contact_item i {
    color: #F67A45;
    font-size: 16px;
    filter: drop-shadow(0 0 3px rgba(246, 122, 69, 0.3));
}

.mktplc_premium_social_buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mktplc_premium_social_icon {
    color: #fff !important;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.therapy-message-bubble {
    line-height: 1.6;
    word-wrap: break-word;
}

/* Font Awesome icons in messages */
.therapy-message-bubble i.fas,
.therapy-message-bubble i.far,
.therapy-message-bubble i.fal,
.therapy-message-bubble i.fab,
.therapy-message-bubble i.fad {
    margin-right: 4px;
    margin-left: 2px;
    display: inline-block;
    font-size: 1em;
    vertical-align: middle;
}

/* Links in chat messages */
.therapy-message-bubble a.therapy-chat-link {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.therapy-message-bubble a.therapy-chat-link:hover {
    color: #0052a3;
    text-decoration: none;
}

/* Bold text */
.therapy-message-bubble strong {
    font-weight: 600;
    color: inherit;
}

/* Strikethrough text */
.therapy-message-bubble del {
    opacity: 0.7;
    text-decoration: line-through;
}

.mktplc_premium_social_icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F67A45;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.mktplc_premium_social_icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(246, 122, 69, 0.5);
    color: white;
}

.mktplc_premium_social_icon:hover::before {
    transform: scale(1);
}

/* Enhanced Main navbar with improved glass effect and sticky behavior */
.mktplc_premium_navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 52px;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #F67A45;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Compact mode when scrolled */
.mktplc_premium_navbar.scrolled {
    position: fixed;
    width: 100%;
    top: 0px;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px rgba(246, 122, 69, 0.15);
}

.mktplc_premium_navbar:hover {
    box-shadow: 0 12px 30px rgba(246, 122, 69, 0.25);
}

.mktplc_premium_navbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.scrolled .mktplc_premium_navbar_container {
    padding: 12px 0;
}

.mktplc_premium_logo {
    width: 72px;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mktplc_premium_logo:hover {
    color: #F67A45;
    transform: scale(1.05);
}

.mktplc_premium_logo_icon {
    color: #F67A45;
    font-size: 32px;
    filter: drop-shadow(0 3px 8px rgba(246, 122, 69, 0.4));
    transition: all 0.4s ease;
}

.mktplc_premium_logo:hover .mktplc_premium_logo_icon {
    transform: rotate(15deg);
}

.mktplc_premium_logo_text {
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.scrolled .mktplc_premium_logo_text {
    font-size: 24px;
}

.mktplc_premium_logo_highlight {
    color: #F67A45;
    text-shadow: 0px 2px 4px rgba(246, 122, 69, 0.2);
    position: relative;
}

.mktplc_premium_logo_text::after {
    content: 'Marketplace';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -5px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Enhanced Navigation Links */
.mktplc_premium_nav_links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;

}

.mktplc_premium_nav_item {
    position: relative;
}

.mktplc_premium_nav_link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.mktplc_premium_nav_link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #F67A45, #ff9966);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px;
}

.mktplc_premium_nav_link:hover {
    color: #F67A45;
    transform: translateY(-2px);
}

.mktplc_premium_nav_link:hover::before {
    width: 100%;
}

.mktplc_premium_active_link {
    color: #F67A45 !important;
    font-weight: 700;
}

.mktplc_premium_active_link::before {
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #F67A45, #ff9966);
    box-shadow: 0 2px 8px rgba(246, 122, 69, 0.3);
}

/* Badge for new items */
.mktplc_premium_badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background: linear-gradient(135deg, #F67A45 0%, #ff9966 100%);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(246, 122, 69, 0.4);
    animation: mktplc_float 2s infinite ease-in-out;
}

@keyframes mktplc_float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Enhanced Right Navigation Area */
.mktplc_premium_right_nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mktplc_premium_search_container {
    position: relative;
    margin-right: 5px;
}

.mktplc_premium_search_btn {
    background: none;
    border: none;
    color: #444;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f8f8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.mktplc_premium_search_btn:hover {
    color: #F67A45;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(246, 122, 69, 0.2);
}

.mktplc_premium_cart_btn {
    position: relative;
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f8f8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    /*overflow: hidden;*/
    z-index: 1;
}

.mktplc_premium_cart_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 122, 69, 0.1) 0%, rgba(246, 122, 69, 0.2) 100%);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.mktplc_premium_cart_btn:hover {
    color: #F67A45;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mktplc_premium_cart_btn:hover::before {
    transform: scale(1);
}

.mktplc_premium_cart_count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #F67A45 0%, #ff9966 100%);
    color: white;
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(246, 122, 69, 0.4);
    animation: mktplc_pulse 2s infinite;
    transform-origin: center;
}

@keyframes mktplc_pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Enhanced Join Us Button */
.mktplc_premium_join_us_btn {
    background: linear-gradient(135deg, #F67A45 0%, #ff9966 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(246, 122, 69, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mktplc_premium_join_us_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
    transform: skewX(-25deg);
}

.mktplc_premium_join_us_btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(246, 122, 69, 0.4);
}

.mktplc_premium_join_us_btn:hover::before {
    left: 100%;
}

/* Menu Toggle Enhancement */
.mktplc_premium_menu_toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mktplc_premium_menu_toggle:hover {
    color: #F67A45;
    box-shadow: 0 5px 15px rgba(246, 122, 69, 0.3);
    transform: rotate(90deg);
}

/* Dropdown Menu */
.mktplc_premium_dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 15px 0;
    border-top: 3px solid #F67A45;
}

.mktplc_premium_nav_item:hover .mktplc_premium_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mktplc_premium_dropdown_link {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mktplc_premium_dropdown_link:hover {
    background-color: rgba(246, 122, 69, 0.08);
    color: #F67A45;
    padding-left: 25px;
}

.mktplc_premium_dropdown_link::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: #F67A45;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mktplc_premium_dropdown_link:hover::before {
    width: 6px;
    height: 6px;
}

/* Notification Dot Animation */
.mktplc_premium_notification_dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #F67A45;
    border-radius: 50%;
    animation: mktplc_blink 2s infinite;
}

@keyframes mktplc_blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Mega Menu */
.mktplc_premium_mega_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 3px solid #F67A45;
}

.mktplc_premium_has_mega:hover .mktplc_premium_mega_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mktplc_premium_mega_category {
    margin-bottom: 15px;
}

.mktplc_premium_mega_title {
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.mktplc_premium_mega_title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #F67A45;
}

.mktplc_premium_mega_links {
    list-style: none;
}

.mktplc_premium_mega_item {
    margin-bottom: 8px;
}

.mktplc_premium_mega_link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.mktplc_premium_mega_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F67A45;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.mktplc_premium_mega_link:hover {
    color: #F67A45;
    transform: translateX(5px);
}

.mktplc_premium_mega_link:hover::before {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(246, 122, 69, 0.3);
}

/* Featured product in mega menu */
.mktplc_premium_featured {
    grid-column: 4;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(246, 122, 69, 0.1) 0%, rgba(246, 122, 69, 0.05) 100%);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mktplc_premium_featured_title {
    font-weight: 700;
    color: #F67A45;
    margin-bottom: 15px;
}

.mktplc_premium_featured_image {
    width: 80%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mktplc_premium_featured:hover .mktplc_premium_featured_image {
    transform: scale(1.05);
}

.mktplc_premium_featured_price {
    font-weight: 700;
    color: #F67A45;
    font-size: 24px;
    margin-bottom: 10px;
}

.mktplc_premium_featured_price small {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-right: 5px;
}

.mktplc_premium_featured_btn {
    background: linear-gradient(135deg, #F67A45 0%, #ff9966 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mktplc_premium_featured_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(246, 122, 69, 0.3);
}

@media (max-width: 1280px) {
    .mktplc_premium_nav_links {
        gap: 18px;
        padding-left: 0;
    }
}

/* Responsive styles with enhanced mobile menu */
@media (max-width: 1200px) {
    .mktplc_premium_nav_links {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .mktplc_premium_menu_toggle {
        display: flex;
    }

    .mktplc_premium_nav_links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        padding-left: auto;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        align-items: flex-start;
        overflow-y: auto;
    }

    .mktplc_premium_nav_links.active {
        right: 0;
    }

    .mktplc_premium_nav_item {
        width: 100%;
    }

    .mktplc_premium_nav_link {
        width: 100%;
        padding: 10px 0;
        font-size: 18px;
    }

    .mktplc_premium_dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
        margin: 10px 0;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #f9f9f9;
        border-radius: 5px;
    }

    .mktplc_premium_mega_menu {
        position: static;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }

    .mktplc_premium_featured {
        grid-column: auto;
    }

    .mktplc_premium_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(3px);
    }

    .mktplc_premium_overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .mktplc_premium_contact_info {
        display: none;
    }

    .mktplc_premium_topbar_container {
        justify-content: center;
    }

    .mktplc_premium_join_us_btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .mktplc_premium_logo_text {
        font-size: 24px;
    }

    .mktplc_premium_logo_icon {
        font-size: 28px;
    }

    .mktplc_premium_search_container {
        display: none;
    }
}

@media (max-width: 500px) {
    .mktplc_premium_join_us_btn span {
        /*display: none;*/
        font-size: 12px;
    }

    .mktplc_premium_right_nav {
        gap: 8px;
    }

    .mktplc_premium_join_us_btn {
        /* width: 46px;
        height: 46px;
        padding: 0;
        justify-content: center;
        border-radius: 50%; */
        padding: 12px 8px;
    }

    .mktplc_premium_social_buttons {
        gap: 10px;
    }

    .mktplc_premium_social_icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 370px) {
    .mktplc_premium_join_us_btn span {
        font-size: 10px;
    }

    .mktplc_premium_join_us_btn {
        gap: 4px !important;
    }
}

.pro_hypno_footer_wrapper {
    position: relative;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(246, 122, 69, 0.05);
    border-top: 1px solid rgba(246, 122, 69, 0.1);
    overflow: hidden;
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%);
}

.pro_hypno_footer_container {
    max-width: 1400px;
    margin: 0 auto;

    padding: 80px 20px 40px;
    position: relative;
}

.pro_hypno_footer_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.pro_hypno_footer_brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro_hypno_footer_logo {
    max-width: 102px;
    margin-bottom: 10px;
    filter: contrast(1.2) brightness(0.9);
    transition: transform 0.3s ease;
}

.pro_hypno_footer_logo:hover {
    transform: scale(1.05);
}

.pro_hypno_footer_tagline {
    color: #333333;
    opacity: 1;
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-weight: 600;

}

.pro_hypno_footer_tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #f67a45;
    border-radius: 50%;
}

.pro_hypno_social_container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.pro_hypno_social_icon {
    width: 50px;
    height: 50px;
    background: rgba(246, 122, 69, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    color: #f67a45 !important;
    border: 1px solid rgba(246, 122, 69, 0.2);
    position: relative;
    overflow: hidden;
}

.pro_hypno_social_icon::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f67a45 0%, #ff9a70 100%);
    transition: all 0.3s ease;
    z-index: 0;
}

.pro_hypno_social_icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(246, 122, 69, 0.2);
}

.pro_hypno_social_icon:hover::before {
    top: 0;
}

.pro_hypno_social_icon:hover svg {
    color: #ffffff;
}

.pro_hypno_social_icon svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pro_hypno_footer_column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro_hypno_contact_block .texts {
    margin-left: 12px;
}

.pro_hypno_contact_block .text-2 {
    font-size: 12px;
}

.pro_hypno_column_title {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 15px;
    color: #000000;
    border-bottom: 2px solid #f67a45;
}

.pro_hypno_footer_link {
    color: #333333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    opacity: 1;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.pro_hypno_footer_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f67a45;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pro_hypno_footer_link:hover {
    color: #f67a45 !important;
    opacity: 1;
    padding-left: 25px;
}

.pro_hypno_footer_link:hover::before {
    opacity: 1;
}

.pro_hypno_footer_link svg {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.pro_hypno_footer_link:hover svg {
    opacity: 1;
    transform: translateX(5px);
}

.pro_hypno_cta_button {
    display: inline-block;
    background: linear-gradient(135deg, #f67a45 0%, #ff9a70 100%);
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(246, 122, 69, 0.3);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.pro_hypno_cta_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.6s ease;
}

.pro_hypno_cta_button:hover::before {
    left: 100%;
}

.pro_hypno_cta_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(246, 122, 69, 0.4);
}

.pro_hypno_footer_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(246, 122, 69, 0.8),
            transparent);
    margin: 40px 0;
}

.pro_hypno_footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333333;
    padding: 0 20px;
    opacity: 0.8;
}

.pro_hypno_copyright {
    font-size: 14px;
    font-weight: 500;
}

.pro_hypno_copyright a {
    color: #f67a45 !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.pro_hypno_copyright a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f67a45;
    transition: width 0.3s ease;
}

.pro_hypno_copyright a:hover::after {
    width: 100%;
}

.pro_hypno_footer_links {
    display: flex;
    gap: 20px;
}

.pro_hypno_footer_links a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    opacity: 0.8;
    position: relative;
}

.pro_hypno_footer_links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f67a45;
    transition: width 0.3s ease;
}

.pro_hypno_footer_links a:hover {
    color: #f67a45;
    opacity: 1;
}

.pro_hypno_footer_links a:hover::after {
    width: 100%;
}

.pro_hypno_contact_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro_hypno_contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(246, 122, 69, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pro_hypno_contact_item:hover {
    background: rgba(246, 122, 69, 0.1);
    transform: translateX(5px);
}

.pro_hypno_contact_icon {
    background: rgba(246, 122, 69, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #f67a45;
    border: 1px solid rgba(246, 122, 69, 0.2);
}

.pro_hypno_app_buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.pro_hypno_app_button {
    display: flex;
    align-items: center;
    background: rgba(246, 122, 69, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 122, 69, 0.2);
    position: relative;
    overflow: hidden;
}

.pro_hypno_app_button::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f67a45 0%, #ff9a70 100%);
    transition: all 0.3s ease;
    z-index: 0;
}

.pro_hypno_app_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pro_hypno_app_button:hover::before {
    top: 0;
}

.pro_hypno_app_button:hover .pro_hypno_app_icon,
.pro_hypno_app_button:hover .pro_hypno_app_text {
    color: #ffffff;
}

.pro_hypno_app_icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    color: #db990c;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pro_hypno_app_text {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pro_hypno_app_small {
    font-size: 10px;
    opacity: 0.7;
}

.pro_hypno_app_large {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .pro_hypno_footer_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pro_hypno_footer_grid {
        grid-template-columns: 1fr;
    }

    .pro_hypno_footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .pro_hypno_footer_links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .pro_hypno_footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 20px 54px;
    }
}

.footer-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}


@media (max-width: 1100px) {
    .mktplc_premium_nav_link {

        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .mktplc_premium_nav_link {
        text-align: center;

    }

    .mktplc_premium_badge {
        right: 34px;
    }

    .mktplc_premium_active_link::before {
        width: 60%;
    }
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* background-color: #222222 ; */
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.1) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(210, 231, 226, 0.1) 2px, rgba(210, 231, 226, 0.1) 4px),
        linear-gradient(135deg, #f5faf8 0%, #b2d5cd 50%, #ffffff 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
    border-top: 2px solid #b27a01;
    border-bottom: 2px solid #b27a01;
}

#footer-btn-text {
    margin-top: 12px;
}

#footer-btn-text .playstore-button {
    padding: 0.625rem 0.6rem;
}

@media (max-width: 991px) {
    .header-nav {
        display: none !important;
    }

    .mobile-sider-drawer-menu.active .header-nav {
        display: block !important;
    }

}

@media (max-width: 991px) {
    .header-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .mobile-sider-drawer-menu.active .header-nav {
        max-height: 100%;
        /* Adjust based on your menu height */
    }
}

.enhanced-lang-currency-selector {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Toggle Button */
.enhanced-toggle-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.enhanced-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.enhanced-toggle-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #F4D03F;
}

.enhanced-toggle-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.enhanced-toggle-icon {
    font-size: 22px;
    margin-bottom: 4px;
    animation: rotateGlobe 20s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes rotateGlobe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.enhanced-toggle-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.enhanced-current-lang {
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.enhanced-current-currency {
    opacity: 0.95;
    font-size: 9px;
}

/* Panel Container */
.enhanced-panel {
    position: absolute;
    left: 85px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    width: 380px;
    max-height: 550px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #D4AF37;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.enhanced-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.enhanced-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Panel Header */
.enhanced-panel-header {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #FFFFFF;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.enhanced-panel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.enhanced-panel-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    color: white;
}

.enhanced-panel-header i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.enhanced-panel-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.enhanced-panel-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Panel Tabs */
.enhanced-panel-tabs {
    display: flex;
    background: #F8F8F8;
    border-bottom: 2px solid #E5E5E5;
    position: relative;
    z-index: 1;
}

.enhanced-tab-btn {
    flex: 1;
    padding: 14px 18px;
    border: none;
    background: none;
    color: #666666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    border-bottom: 3px solid transparent;
}

.enhanced-tab-btn:hover:not(.active) {
    background: #FFFFFF;
    color: #D4AF37;
}

.enhanced-tab-btn.active {
    color: #D4AF37;
    background: #FFFFFF;
    border-bottom-color: #D4AF37;
    font-weight: 700;
}

.enhanced-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.enhanced-tab-btn i {
    font-size: 15px;
}

/* Tab Content */
.enhanced-tab-content {
    display: none;
    flex: 1;
    overflow: hidden;
    flex-direction: column;
    background: #FFFFFF;
}

.enhanced-tab-content.active {
    display: flex;
}

/* Content Header */
.enhanced-content-header {
    padding: 18px 24px 12px;
    border-bottom: 2px solid #F0F0F0;
    background: #FAFAFA;
}

.enhanced-content-header p {
    margin: 0 0 12px 0;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Currency Search */
.enhanced-currency-search {
    position: relative;
    margin-top: 12px;
}

.enhanced-currency-search input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    border: 2px solid #E5E5E5;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #333333;
    font-weight: 500;
}

.enhanced-currency-search input::placeholder {
    color: #999999;
    opacity: 0.7;
}

.enhanced-currency-search input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: #FFFFFF;
}

.enhanced-currency-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    font-size: 14px;
}

/* Options Container */
.enhanced-options-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px;
    max-height: 400px;
    background: #FFFFFF;
}

/* Currency Section */
.enhanced-currency-section {
    margin-bottom: 18px;
}

.enhanced-currency-section:last-child {
    margin-bottom: 0;
}

.enhanced-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    padding: 8px 12px;
    background: #F8F8F8;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.enhanced-section-title::before {
    content: '▸';
    color: #D4AF37;
    font-size: 14px;
}

/* Option Item */
.enhanced-option-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    border: 2px solid transparent;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.enhanced-option-item:hover {
    background: #FAFAFA;
    transform: translateX(6px);
    border-color: #F4D03F;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.enhanced-option-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: #D4AF37;
    color: #D4AF37;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.enhanced-option-item.active::before {
    content: '✓';
    position: absolute;
    right: 16px;
    color: #D4AF37;
    font-weight: 700;
    font-size: 18px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Flag Image */
.flag-img {
    width: 28px;
    height: 21px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 1px solid #E5E5E5;
}

/* Currency Symbol */
.enhanced-currency-symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    color: #D4AF37;
    font-size: 18px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.enhanced-option-item.active .enhanced-currency-symbol {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #FFFFFF;
    border-color: #D4AF37;
}

/* Option Text */
.enhanced-option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.enhanced-option-name {
    font-weight: 600;
    color: #333333;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.enhanced-option-item.active .enhanced-option-name {
    color: #D4AF37;
}

.enhanced-currency-code {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
    opacity: 0.85;
}

.enhanced-option-item.active .enhanced-currency-code {
    color: #B8960B;
    opacity: 1;
}

/* Currency Loading Overlay */
.enhanced-currency-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enhanced-currency-loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.enhanced-loading-content {
    background: #FFFFFF;
    padding: 35px 55px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

.enhanced-loading-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.enhanced-loading-spinner {
    width: 55px;
    height: 55px;
    border: 5px solid #F0F0F0;
    border-top: 5px solid #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.enhanced-loading-content p {
    margin: 0;
    font-weight: 700;
    color: #333333;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

/* Scrollbar Styling */
.enhanced-options-container::-webkit-scrollbar {
    width: 8px;
}

.enhanced-options-container::-webkit-scrollbar-track {
    background: #F0F0F0;
    border-radius: 4px;
}

.enhanced-options-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 4px;
    border: 2px solid #FFFFFF;
}

.enhanced-options-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #B8960B 0%, #D4AF37 100%);
}

/* Auto-Detect Notification */
.lang-auto-detect {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #D4AF37;
    z-index: 9999;
    opacity: 0;
    transform: translateX(350px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 350px;
    overflow: hidden;
}

.lang-auto-detect.show {
    opacity: 1;
    transform: translateX(0);
}

.auto-detect-content {
    padding: 22px;
    text-align: center;
}

.auto-detect-content i {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.3));
}

#autoDetectMessage {
    display: block;
    margin-bottom: 18px;
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.auto-detect-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.auto-detect-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auto-detect-btn.accept {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #FFFFFF;
    border: 2px solid #D4AF37;
}

.auto-detect-btn.accept:hover {
    background: linear-gradient(135deg, #B8960B 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.auto-detect-btn.decline {
    background: #FFFFFF;
    color: #333333;
    border: 2px solid #E5E5E5;
}

.auto-detect-btn.decline:hover {
    background: #F8F8F8;
    border-color: #CCCCCC;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .enhanced-lang-currency-selector {
        left: 8px;
        top: 50%;
    }

    .enhanced-toggle-btn {
        width: 60px;
        height: 60px;
    }

    .enhanced-toggle-icon {
        font-size: 20px;
    }

    .enhanced-panel {
        left: 75px;
        width: calc(100vw - 95px);
        max-width: 340px;
        max-height: 480px;
    }

    .lang-auto-detect {
        top: 70px;
        right: 12px;
        left: 12px;
        max-width: none;
    }

    .auto-detect-buttons {
        flex-direction: column;
    }

    .auto-detect-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .enhanced-panel {
        left: 68px;
        width: calc(100vw - 80px);
        max-width: 300px;
    }

    .enhanced-panel-header h4 {
        font-size: 15px;
    }

    .enhanced-option-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .enhanced-option-name {
        font-size: 14px;
    }

    .enhanced-currency-symbol {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .flag-img {
        width: 24px;
        height: 18px;
    }
}

/* Animation for new items */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.enhanced-option-item {
    animation: slideInFromRight 0.3s ease-out;
}

.enhanced-option-item:nth-child(1) {
    animation-delay: 0.05s;
}

.enhanced-option-item:nth-child(2) {
    animation-delay: 0.1s;
}

.enhanced-option-item:nth-child(3) {
    animation-delay: 0.15s;
}

.enhanced-option-item:nth-child(4) {
    animation-delay: 0.2s;
}

.enhanced-option-item:nth-child(5) {
    animation-delay: 0.25s;
}

/* Pulse animation for toggle button */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    }
}

.enhanced-toggle-btn {
    animation: pulse 3s infinite;
}

/* Accessibility */
.enhanced-panel:focus-within {
    outline: 3px solid #D4AF37;
    outline-offset: 2px;
}

.enhanced-option-item:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .enhanced-lang-currency-selector,
    .enhanced-currency-loading-overlay,
    .lang-auto-detect {
        display: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .enhanced-panel {
        border-width: 4px;
    }

    .enhanced-option-item {
        border-width: 3px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .enhanced-lang-currency-selector *,
    .enhanced-panel *,
    .lang-auto-detect * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .enhanced-toggle-icon {
        animation: none;
    }
}

/* Additional enhancements for better UX */
.enhanced-option-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.enhanced-option-item:hover::after {
    left: 100%;
}

/* Success state animation */
@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.enhanced-option-item.active {
    animation: successPulse 0.6s ease-in-out;
}

/* Move text upwards continuously */
@keyframes moveUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Brightness pulsing effect */
@keyframes brightnessPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.5);
    }
}

/* Apply the animations */
.nav-tagss span {
    color: white;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    animation: moveUp 1s infinite linear alternate, brightnessPulse 1.5s infinite ease-in-out;
    padding-bottom: 2px;
}

/* New Header Design Styles */
.new-marketplace-nav {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid #eaeded;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-marketplace-nav.new-scrolled {
  
    background: #dcefea;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.new-nav-container {
 
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80px;
}

.new-nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.new-nav-brand:hover {
    transform: translateY(-1px);
}

.new-jadednewlogo {
    height: 60px;
    width: auto;
}

.new-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    min-width: 0;
    /* VERY important for flex shrink */
}

.new-nav-item {
    position: relative;
}

.new-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.75rem 0.6rem;
    color: #485057;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(10px, 2.0vw, 15px);
    white-space: nowrap;
    flex-shrink: 1;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.new-nav-link:hover {
   
    color: #000000;
    background: #b27a011f;
}

.new-nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #b27a01;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.new-nav-item:hover .new-nav-link::after {
    width: 80%;
}

.new-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.new-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 6px;
    background: #ffffff;
    border: 2px solid #eaeded;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-mobile-menu-btn:hover {
    border-color: #7fb3d3;
}

.new-menu-line {
    width: 24px;
    height: 2px;
    background: #485057;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.new-mobile-menu-btn.new-active .new-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.new-mobile-menu-btn.new-active .new-menu-line:nth-child(2) {
    opacity: 0;
}

.new-mobile-menu-btn.new-active .new-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.new-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.new-mobile-menu-overlay.new-active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.new-mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.new-mobile-nav-panel.new-active {
    right: 0;
}

.new-mobile-nav-header {
    padding: 2rem;
    border-bottom: 1px solid #eaeded;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-mobile-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f7879;
    cursor: pointer;
    transition: all 0.2s ease;
}

.new-mobile-close-btn:hover {
    background: #eaeded;
    color: #5d6d7e;
}

.new-mobile-nav-menu {
    padding: 1rem 0;
}

.new-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: #485057;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.new-mobile-nav-link:hover {
    background: #f9fafb;
    color: #7fb3d3;
    border-left-color: #7fb3d3;
}

.new-mobile-nav-link i {
    width: 20px;
    font-size: 1.1rem;
}

.new-mobile-auth-section {
    padding: 2rem;
    border-top: 1px solid #eaeded;
    background: #f9fafb;
}

.new-mobile-cart-btn {
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #eaeded;
    border-radius: 12px;
    color: #485057;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.new-mobile-cart-btn:hover {
    border-color: #7fb3d3;
    color: #7fb3d3;
}

.new-auth-buttons {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.new-mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.new-mobile-btn-secondary,
.new-mobile-btn-primary {
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid;
}

.new-mobile-btn-secondary {
    background: #ffffff;
    color: #485057;
    border-color: #eaeded;
}

.new-mobile-btn-secondary:hover {
    border-color: #db990c;
    color: #db990c;
}

.new-mobile-btn-primary {
   
    background: linear-gradient(135deg, #db990c, #7c5500);
    color: white;
    border-color: #db990c;
}

.new-mobile-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

/* Content spacer */
.new-content-spacer {
    height: 100px;
}



/* Responsive */
@media (max-width: 1440px) {
    .new-nav-container {
        padding: 0 1rem;
    }

    .new-nav-link {
        font-size: 12px;
        padding: 0.75rem 0.6rem;
    }
}

@media (max-width: 1200px) {
    .new-nav-link {}
}

@media (max-width: 1240px) {
    .new-nav-menu {
        display: none;
    }

    .new-mobile-menu-btn {
        display: flex;
    }
}

.new-nav-link,
.new-btn-primary,
.new-btn-secondary {
    white-space: nowrap;
    /* Prevent 2-3 lines */
    flex-shrink: 1;
    /* Allow shrinking */
}

.logo-header {
    flex-shrink: 0;
    /* Prevent logo distortion */
}

.new-nav-link span,
.new-btn-primary,
.new-btn-secondary {
    overflow: hidden;
    text-overflow: ellipsis;
}

.ne-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* allow wrapping safely */
    gap: 10px;
}

.ne-contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.new-btn-primary,
.new-btn-secondary {
    font-size: clamp(9px, 0.7vw, 14px);
    white-space: nowrap;
}

.na-rec-btn {
    font-size: clamp(9px, 2.7vw, 14px);
    white-space: nowrap;
    padding: 0.75rem 0.6rem;
}

.new-btn-primary {
    padding: 0.75rem 0.4rem;
}

.new-btn-secondary {
    padding: 0.75rem 0.4rem;
}

.has-child i {
    font-size: clamp(11px, 2.0vw, 20px) !important;
}

.na-rec-btn i {
    font-size: clamp(11px, 2.0vw, 20px) !important;
}

.therapy-chat-widget {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
}

/* Chat Toggle Button - Subtle Gold Accent */
.therapy-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #db990c;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.therapy-chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(219, 153, 12, 0.3);
    background: linear-gradient(135deg, #db990c, #c88a0b);
}

.therapy-chat-toggle:hover i {
    color: white;
}

.therapy-chat-toggle i {
    font-size: 24px;
    color: #db990c;
    transition: all 0.3s ease;
}

.therapy-chat-toggle.active {
    background: #db990c;
    border-color: #db990c;
}

.therapy-chat-toggle.active i {
    color: white;
}

.therapy-chat-toggle.active i.fa-comments {
    transform: scale(0) rotate(180deg);
    opacity: 0;
}

.therapy-chat-toggle.active i.fa-times {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.therapy-chat-toggle i.fa-times {
    position: absolute;
    transform: scale(0) rotate(-180deg);
    opacity: 0;
}

/* Notification Badge */
.therapy-chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.5);
}

/* Chat Window - CLEAN WHITE DESIGN */
.therapy-chat-window {
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 400px;
    height: 600px;
    max-height: calc(100vh - 140px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.therapy-chat-window.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
}

/* Chat Header - CLEAN WHITE WITH SUBTLE ACCENT */
.therapy-chat-header {
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.therapy-chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(219, 153, 12, 0.15);
    position: relative;
}

.therapy-chat-avatar i {
    font-size: 22px;
    color: #db990c;
}

.therapy-chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

.therapy-chat-info {
    flex: 1;
}

.therapy-chat-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.therapy-chat-status {
    color: #6b7280;
    font-size: 12px;
    margin: 2px 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.therapy-chat-status i {
    font-size: 6px;
    color: #10b981;
}

.therapy-chat-minimize {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.therapy-chat-minimize:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Messages Container - IMPROVED VISIBILITY */
.therapy-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #fafbfc;
    scroll-behavior: smooth;
}

.therapy-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.therapy-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.therapy-chat-messages::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.therapy-chat-messages::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Message Bubble - PROFESSIONAL DESIGN */
.therapy-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: therapy-message-slide-in 0.3s ease-out;
}

@keyframes therapy-message-slide-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.therapy-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.therapy-message-avatar i {
    font-size: 14px;
    color: #db990c;
}

.therapy-message-content {
    flex: 1;
    max-width: 75%;
}

.therapy-message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.therapy-message-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    padding-left: 4px;
}

/* User Message - SUBTLE GOLD ACCENT */
.therapy-message.user {
    flex-direction: row-reverse;
}

.therapy-message.user .therapy-message-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.therapy-message.user .therapy-message-avatar {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.therapy-message.user .therapy-message-avatar i {
    color: #3b82f6;
}

.therapy-message.user .therapy-message-bubble {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: #78350f;
    border-color: #fde68a;
}

.therapy-message.user .therapy-message-time {
    text-align: right;
}

/* Bot Message with Icons - NO EMOJIS */
.therapy-message-bubble .icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #fef3c7;
    border-radius: 4px;
    margin-right: 4px;
}

.therapy-message-bubble .icon-inline i {
    font-size: 10px;
    color: #db990c;
}

/* Link Buttons - PROFESSIONAL VIEW BUTTONS */
.therapy-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.therapy-link-button:hover {
    background: #f9fafb;
    border-color: #db990c;
    color: #db990c;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.therapy-link-button i {
    font-size: 11px;
}

/* Price Display - CLEAN */
.therapy-price-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    margin: 6px 0;
}

.therapy-price-current {
    font-size: 16px;
    font-weight: 700;
    color: #166534;
}

.therapy-price-original {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.therapy-price-save {
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Category Tags */
.therapy-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
    color: #6b7280;
    margin: 4px 4px 4px 0;
}

.therapy-category-tag i {
    font-size: 10px;
}

/* Admin Message */
.therapy-message.admin .therapy-message-avatar {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.therapy-message.admin .therapy-message-avatar i {
    color: #059669;
}

.therapy-message.admin .therapy-message-bubble {
    border-left: 3px solid #10b981;
    background: #f0fdf4;
}

/* Admin Joined Notification */
.therapy-admin-joined {
    text-align: center;
    padding: 12px;
    margin: 16px 0;
}

.therapy-admin-joined-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #065f46;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

.therapy-admin-joined-badge i {
    font-size: 11px;
}

/* Typing Indicator */
.therapy-typing-indicator {
    display: none;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 12px;
}

.therapy-typing-indicator.active {
    display: flex;
}

.therapy-typing-dots {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 4px;
}

.therapy-typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    animation: therapy-typing 1.4s infinite;
}

.therapy-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.therapy-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes therapy-typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }
}

/* Input Area - CLEAN */
.therapy-chat-input-area {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.therapy-chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.therapy-input-container {
    flex: 1;
    position: relative;
}

.therapy-chat-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
    max-height: 100px;
    background: #fafbfc;
}

.therapy-chat-input:focus {
    border-color: #db990c;
    background: white;
    box-shadow: 0 0 0 3px rgba(219, 153, 12, 0.1);
}

.therapy-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #db990c, #c88a0b);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(219, 153, 12, 0.3);
}

.therapy-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(219, 153, 12, 0.4);
}

.therapy-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.therapy-send-btn i {
    font-size: 14px;
}

/* Welcome Message */
.therapy-welcome-message {
    text-align: center;
    padding: 40px 20px;
}

.therapy-welcome-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(219, 153, 12, 0.15);
}

.therapy-welcome-icon i {
    font-size: 32px;
    color: #db990c;
}

.therapy-welcome-message h3 {
    color: #1f2937;
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.therapy-welcome-message p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers in Messages */
.therapy-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1f2937;
    margin: 12px 0 8px 0;
    font-size: 13px;
}

.therapy-section-header i {
    color: #db990c;
    font-size: 12px;
}

/* List Items in Messages */
.therapy-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 6px 0;
    font-size: 13px;
    color: #4b5563;
}

.therapy-list-item i {
    color: #10b981;
    font-size: 10px;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .therapy-chat-window {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 110px;
        height: 520px;
    }
}

@media (max-width: 767px) {
    #therapyChatToggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .therapy-chat-window {
        width: calc(100vw - 20px);
        height: 480px;
        right: 10px;
        bottom: 80px;
    }

    .therapy-chat-toggle {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .therapy-chat-messages {
        padding: 16px;
    }
}

/* Professional Divider */
.therapy-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 16px 0;
}

/* Better Formatting for Structured Content */
.therapy-message-bubble strong {
    color: #1f2937;
    font-weight: 600;
}

.therapy-message-bubble del {
    color: #9ca3af;
}

/* Clean Product Card Style */
.therapy-product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    margin: 8px 0;
}

.therapy-product-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.therapy-product-card-header i {
    color: #db990c;
    font-size: 14px;
}

.therapy-product-card-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.cart-icon-container {
    transition: all 0.3s ease;
    animation: cartFloat 3s ease-in-out infinite;
}

/* Cart Link with #b27a01 Color Gradient */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b27a01 0%, #d4a00a 100%);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(178, 122, 1, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    z-index: 1;
}

/* Cart Link Hover Effect */
.cart-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a00a 0%, #b27a01 100%);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.cart-link:hover {
    transform: translateY(-5px) scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(178, 122, 1, 0.5);
}

.cart-link:hover::before {
    transform: scale(1);
}

/* Cart Icon */
.cart-icon {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.cart-link:hover .cart-icon {
    transform: scale(1.1);
    animation: cartShake 0.6s ease-in-out;
}

/* Cart Count Badge - Fixed Positioning and Size */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(220, 38, 38, 0.4);
    animation: cartCountPulse 2s infinite ease-in-out;
    border: 3px solid white;
    z-index: 100;
    padding: 0;
    line-height: 1;
    text-align: center;
}

/* Cart Icon Animations */
@keyframes cartShake {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        transform: translateX(0) scale(1.1);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-3px) scale(1.1);
    }
}

@keyframes cartCountPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 3px 8px rgba(220, 38, 38, 0.4);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.6);
    }
}

/* Cart Icon Floating Animation */
@keyframes cartFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Enhanced Cart Hover Effects */
.cart-link:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}



@keyframes cartShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Special effects for cart updates */
.cart-count.updated {
    animation: cartUpdate 0.8s ease-out;
}

@keyframes cartUpdate {
    0% {
        transform: scale(1);
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    }

    50% {
        transform: scale(1.4);
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        box-shadow: 0 5px 20px rgba(5, 150, 105, 0.6);
    }

    100% {
        transform: scale(1);
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    }
}

/* Cart icon bounce when items added */
.cart-icon-container.bounce {
    animation: cartBounce 0.6s ease-out;
}

@keyframes cartBounce {

    0%,
    20%,
    60%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    80% {
        transform: translateY(-5px);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cart-icon-container {
        margin-right: 10px;
    }

    .cart-link {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #b27a01 0%, #d4a00a 100%);
        box-shadow: 0 4px 15px rgba(178, 122, 1, 0.3);
    }

    .cart-icon {
        font-size: 18px;
    }

    .cart-count {
        min-width: 22px;
        height: 22px;
        font-size: 11px;
        top: -6px;
        right: -6px;
        border: 2px solid white;
        z-index: 100;
    }
}

@media (max-width: 480px) {
    .cart-link {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #b27a01 0%, #d4a00a 100%);
        box-shadow: 0 4px 15px rgba(178, 122, 1, 0.3);
    }

    .cart-icon {
        font-size: 16px;
    }

    .cart-count {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
        top: -5px;
        right: -5px;
        border: 2px solid white;
        z-index: 100;
    }
}

/* Additional User Dropdown Styles */
.user-dropdown .dropdown-menu {
    transition: opacity 0.2s ease-in-out;
}

.user-dropdown .dropdown-menu a,
.user-dropdown .dropdown-menu button {
    transition: background-color 0.2s ease;
}

.user-dropdown .dropdown-toggle:hover {
    opacity: 0.9;
}

.user-dropdown .dropdown-toggle p {
    margin: 0;
    white-space: nowrap;
}

.maintenance-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    text-align: center;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

.maintenance-banner i {
    margin-right: 8px;
    font-size: 16px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body.has-maintenance-banner {
    padding-top: 46px;
}

.has-maintenance-banner .new-marketplace-nav {
    top: 34px;
}

@media (max-width: 768px) {
    .maintenance-banner {
        font-size: 12px;
        padding: 10px 15px;
    }

    body.has-maintenance-banner {
        padding-top: 42px;
    }

    .has-maintenance-banner .new-marketplace-nav {
        top: 40px;
    }
}

@media (max-width: 400px) {
    .maintenance-banner {
        font-size: 11px;
    }

    .maintenance-banner i {
        font-size: 14px;
    }
}

.user-dropdown .dropdown-menu {
    transition: opacity 0.2s ease-in-out;
}

.user-dropdown .dropdown-menu a,
.user-dropdown .dropdown-menu button {
    transition: background-color 0.2s ease;
}

.user-dropdown .dropdown-toggle:hover {
    opacity: 0.9;
}

/* Ensure proper spacing and alignment */
.user-dropdown .dropdown-toggle p {
    margin: 0;
    white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .user-dropdown .dropdown-menu {
        right: -10px;
        min-width: 180px;
    }

    .user-dropdown .dropdown-toggle p {
        font-size: 14px;
    }
}

/* ── Nav dropdown triggers: match the plain nav links ────────────────────────
   Find Healers / Recordings / Ebooks Store are <button class="na-rec-btn">,
   and their icon and label live inside ONE <span>. The button's own
   `gap: 10px` therefore falls between that span and the caret, never between
   the icon and its text — so the icon sat flush against the word, while every
   .new-nav-link beside them (Home, Discover, Community, Partnerships,
   Advertise) gets `gap: 4px` because their icon and text are separate flex
   items.

   These rules add the missing inner spacing and bring the label up to the same
   size as the other items (.na-rec-btn capped at 14px, .new-nav-link at 15px).
   Nothing above is overridden apart from that font-size, and the button's
   padding already matches .new-nav-link at 0.75rem 0.6rem. */
.na-rec-btn > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.na-rec-btn {
    font-size: clamp(10px, 2.0vw, 15px);
}
