/*
Theme Name: Velvet
Theme URI: https://example.com/velvet
Author: Prepagos Medellin
Author URI: https://example.com
Description: El mejor directorio de modelos prepago en Medellín. Encuentra perfiles exclusivos, historias y contacto directo.
Version: 1.39
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: velvet
*/

:root {
    --bg-color: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #e1306c;
    /* Instagram-like pink/purple gradient start */
    --accent-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --story-ring-size: 70px;
    --story-ring-padding: 3px;
    --primary-color: #e1306c;
    /* Defined primary color explicitly if missing */
    --border-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color) !important;
    color: var(--text-primary);
    padding-bottom: 40px;
    min-height: 100vh;
    position: relative;
    /* For pseudo-element */
}

/* body::before removed - missing asset */

html {
    background-color: var(--bg-color) !important;
}

/* Header */
/* Header */
.main-header {
    background-color: #ffffff;
    /* White background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 95vw !important;
    /* Force full width */
    max-width: 1800px !important;
    /* Match profile container */
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Profile Redesign 2025 - Force Wide */
.profile-container-wide {
    width: 95vw !important;
    max-width: 1800px !important;
    margin: 20px auto !important;
    padding-bottom: 50px;
    display: block !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* Force centering relative to viewport */
    /* border: 2px solid red; DEBUG REMOVED */
}

.header-left {
    flex: 1;
    /* Spacer to balance logo */
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    text-decoration: none;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img,
.custom-logo {
    max-height: 80px;
    /* Increased from 50px */
    width: auto;
    display: block;
    object-fit: contain;
}



.header-auth {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

/* Mobile Header Optimization */
.mobile-user-icon {
    display: none;
    /* Hidden by default (desktop) */
    color: #000;
    padding: 5px;
}

.desktop-only {
    display: inline-block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-user-icon {
        display: block;
    }

    .header-auth {
        gap: 10px;
    }
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000000;
    /* Black for contrast */
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header-auth a {
    color: #000000;
    /* Black text */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 15px;
}

.header-auth a:hover {
    color: var(--accent-color);
}

.btn-login {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    border: 1px solid #000000;
    /* Black border */
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-login:hover {
    color: var(--primary-color);
    background-color: #000000;
    color: #ffffff !important;
}

.btn-signup {
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-signup:hover {
    transform: translateY(-2px);
    background-color: #d81b60;
    /* Darker pink */
}

/* Mobile Header Adjustments */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .btn-login {
        display: none;
        /* Hide login text on very small screens if needed, or keep */
    }

    .btn-signup {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Stories Section */
.stories-section {
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-snap-type: x mandatory;
    /* Enable scroll snap */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    max-width: 1200px;
    /* Match catalog max-width */
    margin: 0 auto;
    /* Center the section */
}

.stories-section::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.stories-container {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    /* Match catalog padding */
    width: max-content;
    /* Ensure container is wide enough */
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 75px;
    /* Slightly larger */
    scroll-snap-align: start;
    /* Snap to start */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.story-ring {
    width: 70px;
    /* Larger ring */
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.story-item.active-story .story-ring {
    border-color: #4CAF50;
    /* Green for active */
    animation: pulse-ring 2s infinite;
}

.story-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-bg);
}

.story-name {
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}



.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    /* White with slight transparency */
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.modal-content {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-primary);
}

.duration-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.duration-btn {
    padding: 10px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 51, 102, 0.1);
}

.story-ring.active {
    background: var(--accent-gradient);
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-color);
    /* Creates the gap */
}

.story-name {
    font-size: 0.75rem;
    margin-top: 5px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

/* Catalog Section */
.catalog-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 15px;
}

@media (min-width: 768px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.profile-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.card-image {
    position: relative;
    aspect-ratio: 3/4;
    /* Vertical rectangle */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Model Card Styles */
.model-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid #333;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-color);
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.model-card:hover img {
    transform: scale(1.1);
}

.model-info {
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    position: relative;
}

.model-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    text-decoration: none;
    display: block;
}

.model-name:hover {
    color: var(--primary-color);
}

.model-location {
    font-size: 0.85rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.model-price {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Online Badge */
.online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(70, 180, 80, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.online-badge::before {
    content: '●';
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.status-badge.online {
    background-color: rgba(46, 204, 113, 0.8);
    color: white;
}

.status-badge.offline {
    background: rgba(0, 0, 0, 0.6);
    color: #ccc;
    display: none;
    /* Hidden per user request */
}

.card-info {
    padding: 12px;
    background-color: #ffffff;
    /* White background */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.badges-container {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.vip-card .badges-container {
    min-height: 22px;
    /* Reserve space only for VIP cards */
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ff3333;
    /* Red title */
}

.card-info .location {
    font-size: 0.8rem;
    color: #333333;
    /* Dark grey for contrast on white */
    font-weight: 500;
}

@media (max-width: 480px) {
    .badges-container span {
        font-size: 0.6rem !important;
        padding: 1px 4px !important;
    }

    .card-info {
        padding: 8px;
    }

    .card-info h3 {
        font-size: 0.9rem;
    }
}

/* Story Modal */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-modal.hidden {
    display: none;
}

.story-content {
    width: 100%;
    height: 100%;
    max-width: 450px;
    /* Mobile story width */
    position: relative;
    display: flex;
    flex-direction: column;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-header {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.story-header img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.story-header span {
    font-weight: 600;
    font-size: 0.9rem;
    flex-grow: 1;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.story-progress-bar {
    position: absolute;
    top: 10px;
    left: 5px;
    right: 5px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 3s linear;
    /* Simulated duration */
}

.story-modal:not(.hidden) .progress-fill {
    width: 100%;
}


/* Stories Modal */
.stories-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    flex-direction: column;
}

.stories-modal.active {
    display: flex;
}

.stories-progress-bar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 2001;
}

.stories-progress-fill {
    height: 100%;
    background-color: #fff;
    width: 0%;
    border-radius: 2px;
    transition: width linear;
}

.stories-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2002;
    padding: 10px;
}

.stories-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#story-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.story-info {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2001;
}

#story-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

#story-username {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.stories-prev,
.stories-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    z-index: 2002;
    border-radius: 50%;
    transition: background 0.3s;
}

.stories-prev:hover,
.stories-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.stories-prev {
    left: 20px;
}

.stories-next {
    right: 20px;
}

@media (max-width: 768px) {

    .stories-prev,
    .stories-next {
        display: none;
        /* Hide arrows on mobile, use swipe */
    }
}

/* Profile View Styles */
.profile-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.back-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 900px) {
    .profile-layout {
        grid-template-columns: 1.5fr 1fr;
        /* Gallery wider than info */
    }
}

/* Gallery */
.profile-gallery {
    margin-bottom: 30px;
}

/* Gallery Item Deletion UI */
.gallery-item-wrapper {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
    transition: all 0.2s;
}

.gallery-item-wrapper:hover {
    border-color: var(--primary-color);
}

.gallery-item-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-delete-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(225, 48, 108, 0.9);
    /* Primary color semi-transparent */
    padding: 12px;
    text-align: center;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.gallery-item-wrapper:hover .gallery-delete-overlay,
.gallery-item-wrapper input:checked~.gallery-delete-overlay {
    bottom: 0;
    /* Show if hovered OR checked */
}

/* Highlight when checked */
.gallery-item-wrapper:has(input:checked) {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.3);
}

/* Fallback for older browsers if needed, but :has is decent. 
   If not supported, the checkbox in the overlay is still visible when hovered/checked logic applies.
*/

.gallery-container {
    position: relative;
    width: 100%;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.gallery-item.hidden-desktop {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    right: -50px;
    /* Move outside grid */
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gallery-track {
        display: flex;
        /* Override grid */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        grid-template-columns: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        /* Mobile slider width */
        scroll-snap-align: center;
        width: auto;
    }

    .gallery-item.hidden-desktop {
        display: block;
        /* Always show on mobile */
    }

    .gallery-nav {
        display: none;
        /* Hide nav buttons on mobile */
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

/* VIP Section Styles */
.vip-section {
    margin-bottom: 50px;
}

.vip-title {
    text-align: center;
    font-size: 2.5rem;
    /* Increased size */
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    /* Stronger glow */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.vip-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.vip-badge-profile {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Basic Section Styles */
.basic-section {
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.basic-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
}

.basic-grid {
    /* Inherit from profiles-grid */
    gap: 10px;
}

@media (max-width: 768px) {
    .basic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.basic-card .card-info {
    padding: 8px;
}

.basic-card h3 {
    font-size: 0.9rem;
}

/* Info Panel */
.profile-info-panel {
    position: relative;
}

/* Grid Layout Fixes */
.models-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Fixed 6 columns on desktop */
    gap: 15px;
    width: 100%;
}

@media (max-width: 1400px) {
    .models-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.models-grid-wrapper {
    width: 100%;
}

/* Ensure full width container works with flex */
.catalog-container {
    max-width: 95%;
    margin: 40px auto;
    padding: 0 20px;
    display: block;
    /* Reset to block */
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background-color: #252525;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-sticky-content {
    background-color: #151515;
    /* Slightly lighter than bg */
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
}

@media (min-width: 900px) {
    .info-sticky-content {
        position: sticky;
        top: 90px;
        /* Below header */
    }
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.profile-age {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.profile-status-badge-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.vip-badge-profile {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    /* Reset margin */
}

/* Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-whatsapp,
.btn-call {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-call {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.btn-call:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-contact {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: #d81b60;
}

/* Info Sections */
.info-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2a2a2a;
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.quote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table td {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.details-table .text-right {
    text-align: right;
    color: var(--text-primary);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #444;
    /* Dark grey */
    color: #eee;
    padding: 6px 12px;
    border-radius: 4px;
    /* Slightly rounded */
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #333;
}

/* Dashboard Styles */
.catalog-container {
    max-width: 95%;
    /* Full width */
    margin: 40px auto;
    padding: 0 20px;
}

/* City Selector & Mobile Menu */
.city-selector-desktop {
    display: none;
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 769px) {
    .city-selector-desktop {
        display: block;
        width: auto;
        /* Ensure it doesn't stretch */
    }

    .city-selector-desktop select {
        width: auto;
        /* Fit to content */
        max-width: 200px;
        /* Optional max width */
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: #111;
    z-index: 10000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    background: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.dashboard-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.dashboard-title {
    font-size: 1.8rem;
    color: #fff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
}

.dashboard-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.status-toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

/* Profile Tabs */
.tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 0;
}

/* New Profile Redesign */
/* Profile Redesign 2025 - Force Wide */
/* Profile Redesign 2025 - Force Wide */
.profile-container-wide {
    width: 95vw !important;
    max-width: 1800px !important;
    margin: 20px auto !important;
    padding-bottom: 50px;
    display: block !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* Force centering relative to viewport */
}

.profile-hero {
    background: linear-gradient(to right, #1a1a1a, #222);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-hero-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-hero-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    /* Ensure image stays in circle */
    border: 2px solid var(--primary-color);
    /* Add border for better visibility */
}

.profile-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.profile-main-content {
    background: #151515;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #333;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.status-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .status-layout {
        grid-template-columns: 1fr;
    }

    .profile-hero {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .profile-hero-actions {
        align-items: flex-start;
        width: 100%;
    }
}

.tab-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 5px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    color: #fff;
    font-weight: bold;
    border-bottom-color: var(--primary-color);
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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



/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.status-text {
    margin-left: 10px;
    font-weight: 600;
}

.status-text.active {
    color: #4CAF50;
}

.status-text.inactive {
    color: #ccc;
}

/* Form Styles - Dark Theme */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
}

.form-control,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 12px;
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    border-radius: 6px;
    color: #fff !important;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color) !important;
    outline: none;
    background-color: #333 !important;
}

/* Select dropdown styling */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 35px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
}

.services-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #ddd;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.services-grid label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.services-grid input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #d81b60;
    transform: translateY(-2px);
}

/* Auth links */
.auth-links {
    margin-top: 20px;
    text-align: center;
    color: #aaa;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 85vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 100001;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

.auth-links a:hover {
    text-decoration: underline;
}

/* City Modal Button Hover */
.city-modal-btn:hover {
    background: var(--primary-color) !important;
    color: #000 !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}