/* ============================================
   USER PROFILE V2 - BRAND GUIDELINES
   ============================================ */

:root {
    --brand-green: #4A7C59;
    --brand-gold: #D4A017;
    --brand-cream: #F9F7F2;
    --brand-charcoal: #2C2C2C;
    --brand-error: #EF4444;
}

/* Complete isolation wrapper for user profile shortcode */
.flaeske-user-profile-wrapper-v2 {
    isolation: isolate !important;
    position: relative !important;
}

.flaeske-user-profile-wrapper-v2 * {
    box-sizing: border-box !important;
}

.flaeske-user-profile-v2,
.flaeske-user-profile-not-logged-in-v2,
.flaeske-public-profile-v2 {
    isolation: isolate;
}

/* ============================================
   NOT LOGGED IN STATE
   ============================================ */
.flaeske-user-profile-not-logged-in-v2 {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

.not-logged-in-message-v2 {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid rgba(74, 124, 89, 0.1);
}


.not-logged-in-message-v2 h2 {
    margin: 0 0 1rem;
    color: var(--brand-charcoal);
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.not-logged-in-message-v2 > p {
    margin: 0 0 1.5rem;
    color: #666;
    font-size: 1rem;
}

.member-benefits-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.member-benefits-v2 li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
}

.member-benefits-v2 li:last-child {
    border-bottom: none;
}

.member-benefits-v2 li svg {
    color: var(--brand-green);
    flex-shrink: 0;
}

.login-actions-v2 {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.login-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-button-primary-v2 {
    background: var(--brand-green);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.login-button-primary-v2:hover {
    background: #3a6346;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.login-button-secondary-v2 {
    background: transparent;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
}

.login-button-secondary-v2:hover {
    background: var(--brand-green);
    color: white;
}

/* ============================================
   HERO SECTION - BRAND GUIDELINES
   ============================================ */
.user-profile-hero-v2 {
    position: relative;
    padding: 36px 16px 32px;
    max-width: 1280px;
    margin: 0 auto 2rem;
    z-index: 10;
}

.user-profile-hero-container-v2 {
    background: var(--brand-green);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

@media (min-width: 768px) {
    .user-profile-hero-container-v2 {
        padding: 64px;
    }
}

.user-profile-hero-decoration-v2 {
    position: absolute;
    top: -128px;
    right: -128px;
    width: 300px;
    height: 300px;
    background: var(--brand-gold);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    transition: opacity 0.7s ease;
}

@media (min-width: 768px) {
    .user-profile-hero-decoration-v2 {
        width: 600px;
        height: 600px;
        top: -256px;
        right: -256px;
    }
}

.user-profile-hero-container-v2:hover .user-profile-hero-decoration-v2 {
    opacity: 0.2;
}

.user-profile-hero-content-v2 {
    position: relative;
    z-index: 10;
    max-width: 672px;
}

.user-profile-hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--brand-gold);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    font-family: 'Lato', sans-serif;
}

.user-profile-hero-badge-dot-v2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gold);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.user-profile-hero-header-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.public-profile-header-content-v2 {
    flex: 1;
}

.user-profile-hero-title-v2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    color: white;
}

@media (min-width: 640px) {
    .user-profile-hero-title-v2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .user-profile-hero-title-v2 {
        font-size: 3.75rem;
    }
}

.user-profile-hero-title-gold-v2 {
    color: var(--brand-gold);
    font-style: italic;
}

.user-profile-hero-logout-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.user-profile-hero-logout-v2:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    color: white;
}

.user-profile-hero-description-v2 {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 512px;
}

@media (min-width: 768px) {
    .user-profile-hero-description-v2 {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

.user-profile-hero-stats-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.user-profile-hero-stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.user-profile-hero-stat-item-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-profile-hero-stat-label-v2 {
    display: block;
    color: var(--brand-gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
}

.user-profile-hero-stat-value-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
}

/* ============================================
   CTA BANNER
   ============================================ */
.user-profile-cta-v2 {
    background: var(--brand-cream);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.user-profile-cta-dismiss-v2 {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--brand-charcoal);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.user-profile-cta-dismiss-v2:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--brand-error);
}

.user-profile-cta-content-v2 {
    flex: 1;
    min-width: 200px;
}

.user-profile-cta-content-v2 h3 {
    margin: 0 0 0.5rem;
    color: var(--brand-charcoal);
    font-size: 1.125rem;
    font-weight: 700;
}

.user-profile-cta-content-v2 p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

.user-profile-cta-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--brand-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-profile-cta-button-v2:hover {
    background: #3a6346;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* ============================================
   TABS - BRAND GUIDELINES
   ============================================ */
.user-profile-tabs-v2 {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.user-profile-tabs-v2::-webkit-scrollbar {
    display: none;
}

.user-profile-tab-button-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--brand-charcoal);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
}

.user-profile-tab-button-v2 svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-charcoal);
    transition: color 0.2s ease;
}

.user-profile-tab-button-v2:hover {
    background: var(--brand-cream);
    color: var(--brand-green);
}

.user-profile-tab-button-v2:hover svg {
    color: var(--brand-green);
}

.user-profile-tab-button-v2.active {
    background: var(--brand-green);
    color: white;
}

.user-profile-tab-button-v2.active svg {
    color: white;
}

/* ============================================
   TAB CONTENT
   ============================================ */
.user-profile-content-v2 {
    position: relative;
}

.user-profile-tab-content-v2 {
    display: none;
}

.user-profile-tab-content-v2.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MODALS - BRAND GUIDELINES
   ============================================ */
.user-profile-modal-v2 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    isolation: isolate !important;
}

.user-profile-modal-v2[style*="display: block"],
.user-profile-modal-v2[style*="display:flex"],
.user-profile-modal-v2:not([style*="display: none"]) {
    display: flex !important;
}

.user-profile-modal-backdrop-v2 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(44, 44, 44, 0.2) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.user-profile-modal-content-v2 {
    position: relative !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    max-width: 500px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    z-index: 1 !important;
    isolation: isolate !important;
}

.user-profile-modal-header-v2 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.5rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
    isolation: isolate !important;
}

.user-profile-modal-header-v2 h3 {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--brand-charcoal) !important;
    font-family: 'Playfair Display', serif !important;
    isolation: isolate !important;
}

.user-profile-modal-close-v2 {
    background: transparent !important;
    border: none !important;
    color: #9ca3af !important;
    cursor: pointer !important;
    padding: 0.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    isolation: isolate !important;
}

.user-profile-modal-close-v2:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--brand-charcoal) !important;
}

.user-profile-modal-body-v2 {
    padding: 1.5rem !important;
    isolation: isolate !important;
}

.modal-description-v2 {
    margin: 0 0 1.5rem !important;
    color: #6b7280 !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    isolation: isolate !important;
}

.user-profile-modal-footer-v2 {
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: flex-end !important;
    padding: 1.5rem !important;
    border-top: 1px solid #f0f0f0 !important;
    isolation: isolate !important;
}

.modal-cancel-button-v2 {
    padding: 0.75rem 2rem !important;
    background: transparent !important;
    border: 2px solid var(--brand-green) !important;
    color: var(--brand-green) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    isolation: isolate !important;
}

.modal-cancel-button-v2:hover {
    background: var(--brand-green) !important;
    color: white !important;
}

.modal-submit-button-v2 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 2rem !important;
    background: var(--brand-green) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    isolation: isolate !important;
}

.modal-submit-button-v2:hover {
    background: #3a6346 !important;
    color: white !important;
}

.modal-submit-danger-v2 {
    background: var(--brand-error) !important;
}

.modal-submit-danger-v2:hover {
    background: #dc2626 !important;
    color: white !important;
}

/* ============================================
   FORMS - BRAND GUIDELINES
   ============================================ */
.form-group-v2 {
    margin-bottom: 1.5rem !important;
    isolation: isolate !important;
}

.form-group-v2 label {
    display: block !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: var(--brand-charcoal) !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Lato', sans-serif !important;
    isolation: isolate !important;
}

.form-input-v2 {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    border: 1px solid #d1d5db !important;
    font-size: 0.875rem !important;
    color: var(--brand-charcoal) !important;
    transition: all 0.2s ease !important;
    font-family: 'Lato', sans-serif !important;
    background: white !important;
    isolation: isolate !important;
}

.form-input-v2:focus {
    outline: none !important;
    border-color: var(--brand-green) !important;
    box-shadow: 0 0 0 1px var(--brand-green) !important;
}

.password-input-wrapper-v2 {
    position: relative;
}

.password-input-wrapper-v2 .form-input-v2 {
    padding-right: 3rem;
}

.toggle-password-v2 {
    position: absolute !important;
    right: 0.75rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #999 !important;
    cursor: pointer !important;
    padding: 0.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    text-decoration: none !important;
}

.toggle-password-v2::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
}

.toggle-password-v2:hover {
    color: var(--brand-green) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.toggle-password-v2:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.toggle-password-v2:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.toggle-password-v2 * {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.eye-icon-show,
.eye-icon-hide {
    width: 1.25rem !important;
    height: 1.25rem !important;
    stroke: currentColor !important;
    fill: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

.eye-icon-show svg,
.eye-icon-hide svg {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.password-strength-meter-v2 {
    margin-top: 0.5rem;
}

.strength-bar-v2 {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-text-v2 {
    font-size: 0.75rem;
    color: #666;
}

.form-message-v2 {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.form-message-v2.success {
    background: rgba(74, 124, 89, 0.1);
    color: var(--brand-green);
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.form-message-v2.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--brand-error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   SETTINGS SECTION
   ============================================ */
.settings-section-v2 {
    width: 100%;
    max-width: 100%;
}

.settings-section-v2 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.section-description-v2 {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 2rem;
}

.settings-card-v2 {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.settings-card-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.75rem;
    font-family: 'Playfair Display', serif;
}

.settings-info-v2 {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.share-url-container-v2 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: stretch;
    isolation: isolate;
}

.share-url-input-v2 {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: var(--brand-charcoal);
    background: white;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    isolation: isolate;
}

.share-url-input-v2:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 1px var(--brand-green), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.copy-url-button-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: transparent !important;
    color: var(--brand-green) !important;
    border: 2px solid var(--brand-green) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    isolation: isolate;
}

.copy-url-button-v2:hover,
.copy-url-button-v2:focus,
.copy-url-button-v2:active {
    background: var(--brand-green) !important;
    color: white !important;
    border-color: var(--brand-green) !important;
}

.preview-profile-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-charcoal);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    isolation: isolate;
}

.preview-profile-link-v2:hover {
    color: var(--brand-green);
}

.preview-profile-link-v2 svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.visibility-settings-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visibility-toggle-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--brand-cream);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.visibility-toggle-v2:hover {
    border-color: var(--brand-green);
    background: rgba(74, 124, 89, 0.05);
}

.visibility-toggle-v2 input[type="checkbox"] {
    width: 3rem;
    height: 1.5rem;
    appearance: none;
    background: #d1d5db;
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.visibility-toggle-v2 input[type="checkbox"]:checked {
    background: var(--brand-green);
}

.visibility-toggle-v2 input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: white;
    top: 0.125rem;
    left: 0.125rem;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.visibility-toggle-v2 input[type="checkbox"]:checked::before {
    transform: translateX(1.5rem);
}

.toggle-label-v2 {
    flex: 1;
}

.toggle-label-v2 strong {
    display: block;
    color: var(--brand-charcoal);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.toggle-label-v2 small {
    display: block;
    color: #666;
    font-size: 0.75rem;
}

.settings-actions-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.save-settings-button-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--brand-green) !important;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    isolation: isolate;
}

.save-settings-button-v2:hover {
    background: #3a6346 !important;
    color: white !important;
}

.settings-saved-message-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-green);
    font-weight: 600;
    font-size: 0.875rem;
}

.open-password-modal-button-v2,
.open-delete-modal-button-v2 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 2rem !important;
    background: transparent !important;
    color: var(--brand-green) !important;
    border: 2px solid var(--brand-green) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    isolation: isolate !important;
    width: auto !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.open-password-modal-button-v2 span,
.open-delete-modal-button-v2 span {
    display: inline-block !important;
    white-space: nowrap !important;
    isolation: isolate !important;
}

.open-password-modal-button-v2:hover,
.open-password-modal-button-v2:focus,
.open-password-modal-button-v2:active,
.open-delete-modal-button-v2:hover,
.open-delete-modal-button-v2:focus,
.open-delete-modal-button-v2:active {
    background: var(--brand-green) !important;
    color: white !important;
    border-color: var(--brand-green) !important;
}

.open-password-modal-button-v2 svg,
.open-delete-modal-button-v2 svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    min-height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
    stroke: currentColor !important;
    flex-shrink: 0 !important;
    isolation: isolate !important;
}

.open-password-modal-button-v2 .w-5,
.open-password-modal-button-v2 .h-5,
.open-delete-modal-button-v2 .w-5,
.open-delete-modal-button-v2 .h-5 {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    min-height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

.account-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row-v2 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row-v2:last-child {
    border-bottom: none;
}

.info-label-v2 {
    font-weight: 600;
    color: #666;
    font-size: 0.875rem;
}

.info-value-v2 {
    color: var(--brand-charcoal);
    font-weight: 600;
    font-size: 0.875rem;
}

.account-info-note-v2 {
    margin-top: 1rem;
    color: #666;
    font-size: 0.75rem;
}

.logout-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--brand-charcoal);
    border: 2px solid var(--brand-green);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.logout-button-v2:hover {
    background: var(--brand-green);
    color: white;
}

.delete-data-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.delete-data-list-v2 li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.875rem;
    border-bottom: 1px solid #f0f0f0;
}

.delete-data-list-v2 li:last-child {
    border-bottom: none;
}

.delete-warning-v2 {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: var(--brand-error);
    font-size: 0.875rem;
}

.settings-card-delete-v2 {
    border-color: rgba(239, 68, 68, 0.3);
}

/* ============================================
   ACTIVITY FEED
   ============================================ */
.activity-feed-section-v2 {
    max-width: 800px;
}

.feed-header-v2 h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.follow-stats-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
}

.stat-item-v2 {
    color: var(--brand-charcoal);
    font-size: 0.875rem;
}

.stat-separator-v2 {
    color: #999;
}

.find-users-button-primary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--brand-green) !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-left: auto;
    white-space: nowrap;
    isolation: isolate;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.find-users-button-primary-v2:hover,
.find-users-button-primary-v2:focus,
.find-users-button-primary-v2:active,
.find-users-button-primary-v2:visited {
    background: #3a6346 !important;
    color: white !important;
    text-decoration: none !important;
}

.feed-empty-v2 {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon-v2 {
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.feed-empty-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
}

.feed-empty-v2 p {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}

.find-users-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--brand-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.find-users-button-v2:hover {
    background: #3a6346;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.activity-meta-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.75rem;
}

.activity-type-icon-v2 {
    color: var(--brand-green);
}

.activity-time-v2 {
    color: #999;
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */
.achievements-showcase-v2 {
    background: var(--brand-cream);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.showcase-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.showcase-header-v2 h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    font-family: 'Playfair Display', serif;
}

.achievement-counter-v2 {
    font-weight: 700;
    color: var(--brand-green);
    font-size: 0.875rem;
}

.achievements-tab-section-v2 {
    max-width: 1000px;
}

.achievements-header-v2 h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.achievements-earned-section-v2 h3,
.achievements-locked-section-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
}

.showcase-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.showcase-badge {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.showcase-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-more {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--brand-cream);
    border: 2px dashed var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-green);
    font-size: 0.875rem;
}

.showcase-view-all-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.showcase-view-all-v2:hover {
    color: var(--brand-charcoal);
}

.showcase-empty {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
    padding: 1rem 0;
}

/* ============================================
   PUBLIC PROFILE
   ============================================ */
.flaeske-public-profile-v2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.public-profile-avatar-v2 {
    flex-shrink: 0;
}

.public-profile-avatar-v2 img {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.public-profile-achievements-v2 {
    margin-top: 0.75rem;
}

/* Public Profile Tabs - Brand Guidelines Style */
.public-profile-tabs-v2 {
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    margin-bottom: 2rem;
    background: white;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.public-profile-tab-button-v2 {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.public-profile-tab-button-v2:hover {
    color: var(--brand-charcoal);
    background: #f9fafb;
}

.public-profile-tab-button-v2.active {
    color: var(--brand-charcoal);
    border-bottom-color: var(--brand-green);
    background: rgba(249, 247, 242, 0.3);
}

.public-profile-empty-v2 {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.public-profile-empty-v2 p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   PUBLIC WISHLIST TABLE - BRAND GUIDELINES
   ============================================ */
.public-wishlist-section-v2 {
    max-width: 100%;
}

.wishlist-region-group-v2 {
    margin-bottom: 2rem;
}

.region-group-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
}

.wishlist-table-wrapper-v2 {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) transparent;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar {
    height: 8px;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 4px;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar-thumb:hover {
    background: #3a6346;
}

.wishlist-table-v2 {
    width: 100%;
    min-width: 600px;
    text-align: left;
    border-collapse: collapse;
}

.wishlist-table-v2 thead {
    background: var(--brand-green);
    color: white;
}

.wishlist-table-v2 thead th {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Playfair Display', serif;
}

.wishlist-th-image-v2 {
    width: 80px;
}

.wishlist-th-name-v2 {
    min-width: 200px;
}

.wishlist-th-location-v2 {
    min-width: 150px;
}

.wishlist-th-rating-v2 {
    width: 120px;
}

.wishlist-table-v2 tbody {
    background: white;
}

.wishlist-table-v2 tbody tr {
    border-top: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.wishlist-table-v2 tbody tr:hover {
    background: rgba(249, 247, 242, 0.3);
}

.wishlist-table-v2 tbody tr.closed {
    opacity: 0.6;
}

.wishlist-table-v2 tbody td {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    vertical-align: middle;
}

.wishlist-td-image-v2 {
    width: 80px;
}

.wishlist-table-image-v2 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-table-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-table-image-placeholder-v2 {
    background: var(--brand-cream);
    border: 1px solid #e5e7eb;
}

.wishlist-placeholder-initials-v2 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
}

.wishlist-td-name-v2 {
    min-width: 200px;
}

.wishlist-td-name-v2 strong {
    font-weight: 700;
    color: var(--brand-charcoal);
}

.wishlist-restaurant-name-link-v2 {
    color: var(--brand-charcoal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wishlist-restaurant-name-link-v2:hover {
    color: var(--brand-green);
}

.wishlist-td-location-v2 {
    min-width: 150px;
    font-size: 0.875rem;
    color: #4b5563;
}

.wishlist-td-rating-v2 {
    width: 120px;
}

.wishlist-rating-display-v2 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand-gold);
}

.wishlist-rating-star-v2 {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.wishlist-rating-number-v2 {
    font-weight: 700;
    color: var(--brand-charcoal);
    font-size: 0.875rem;
    margin-left: 0.125rem;
}

.wishlist-no-rating-v2,
.visitlist-no-rating-v2 {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Visitlist rating wrapper - ensure stars display correctly */
.visitlist-rating-wrapper-v2 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.visitlist-rating-wrapper-v2 .rating-stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.visitlist-rating-wrapper-v2 .rating-number {
    font-weight: 700;
    color: var(--brand-charcoal);
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.visitlist-rating-wrapper-v2 .star-small {
    font-size: 0.875rem;
    line-height: 1;
    color: var(--brand-gold);
}

.visitlist-rating-wrapper-v2 .star-small.star-full {
    color: var(--brand-gold);
}

.visitlist-rating-wrapper-v2 .star-small.star-empty {
    color: #e5e7eb;
}

.visitlist-rating-wrapper-v2 .star-small.star-half {
    color: var(--brand-gold);
    opacity: 0.7;
}

.visitlist-rating-display-v2 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand-gold);
}

/* ============================================
   VISITLIST TABLE - BRAND GUIDELINES (EXACT MATCH TO WISHLIST)
   ============================================ */
.visitlist-region-group-v2 {
    margin-bottom: 2rem;
}

.visitlist-table-wrapper-v2 {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) transparent;
}

.visitlist-table-wrapper-v2::-webkit-scrollbar {
    height: 8px;
}

.visitlist-table-wrapper-v2::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.visitlist-table-wrapper-v2::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 4px;
}

.visitlist-table-wrapper-v2::-webkit-scrollbar-thumb:hover {
    background: #3a6346;
}

.visitlist-table-v2 {
    width: 100%;
    min-width: 600px;
    text-align: left;
    border-collapse: collapse;
}

.visitlist-table-v2 thead {
    background: var(--brand-green);
    color: white;
}

.visitlist-table-v2 thead th {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Playfair Display', serif;
}

.visitlist-th-image-v2 {
    width: 80px;
}

.visitlist-th-name-v2 {
    min-width: 200px;
}

.visitlist-th-location-v2 {
    min-width: 150px;
}

.visitlist-th-rating-v2 {
    width: 120px;
}

.visitlist-th-date-v2 {
    width: 120px;
}

.visitlist-th-action-v2 {
    width: 100px;
}

.visitlist-table-v2 tbody {
    background: white;
}

.visitlist-table-v2 tbody tr {
    border-top: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.visitlist-table-v2 tbody tr:hover {
    background: rgba(249, 247, 242, 0.3);
}

.visitlist-table-v2 tbody tr.closed {
    opacity: 0.6;
}

.visitlist-table-v2 tbody td {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    vertical-align: middle;
}

.visitlist-td-image-v2 {
    width: 80px;
}

.visitlist-table-image-v2 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitlist-table-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visitlist-table-image-placeholder-v2 {
    background: var(--brand-cream);
    border: 1px solid #e5e7eb;
}

.visitlist-placeholder-initials-v2 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
}

.visitlist-td-name-v2 {
    min-width: 200px;
}

.visitlist-td-name-v2 strong {
    font-weight: 700;
    color: var(--brand-charcoal);
}

.visitlist-restaurant-name-link-v2 {
    color: var(--brand-charcoal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.visitlist-restaurant-name-link-v2:hover {
    color: var(--brand-green);
}

.visitlist-td-location-v2 {
    min-width: 150px;
    font-size: 0.875rem;
    color: #4b5563;
}

.visitlist-td-rating-v2 {
    width: 120px;
}

.visitlist-td-date-v2 {
    width: 120px;
    font-size: 0.875rem;
    color: #4b5563;
}

.visitlist-auto-badge-v2 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(74, 124, 89, 0.1);
    color: var(--brand-green);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.visitlist-td-action-v2 {
    width: 100px;
}

.no-wishlist-v2 {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-size: 0.875rem;
}

/* ============================================
   LOGOUT BUTTON (BELOW HERO)
   ============================================ */
.user-profile-logout-container-v2 {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 0 2rem;
    padding: 0 1rem;
}

.user-profile-logout-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--brand-charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.user-profile-logout-button-v2:hover {
    background: #f9fafb;
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.user-profile-logout-button-v2 svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   TABS - BRAND GUIDELINES (BORDER-BOTTOM STYLE)
   ============================================ */
.user-profile-tabs-wrapper-v2 {
    margin-bottom: 1.5rem;
}

.user-profile-tabs-v2 {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) transparent;
}

.user-profile-tabs-v2::-webkit-scrollbar {
    height: 4px;
}

.user-profile-tabs-v2::-webkit-scrollbar-track {
    background: transparent;
}

.user-profile-tabs-v2::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 2px;
}

.user-profile-tab-button-v2 {
    flex: 1;
    min-width: fit-content;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
}

.user-profile-tab-button-v2:hover {
    color: var(--brand-charcoal);
    background: #f9fafb;
}

.user-profile-tab-button-v2.active {
    color: var(--brand-charcoal);
    border-bottom-color: var(--brand-green);
    background: rgba(249, 247, 242, 0.3);
}

/* ============================================
   ACHIEVEMENTS SHOWCASE - FIX BACKGROUND
   ============================================ */
.achievements-showcase-v2 {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.showcase-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.showcase-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.achievement-counter-v2 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-green);
}

.showcase-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.showcase-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-green);
    background: white;
}

.showcase-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-view-all-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.showcase-view-all-v2:hover {
    color: var(--brand-charcoal);
}

.showcase-empty {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
    padding: 1rem 0;
}

/* ============================================
   ACHIEVEMENTS TAB - REDESIGN
   ============================================ */
.achievements-tab-section-v2 {
    max-width: 100%;
}

.achievements-header-v2 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.achievements-earned-section-v2,
.achievements-locked-section-v2 {
    margin-bottom: 3rem;
}

.achievements-earned-section-v2 h3,
.achievements-locked-section-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 1.5rem;
    font-family: 'Playfair Display', serif;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.achievement-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.achievement-card.earned {
    border-color: var(--brand-green);
    background: rgba(249, 247, 242, 0.5);
}

.achievement-card.locked {
    opacity: 0.5;
    filter: grayscale(100%);
}

.achievement-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.achievement-badge-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
}

.achievement-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.achievement-details {
    flex: 1;
}

.achievement-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
}

.achievement-details p {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.earned-date {
    font-size: 0.75rem;
    color: var(--brand-green);
    font-weight: 600;
}

/* ============================================
   WISHLIST SEARCH - BRAND GUIDELINES
   ============================================ */
.wishlist-section-v2 {
    max-width: 100%;
}

.wishlist-section-title-v2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.wishlist-section-description-v2 {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 2rem;
}

.wishlist-search-section-v2 {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wishlist-search-header-v2 {
    margin-bottom: 1.5rem;
}

.wishlist-search-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.wishlist-search-description-v2 {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}

.wishlist-search-form-v2 {
    margin-bottom: 1rem;
}

.wishlist-search-label-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
    font-family: 'Lato', sans-serif;
}

.wishlist-search-input-wrapper-v2 {
    position: relative;
    display: flex;
    align-items: center;
}

.wishlist-search-input-field-v2 {
    width: 100%;
    padding: 0.625rem 0.75rem !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    font-size: 0.875rem !important;
    color: var(--brand-charcoal) !important;
    transition: all 0.2s ease !important;
    font-family: 'Lato', sans-serif !important;
    background: white !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    isolation: isolate;
}

.wishlist-search-input-field-v2:focus {
    outline: none !important;
    border-color: var(--brand-green) !important;
    box-shadow: 0 0 0 1px var(--brand-green), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.wishlist-search-input-field-v2::placeholder {
    color: #9ca3af !important;
}

.wishlist-clear-search-v2 {
    position: absolute;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wishlist-clear-search-v2:hover {
    color: var(--brand-charcoal);
    background: #f3f4f6;
}

.wishlist-search-hint-v2 {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.wishlist-divider-v2 {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.wishlist-divider-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.wishlist-divider-v2 span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   WISHLIST TABLE - PRIVATE VERSION
   ============================================ */
.wishlist-region-group-v2 {
    margin-bottom: 2rem;
}

.region-group-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
}

.wishlist-table-wrapper-v2 {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) transparent;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar {
    height: 8px;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 4px;
}

.wishlist-table-wrapper-v2::-webkit-scrollbar-thumb:hover {
    background: #3a6346;
}

.wishlist-table-v2 {
    width: 100%;
    min-width: 600px;
    text-align: left;
    border-collapse: collapse;
}

.wishlist-table-v2 thead {
    background: var(--brand-green);
    color: white;
}

.wishlist-table-v2 thead th {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Playfair Display', serif;
}

.wishlist-th-image-v2 {
    width: 80px;
}

.wishlist-th-name-v2 {
    min-width: 200px;
}

.wishlist-th-location-v2 {
    min-width: 150px;
}

.wishlist-th-rating-v2 {
    width: 120px;
}

.wishlist-th-action-v2 {
    width: 120px;
    text-align: right;
}

.wishlist-table-v2 tbody {
    background: white;
}

.wishlist-table-v2 tbody tr {
    border-top: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.wishlist-table-v2 tbody tr:hover {
    background: rgba(249, 247, 242, 0.3);
}

.wishlist-table-v2 tbody tr.closed {
    opacity: 0.6;
}

.wishlist-table-v2 tbody td {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    vertical-align: middle;
}

.wishlist-td-image-v2 {
    width: 80px;
}

.wishlist-table-image-v2 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-table-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-table-image-placeholder-v2 {
    background: var(--brand-cream);
    border: 1px solid #e5e7eb;
}

.wishlist-placeholder-initials-v2 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
}

.wishlist-td-name-v2 {
    min-width: 200px;
}

.wishlist-td-name-v2 strong {
    font-weight: 700;
    color: var(--brand-charcoal);
}

.wishlist-restaurant-name-link-v2 {
    color: var(--brand-charcoal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wishlist-restaurant-name-link-v2:hover {
    color: var(--brand-green);
}

.wishlist-td-location-v2 {
    min-width: 150px;
    font-size: 0.875rem;
    color: #4b5563;
}

.wishlist-td-rating-v2 {
    width: 120px;
}

.wishlist-rating-display-v2 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand-gold);
}

.wishlist-rating-star-v2 {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.wishlist-rating-number-v2 {
    font-weight: 700;
    color: var(--brand-charcoal);
    font-size: 0.875rem;
    margin-left: 0.125rem;
}

.wishlist-no-rating-v2 {
    color: #9ca3af;
    font-size: 0.875rem;
}

.wishlist-td-action-v2 {
    width: 120px;
    text-align: right;
}

.wishlist-remove-button-v2 {
    padding: 0.375rem 0.75rem;
    background: var(--brand-error);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wishlist-remove-button-v2:hover {
    background: #dc2626;
}

.no-wishlist-v2 {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-size: 0.875rem;
}

.wishlist-search-results-v2 {
    margin-top: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
}

.wishlist-search-results-grid-v2 {
    padding: 0.5rem;
}

.wishlist-search-result-item-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.wishlist-search-result-item-v2:last-child {
    border-bottom: none;
}

.wishlist-search-result-item-v2:hover {
    background: #f9fafb;
}

.result-content-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.25rem;
}

.result-content-v2 p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.add-to-wishlist-button-v2 {
    padding: 0.5rem 1rem;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.add-to-wishlist-button-v2:hover {
    background: #3a6346;
}

.search-loading-v2,
.no-search-results-v2,
.search-error-v2 {
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

.search-error-v2 {
    color: var(--brand-error);
}

/* ============================================
   UPDATES/FEED TAB - REDESIGN
   ============================================ */
.activity-feed-section-v2 {
    max-width: 100%;
}

.feed-header-v2 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.follow-stats-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item-v2 {
    font-size: 0.875rem;
    color: var(--brand-charcoal);
}

.stat-item-v2 strong {
    font-weight: 700;
    color: var(--brand-green);
}

.stat-separator-v2 {
    color: #9ca3af;
}

.find-users-button-primary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--brand-green) !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-left: auto;
    white-space: nowrap;
    isolation: isolate;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.find-users-button-primary-v2:hover,
.find-users-button-primary-v2:focus,
.find-users-button-primary-v2:active,
.find-users-button-primary-v2:visited {
    background: #3a6346 !important;
    color: white !important;
    text-decoration: none !important;
}

.feed-empty-v2 {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-icon-v2 {
    margin: 0 auto 1.5rem;
    color: var(--brand-green);
    width: 64px;
    height: 64px;
}

.feed-empty-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.75rem;
    font-family: 'Playfair Display', serif;
}

.feed-empty-v2 p {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.find-users-button-primary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--brand-green) !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    isolation: isolate;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.find-users-button-primary-v2:hover,
.find-users-button-primary-v2:focus,
.find-users-button-primary-v2:active,
.find-users-button-primary-v2:visited {
    background: #3a6346 !important;
    color: white !important;
    text-decoration: none !important;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.activity-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RECOMMENDATIONS - DATABASE CARDS
   ============================================ */
.recommendations-section-v2 {
    max-width: 100%;
}

.recommendations-title-v2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.recommendations-description-v2 {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 2rem;
}

.no-recommendations-v2 {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.no-recommendations-v2 p {
    color: #666;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.recommendations-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* ============================================
   SETTINGS SECTION - ADDITIONAL STYLES
   ============================================ */
.open-password-modal-button-v2,
.open-delete-modal-button-v2 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 2rem !important;
    background: transparent !important;
    color: var(--brand-green) !important;
    border: 2px solid var(--brand-green) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    isolation: isolate !important;
    width: auto !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.open-password-modal-button-v2 span,
.open-delete-modal-button-v2 span {
    display: inline-block !important;
    white-space: nowrap !important;
    isolation: isolate !important;
}

.open-password-modal-button-v2:hover,
.open-password-modal-button-v2:focus,
.open-password-modal-button-v2:active,
.open-delete-modal-button-v2:hover,
.open-delete-modal-button-v2:focus,
.open-delete-modal-button-v2:active {
    background: var(--brand-green) !important;
    color: white !important;
    border-color: var(--brand-green) !important;
}

.open-password-modal-button-v2 svg,
.open-delete-modal-button-v2 svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    min-height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
    stroke: currentColor !important;
    flex-shrink: 0 !important;
    isolation: isolate !important;
}

.open-password-modal-button-v2 .w-5,
.open-password-modal-button-v2 .h-5,
.open-delete-modal-button-v2 .w-5,
.open-delete-modal-button-v2 .h-5 {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    min-height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

.account-info-v2 {
    margin-bottom: 1rem;
}

.info-row-v2 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-row-v2:last-child {
    border-bottom: none;
}

.info-label-v2 {
    font-weight: 600;
    color: var(--brand-charcoal);
    font-size: 0.875rem;
}

.info-value-v2 {
    color: #666;
    font-size: 0.875rem;
}

.account-info-note-v2 {
    margin: 1rem 0 0;
    color: #9ca3af;
    font-size: 0.75rem;
}

.logout-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: transparent;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.logout-button-v2:hover {
    background: var(--brand-green);
    color: white;
}

.logout-button-v2 svg {
    width: 1.25rem;
    height: 1.25rem;
}

.settings-card-delete-v2 {
    border-color: rgba(239, 68, 68, 0.2);
}

.delete-data-list-v2 {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.delete-data-list-v2 li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.delete-data-list-v2 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-error);
    font-weight: 700;
}

.delete-warning-v2 {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: var(--brand-error);
    font-size: 0.875rem;
}

.delete-warning-v2 strong {
    font-weight: 700;
}

.button-loader-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button-text {
    display: inline-block;
}

/* ============================================
   TOGGLE SWITCHES - BRAND GUIDELINES
   ============================================ */
.visibility-toggle-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.visibility-toggle-v2:hover {
    background: #f3f4f6;
    border-color: var(--brand-green);
}

.visibility-toggle-v2 input[type="checkbox"] {
    display: none;
}

.toggle-slider-v2 {
    position: relative;
    width: 48px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.toggle-slider-v2::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.visibility-toggle-v2 input[type="checkbox"]:checked + .toggle-slider-v2 {
    background: var(--brand-green);
}

.visibility-toggle-v2 input[type="checkbox"]:checked + .toggle-slider-v2::after {
    transform: translateX(24px);
}

.toggle-label-v2 {
    flex: 1;
}

.toggle-label-v2 strong {
    display: block;
    font-weight: 700;
    color: var(--brand-charcoal);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.toggle-label-v2 small {
    display: block;
    color: #666;
    font-size: 0.75rem;
}

.settings-actions-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.save-settings-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-settings-button-v2:hover {
    background: #3a6346;
}

.save-settings-button-v2 svg {
    width: 1rem;
    height: 1rem;
}

.settings-saved-message-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-green);
    font-weight: 600;
    font-size: 0.875rem;
}

.settings-saved-message-v2 svg {
    width: 1rem;
    height: 1rem;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    /* Wishlist Tables - Mobile Responsive */
    .wishlist-table-wrapper-v2 {
        border-radius: 8px;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .wishlist-table-v2 {
        min-width: 600px !important; /* Ensure table doesn't shrink too much */
        width: auto !important;
        display: table !important;
    }
    
    .wishlist-table-v2 thead th {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .wishlist-table-v2 tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .wishlist-th-image-v2,
    .wishlist-td-image-v2 {
        width: 60px;
    }
    
    .wishlist-th-name-v2,
    .wishlist-td-name-v2 {
        min-width: 150px;
    }
    
    .wishlist-th-location-v2,
    .wishlist-td-location-v2 {
        min-width: 120px;
    }
    
    .wishlist-th-rating-v2,
    .wishlist-td-rating-v2 {
        width: 100px;
    }
    
    .wishlist-table-image-v2 {
        width: 28px;
        height: 28px;
    }
    
    .wishlist-placeholder-initials-v2 {
        font-size: 0.625rem;
    }
    
    .wishlist-rating-star-v2 {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .wishlist-rating-number-v2 {
        font-size: 0.75rem;
    }
    
    .region-group-title-v2 {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .user-profile-hero-header-v2 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .user-profile-hero-logout-v2 {
        align-self: flex-end;
    }
    
    .public-profile-avatar-v2 {
        margin-bottom: 1rem;
    }
    
    .public-profile-header-content-v2 {
        width: 100%;
    }
    
    .user-profile-tabs-v2 {
        gap: 0.25rem;
        padding: 0.25rem;
    }
    
    .user-profile-tab-button-v2 {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .user-profile-tab-button-v2 span {
        display: none;
    }
    
    .user-profile-tab-button-v2.active span {
        display: inline;
    }
    
    .user-profile-hero-stats-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .share-url-container-v2 {
        flex-direction: column;
    }
    
    .user-profile-modal-content-v2 {
        max-width: 100%;
        margin: 0.5rem;
    }
}

/* ============================================
   LOADER
   ============================================ */
.loader-spinner-v2 {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.button-loader-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

