
/* WRAPPER */
.rose-dropdown {
    position: relative;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 9px 14px;
    cursor: pointer;
    width: 100%;
    user-select: none;
    transition: all .2s;
}

.rose-dropdown:focus-within {
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 4px rgba(255,95,126,0.22);
}

.rose-options li.selected {
    background: var(--light-rose);
    color: var(--primary-rose);
}

/* DROPDOWN LIST */
.rose-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 10px;
    z-index: 999;
    animation: dropdownFade .22s ease;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    border: 1px solid var(--secondary-rose);
}
/* Fix selected text color in custom dropdown */
.rose-selected {
    color:#444 !important; /* Same as inputs */
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.rose-options.show {
    display: grid;
}

/* ITEMS */
.rose-options li {
    font-size: 14px;
    /* font-weight: 600; */
    padding: 8px 10px;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all .15s;
    color: var(--text-dark);
}

.rose-options li:hover {
    background: var(--light-rose);
    color: var(--dark-rose);
}

/* ANIMATION */
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.rose-selected {
    font-size: 1rem;
    font-weight: 400;
    color: #444;
    opacity: 0.87; /* Light by default (placeholder look) */
}

/* When dropdown active or value chosen, opacity returns to normal */
.rose-dropdown.has-value .rose-selected {
    opacity: 1;
}


/* Arrow â€” set same size as text */
.rose-dropdown::after {
    content: "â–¾";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;  /* ðŸ”¥ SAME SIZE AS TEXT */
    font-weight: 400; /* make it thin */
    color: var(--primary-rose);
    transition: .25s;
}
.rose-options {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.rose-dropdown.active::after {
    transform: translateY(-50%) rotate(180deg);
}


/* 
  Rose Matrimony - Custom Styles 
  Theme: Rose Pink (#ff5f7e and #ff6c85)
  Fonts: Playfair Display (Headings), Poppins (Body)
*/
/* Wrap long text inside Select2 dropdown */

/* Wrap long text inside Select2 dropdown */
.select2-container .select2-results__option {
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.4;
}

/* Highlight - Rose Theme */
.select2-container--default .select2-results__option--highlighted {
     background: var(--light-rose) !important;
    color: var(--primary-rose) !important;
    
}

/*** Match Bootstrap Height, Padding, Radius ***/
.select2-container--default .select2-selection--single {
    background-color: #f8f9fa !important;
    border: 1px solid #ced4da !important; /* outline */
    border-radius: 0.375rem !important; /* same as .form-select */
    height: calc(2.2rem + 3px) !important; /* same height */
    padding: 0.375rem 0.75rem !important; /* same padding */
    display: flex;
    align-items: center;
}

/* Text inside select */
.select2-selection__rendered {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5 !important;
    padding-left: 0 !important;
}

/* Dropdown Arrow same position as Bootstrap */
.select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}
    input[readonly]:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ced4da !important; /* normal bootstrap border */
}
input[readonly] {
    background-color: #eee !important;  /* light grey */
    cursor: default;
}
.select2-container--default .select2-results__option--selected {
  background: var(--light-rose);
    color: var(--primary-rose);
}
/* Search box inside Select2 dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd !important;
    outline: none !important;
    box-shadow: none !important;
}

/* On hover keep same border */
.select2-container--default .select2-search--dropdown .select2-search__field:hover {
    border: 1px solid #ddd !important;
}

/* On focus keep same border */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border: 1px solid #ddd !important;
    outline: none !important;
    box-shadow: none !important;
}

.border-0 {
  border: 1px solid #ced4da !important;
}/* Wrapper (keeps everything same column width) */


:root {
    --primary-rose: #ff5f7e;
    --secondary-rose: #ff6c85;
    --light-rose: #fff0f3;
    --dark-rose: #e64565;
    --text-dark: #2d2d2d;
    --text-black: #000000;
    --text-muted: #6c757d;
    --white: #ffffff;
    --radius-card: 20px;
    --shadow-soft: 0 10px 30px rgba(255, 95, 126, 0.1);
    --shadow-hover: 0 15px 40px rgba(255, 95, 126, 0.15);
}
html, body {
    width: 100%;
    overflow-x: hidden !important;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    
  margin: 0px !important;;
}

h1, h2, h3, h4, h5, h6, .brand-text, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Typography Helpers */
.text-rose { color: var(--primary-rose) !important; }
.bg-rose-light { background-color: var(--light-rose) !important; }
.text-justify { text-align: justify; }

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: var(--light-rose);
    color: var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand-text {
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-rose) !important;
}

.btn-login {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--primary-rose);
}

/* Buttons */
.btn-rose {
    background-color: var(--primary-rose);
    border: 1px solid var(--primary-rose);
    color: white;
    transition: all 0.3s ease;
}

.btn-rose:hover {
    background-color: var(--secondary-rose);
    border-color: var(--secondary-rose);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 95, 126, 0.3);
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--primary-rose);
  transition: var(--primary-rose);
}
.btn-outline-rose {
    color: var(--primary-rose);
    border-color: var(--primary-rose);
}

.btn-outline-rose:hover {
    background-color: var(--primary-rose);
    color: white;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 80vh;
    background: linear-gradient(135deg, #fff 0%, #fff0f3 100%);
}

.hero-text h1 {
    font-weight: 700;
    line-height: 1.2;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-img {
    border-radius: 30px !important;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: rotate(0deg);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Cards */
.profile-card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.profile-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-rose);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding-top: 60px !important;
}

/* Forms & Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.form-check-input:checked {
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
}

.range-slider::-webkit-slider-thumb {
    background: var(--primary-rose);
}

/* Footer */
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--primary-rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.social-link:hover {
    background: var(--primary-rose);
    color: white;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-rose);
    padding-left: 5px;
}

/* Animations */
[data-aos] {
    opacity: 1; 
    /* Simplified for static - usually would use AOS library */
}

/* ðŸŒ™ DARK MODE â€“ variable-based */
body.dark-mode {
    /* Only change neutrals, keep brand rose colors same */
    --white: #121212;          /* Page background */
    --light-rose: #1f1f1f;     /* Cards / panels / dropdowns */
    --text-dark: #e9e9e9;      /* Normal text */
    --text-black: #ffffff;     /* Headings */
    --text-muted: #ffffff;     /* Muted text */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.55);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.7);

    background-color: var(--white) !important;
    color: var(--text-dark) !important;
}
/* Lock & Envelope should stay dark in dark mode */
body.dark-mode .bi-lock.text-muted,
body.dark-mode .bi-envelope.text-muted {
    color: var(--white) !important;
}
/* Theme icon changes to white in dark mode */
body.dark-mode .bi-sun,
body.dark-mode .bi-moon-stars {
    color: var(--text-dark) !important;
}


/* Navbar */
body.dark-mode .navbar {
    background-color: var(--light-rose) !important;
}
body.dark-mode .navbar .nav-link,
body.dark-mode .navbar .btn-login {
    color: var(--text-dark) !important;
}
body.dark-mode .logo-icon {
    background: var(--light-rose);
    color: var(--primary-rose);
}

/* Global text */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: var(--text-black) !important;
}
body.dark-mode p,
body.dark-mode li,
body.dark-mode span,
body.dark-mode label,
body.dark-mode small {
    color: var(--text-dark) !important;
}
body.dark-mode .text-muted {
    color: var(--text-muted) !important;
}

/* Brand highlight stays rose */
body.dark-mode .text-rose,
body.dark-mode i.bi-heart-fill,
body.dark-mode i.bi-patch-check-fill,
body.dark-mode i.bi-briefcase,
body.dark-mode i.bi-moon-stars,
body.dark-mode i.bi-geo-alt,
body.dark-mode i.bi-geo-alt-fill {
    color: var(--primary-rose) !important;
}

/* Filter Sidebar */
body.dark-mode .filter-sidebar {
    background: var(--light-rose) !important;
    border: 1px solid #333 !important;
    box-shadow: var(--shadow-soft);
}
body.dark-mode .filter-sidebar hr {
    border-color: #333 !important;
}
body.dark-mode .filter-sidebar label,
body.dark-mode .filter-sidebar span,
body.dark-mode .filter-sidebar h5,
body.dark-mode .filter-sidebar .form-check-label {
    color: var(--text-dark) !important;
}
body.dark-mode .filter-sidebar a.text-rose {
    color: var(--primary-rose) !important;
}

/* Checkboxes */
body.dark-mode .form-check-input {
    background-color: transparent;
    border: 1px solid #888 !important;
}
body.dark-mode .form-check-input:checked {
    background-color: var(--primary-rose) !important;
    border-color: var(--primary-rose) !important;
}

/* Cards (success stories, generic .card) */
body.dark-mode .card {
    background: var(--light-rose) !important;
    border: 1px solid #333 !important;
    color: var(--text-dark) !important;
    box-shadow: var(--shadow-soft);
}
body.dark-mode .card h5,
body.dark-mode .card h4 {
    color: var(--text-black) !important;
}
body.dark-mode .card p {
    color: var(--text-dark) !important;
}
body.dark-mode .card small {
    color: var(--text-muted) !important;
}
body.dark-mode .shadow-hover:hover {
    box-shadow: var(--shadow-hover) !important;
}

/* Profile Card */
body.dark-mode .profile-card {
    background: var(--light-rose) !important;
    border: 1px solid #333 !important;
    color: var(--text-dark) !important;
}
body.dark-mode .profile-card .text-muted {
    color: var(--text-muted) !important;
}
body.dark-mode .profile-card i {
    color: var(--primary-rose) !important;
}
body.dark-mode .profile-card .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent) !important;
}
body.dark-mode .profile-card .verified-badge {
    background: rgba(0,0,0,0.6) !important;
    color: var(--primary-rose) !important;
}
body.dark-mode .profile-card .btn-outline-rose {
    border-color: var(--primary-rose) !important;
    color: var(--primary-rose) !important;
}
body.dark-mode .profile-card .btn-outline-rose:hover {
    background: var(--primary-rose) !important;
    color: var(--white) !important;
}

/* Custom dropdown (.rose-dropdown) */

body.dark-mode .rose-selected {
    color: var(--light-rose) !important;
}
body.dark-mode .rose-options {
    background: var(--light-rose);
    border-color: #444;
}
body.dark-mode .rose-options li {
    color: var(--text-dark);
}
body.dark-mode .rose-options li:hover,
body.dark-mode .rose-options li.selected {
    background: var(--primary-rose);
    color: var(--white);
}

/* Select2 */
/* body.dark-mode .select2-container--default .select2-selection--single {
    background-color: var(--light-rose) !important;
    border: 1px solid #555 !important;
} */
body.dark-mode .select2-selection__rendered {
    color: var(--light-rose) !important;
}
body.dark-mode .select2-dropdown {
    background: var(--light-rose) !important;
    border-color: #333 !important;
}
body.dark-mode .select2-results__option {
    background: var(--light-rose) !important;
    color: var(--text-dark) !important;
}
body.dark-mode .select2-results__option--selected {
    background: var(--light-rose) !important;
    color: var(--primary-rose) !important;
}
body.dark-mode .select2-results__option--highlighted {
    background: var(--primary-rose) !important;
    color: var(--white) !important;
}
body.dark-mode .select2-search__field {
    background: #111 !important;
    color: var(--text-dark) !important;
    border-color: #555 !important;
}

/* Footer */
body.dark-mode .social-link {
    background: var(--light-rose);
    color: var(--primary-rose);
    box-shadow: none;
}
body.dark-mode .social-link:hover {
    background: var(--primary-rose);
    color: var(--white);
}
body.dark-mode .footer-links a {
    color: var(--text-muted);
}
body.dark-mode .footer-links a:hover {
    color: var(--primary-rose);
}

/* Smooth transition */
* {
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}


/* HERO SECTION â€” DARK MODE */
body.dark-mode .hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-rose) 100%) !important;
}

body.dark-mode .hero-text h1 {
    color: var(--text-black) !important; /* Heading white */
}

body.dark-mode .hero-text p {
    color: var(--text-dark) !important; /* Lead text */
}

/* SEARCH BOX */
body.dark-mode .search-box {
    background: var(--light-rose) !important;
    box-shadow: var(--shadow-soft) !important;
    border: 1px solid #333 !important;
}

body.dark-mode .search-box .form-label,
body.dark-mode .search-box span {
    color: var(--text-dark) !important;
}

body.dark-mode .search-box .form-control,
body.dark-mode .search-box .form-select {
    background: #2a2a2a !important;
    color: var(--text-dark) !important;
    border-color: #444 !important;
}

body.dark-mode .search-box .form-control::placeholder {
    color: var(--text-muted) !important;
}

/* Floating card */
body.dark-mode .floating-card {
    background: var(--light-rose) !important;
    color: var(--text-dark) !important;
    border: 1px solid #333 !important;
}

/* Inside floating card */
body.dark-mode .floating-card small {
    color: var(--text-muted) !important;
}

body.dark-mode .icon-circle {
    background: var(--light-rose) !important;
}

/* Hero image glow adjustment */
body.dark-mode .hero-img {
    box-shadow: 0 0 40px rgba(0,0,0,0.6) !important;
}


body.dark-mode .dropdown-toggle:focus {
    border-color: var(--primary-rose) !important;
}

/* Dropdown LIST in dark mode */
body.dark-mode .dropdown-menu {
    background-color: var(--light-rose) !important;
    border: 1px solid #333 !important;
    box-shadow: var(--shadow-soft) !important;
}

/* Dropdown item text */
body.dark-mode .dropdown-item {
    color: var(--text-dark) !important;
}

/* Hover active highlight */
body.dark-mode .dropdown-item:hover,
body.dark-mode .dropdown-item:focus,
body.dark-mode .dropdown-item.active {
    background-color: var(--primary-rose) !important;
    color: var(--white) !important;
}

/* bootsrap focus remove */

/* Remove default blue outline & glow from inputs */
.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--primary-rose) !important; /* Optional highlight */
}


/* ðŸŒ™ FOOTER â€” DARK MODE FIX */
body.dark-mode footer.footer {
    background: var(--light-rose) !important; /* dark panel */
    border-color: #333 !important;
}

body.dark-mode footer.footer p,
body.dark-mode footer.footer li,
body.dark-mode footer.footer span,
body.dark-mode footer.footer small {
    color: var(--text-dark) !important; /* light text */
}

body.dark-mode footer.footer h5 {
    color: var(--text-black) !important; /* headings bright */
}

body.dark-mode footer.footer .social-link {
    background: var(--light-rose) !important;
    color: var(--primary-rose) !important;
    box-shadow: none !important;
}

body.dark-mode footer.footer .social-link:hover {
    background: var(--primary-rose) !important;
    color: var(--white) !important;
}

body.dark-mode footer.footer .footer-links a {
    color: var(--text-dark) !important;
}

body.dark-mode footer.footer .footer-links a:hover {
    color: var(--primary-rose) !important;
}

body.dark-mode .copyright {
    background: var(--light-rose) !important;
    border-color: #333 !important;
}

body.dark-mode .copyright small {
    color: var(--text-dark) !important;
}


.select2-results__options {
    max-height: 200px !important;
    overflow-y: auto !important;
}
.select2-container--default .select2-selection--single:focus {
    outline: none !important;
    box-shadow: none !important;
}



/* custome .dropdown-item */


.custom-dropdown {
    position: relative;
    width: 100%;
    background: #fff;
    /* border: 1px solid #ced4da; */
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
}

/* Disabled typing look */
.dropdown-input {
    cursor: pointer;
}

/* Focus Style */
.dropdown-input:focus {
    border-color: var(--primary-rose) !important;
    outline: none !important;
}

/* Dropdown Options */
.dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    z-index: 99;
    list-style: none;
    border: 1px solid var(--secondary-rose);
    grid-template-columns: 1fr;
    gap: 4px;
    animation: dropdownFade .22s ease;
}
/* Show dropdown when typing */
.custom-dropdown.active .dropdown-list {
    display: block;
}

/* When user searches, hide unmatched options smoothly */
.dropdown-list li {
    display: block;
}

/* Show Dropdown */
.custom-dropdown.active .dropdown-list {
    display: block;
}

/* Items */
.dropdown-list li {
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-dark);
}
.dropdown-list li:hover {
    background: var(--light-rose);
    color: var(--primary-rose);
}

/* Arrow Icon */
.dropdown-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: .25s;
    pointer-events: none;
    font-size: 10px;
    color: var(--primary-rose);
}
.custom-dropdown.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.dropdown-list li.active,
.dropdown-list li:hover {
    background: var(--light-rose);
    color: var(--primary-rose);
}

/* Animation */
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dark Mode */
body.dark-mode .dropdown-list {
    background: #222;
    border-color: var(--primary-rose);
}
body.dark-mode .dropdown-list li {
    color: #fff;
}
body.dark-mode .dropdown-list li:hover {
    background: var(--primary-rose);
    color: #fff;
}
.select2-results__options {
    max-height: 200px !important;
    overflow-y: auto !important;
}




body.dark-mode .gender-input-switch.female .gender-text,
body.dark-mode .gender-input-switch:not(.female) .gender-text {
    color: var(--primary-rose) !important; /* Active highlight still rose */
}



/* Age Text â€“ Dark Mode */
body.dark-mode .form-control #ageText {
    color:#000 !important;
}

.interest-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 50;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*backdrop-filter: blur(4px);*/
    cursor: pointer;
}
.heart-icon {
    font-size: 22px;
    color: var(--white);
    transition: 0.2s;
}

.heart-icon.active {
    color: var(--primary-rose);
}

/* ===============================
   SweetAlert2 Toast – Dark Mode
=============================== */
body.dark-mode .swal2-toast {
    background: #1f1f1f !important;
    color: #ffffff !important;
}

body.dark-mode .swal2-toast .swal2-title {
    color: #ffffff !important;
}

body.dark-mode .swal2-toast .swal2-icon {
    color: #ff4d6d !important;
}

body.dark-mode .swal2-toast .swal2-timer-progress-bar {
    background: rgba(255, 77, 109, 0.6) !important;
}

/* ================= MOBILE BOTTOM SHEET ================= */
.mobile-user-sheet {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
}

.mobile-user-sheet.show {
    display: block;
}

/* overlay */
.mobile-sheet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* panel */
.mobile-sheet-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    padding: 16px;
    animation: mobileSlideUp .25s ease;
    box-shadow: var(--shadow-soft);
}

/* header */
.mobile-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-rose);
    color: var(--text-dark);
}

/* close */
.mobile-sheet-close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--primary-rose);
}

/* items */
.mobile-sheet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    transition: background .2s ease, color .2s ease;
}

/* hover */
.mobile-sheet-item:hover {
    background: var(--light-rose);
    color: var(--primary-rose);
}

/* icon */
.mobile-sheet-item i {
    font-size: 18px;
    color: var(--primary-rose);
}

/* animation */
@keyframes mobileSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* DESKTOP SAFETY */
@media (min-width: 768px) {
    .mobile-user-sheet {
        display: none !important;
    }
}





/* =============================
   SECTION TITLE – DARK MODE FIX
============================= */
body.dark-mode .highlight-gradient {
    background: linear-gradient(
        90deg,
        rgba(255, 95, 126, 0.18),
        rgba(255, 95, 126, 0.02)
    ) !important;

    color: #ffffff !important;
    border: 1px solid rgba(255, 95, 126, 0.35);
}

/* Icon inside heading */
body.dark-mode .highlight-gradient i {
    color: var(--primary-rose) !important;
}

/* =========================================
   PROFILE PAGE – DARK MODE FIX (FINAL)
========================================= */

/* ===== PAGE TEXT ===== */
body.dark-mode .profile-wrapper,
body.dark-mode .profile-section {
    color: var(--text-dark);
}

/* Header divider */
body.dark-mode .profile-header {
    border-bottom-color: #333 !important;
}

/* Name & meta */
body.dark-mode .profile-name {
    color: #ffffff !important;
}

body.dark-mode .profile-meta {
    color: #bdbdbd !important;
}

/* ===== SECTION HEAD ===== */
body.dark-mode .section-head {
    background: rgba(255,95,126,0.12) !important;
    color: var(--primary-rose) !important;
    border: 1px solid rgba(255,95,126,0.35);
}

body.dark-mode .section-head .icon {
    background: var(--primary-rose) !important;
    color: #ffffff !important;
}

/* ===== INFO ROWS ===== */
body.dark-mode .info-label {
    color: #bdbdbd !important;
}

body.dark-mode .info-value {
    color: #e9e9e9 !important;
}

/* ===== ABOUT SECTION ===== */
body.dark-mode .about-block .label {
    color: #ffffff !important;
}

body.dark-mode .about-block .value {
    color: #d6d6d6 !important;
}

/* =========================================
   HOROSCOPE – DARK MODE (MAIN FIX)
========================================= */

/* Table wrapper */
body.dark-mode .horoscope-grid {
    background: #1a1a1a !important;
    border-color: #333 !important;
}

/* Cells */
body.dark-mode .horoscope-grid td {
    background: #1a1a1a !important;
    color: #e9e9e9 !important;
    border-color: #333 !important;
}

/* Center box (RASI / AMSAM) */
body.dark-mode .horoscope-grid .center-box {
    background: #222 !important;
    color: var(--primary-rose) !important;
}

/* Planet text */
body.dark-mode .horo-view-cell {
    color: #e9e9e9 !important;
}

/* Dash (-) */
body.dark-mode .horo-dash {
    color: #777 !important;
}

/* Scrollbar */
body.dark-mode .horo-view-cell::-webkit-scrollbar-thumb {
    background: #555;
}

/* =========================================
   SMALL POLISH
========================================= */

/* Back button visibility */
body.dark-mode .btn[style*="--primary-rose"] {
    box-shadow: 0 0 0 1px rgba(255,95,126,0.4);
}

/* Remove white bleed */
body.dark-mode .container,
body.dark-mode .horo-wrap {
    background: transparent !important;
}





.private-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
/* ===== PRIVATE PHOTO BLUR ===== */
.blur-photo {
    filter: blur(12px);
    transform: scale(1.05);
    pointer-events: none;
}

/* Lock overlay */
.photo-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
    color: #fff;
    text-align: center;
    border-radius: 18px;
}

.photo-lock-overlay i {
    font-size: 32px;
    margin-bottom: 10px;
}

.photo-lock-overlay button {
    background: var(--primary-rose);
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
}



/* =========================
   NAVBAR – DARK MODE FIX
========================= */

body.dark-mode .navbar {
    background-color: #1a1a1a !important;
    border-bottom: 1px solid #333;
}

/* Brand text */
body.dark-mode .navbar .brand-text {
    color: #ffffff !important;
}

/* Nav links */
body.dark-mode .navbar .nav-link {
    color: #e0e0e0 !important;
}

body.dark-mode .navbar .nav-link:hover,
body.dark-mode .navbar .nav-link.active {
    color: var(--primary-rose) !important;
}

/* Navbar toggler (hamburger) */
body.dark-mode .navbar-toggler {
    border-color: #444;
}

body.dark-mode .navbar-toggler-icon {
    filter: invert(1);
}

/* User button */
body.dark-mode .user-btn {
    background: var(--primary-rose) !important;
    color: #fff !important;
    border: none;
}

/* Dropdown menu */
body.dark-mode .dropdown-menu {
    background: #1f1f1f !important;
    border: 1px solid #333;
}

body.dark-mode .dropdown-item {
    color: #e0e0e0 !important;
}

body.dark-mode .dropdown-item:hover,
body.dark-mode .dropdown-item:focus {
    background: var(--primary-rose) !important;
    color: #fff !important;
}

/* Divider */
body.dark-mode .dropdown-divider {
    border-color: #333;
}
/* =========================
   MOBILE USER SHEET – DARK
========================= */

body.dark-mode .mobile-sheet-panel {
    background: #1f1f1f !important;
    border-top: 1px solid #333;
}

body.dark-mode .mobile-sheet-header {
    border-bottom: 1px solid #333;
}

body.dark-mode .mobile-sheet-item {
    color: #e0e0e0 !important;
}

body.dark-mode .mobile-sheet-item:hover {
    background: var(--primary-rose) !important;
    color: #ffffff !important;
}

body.dark-mode .mobile-sheet-close {
    color: #ffffff !important;
}

