/* Base Styles */
:root {
    --primary: #ff6b35;
    --primary-dark: #f56928;
    --secondary: #667eea;
    --accent: #ff416c;
    --dark: #1a1a2e;
    --darker: #16213e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #00b09b;
    --warning: #f27121;
    --border-radius: 12px;
    --shadow: 0 8px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --space-lg: 24px;
    --space-2xl: 48px;
}

body.light-mode {
    --dark: #ffffff;
    --darker: #f5f5f7;
    --light: #0f0f1a;
    --gray: #6b6b7d;
}

body.light-mode {
    background-color: #ffffff;
    color: #0f0f1a;
}

body.light-mode .top-bar {
    background: #f5f5f7;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle:hover,
body.light-mode .top-bar-link:hover,
body.light-mode .mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-overlay {
    background: rgba(0, 0, 0, 0.3);
}

body.light-mode .mobile-menu {
    background: #ffffff;
}

body.light-mode .mobile-menu-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Light Mode - Search & Navigation */
body.light-mode .search-form {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .search-input {
    background: transparent;
    color: #0f0f1a;
}

body.light-mode .search-input::placeholder {
    color: rgba(15, 15, 26, 0.5);
}

body.light-mode .search-btn {
    color: #0f0f1a;
}

body.light-mode .main-nav {
    background: rgba(245, 245, 247, 0.95);
}

body.light-mode .nav-link {
    color: #0f0f1a;
}

body.light-mode .nav-link:hover {
    color: var(--primary);
}

body.light-mode .mobile-menu-nav a {
    color: #0f0f1a;
}

body.light-mode .mobile-menu-nav a:hover {
    color: var(--primary);
}

body.light-mode .escort-card {
    background: #f5f5f7;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .escort-card:hover {
    border-color: var(--primary);
}

body.light-mode .category-card {
    background: #f5f5f7;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .category-card:hover {
    border-color: var(--primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-bar {
    background: var(--darker);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.cart-btn {
    position: relative;
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Top Bar Actions - Right Aligned */
.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.top-bar-link,
.theme-toggle,
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.top-bar-link {
    color: var(--light);
    text-decoration: none;
}

.telegram-btn {
    color: #0088cc !important;
}

.telegram-btn:hover {
    background-color: rgba(0, 136, 204, 0.15);
}

/* Main Navigation */
.main-nav {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-shrink: 0;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

/* Search Box - Centered */
.nav-right {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.search-box {
    width: 100%;
    max-width: 350px;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 8px 15px;
    gap: 10px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--light);
    outline: none;
    font-size: 0.95rem;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-dark);
}

/* Mobile Menu Styles */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 200ms ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 280px;
    background: var(--dark);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 250ms ease;
    flex-direction: column;
    padding: 1rem;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-menu-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-nav {
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-nav a {
    color: var(--light);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    display: block;
}

.mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    margin-left: auto;
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
    }

    .nav-right {
        width: 100%;
        order: 3;
        max-width: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .search-form {
        max-width: 100%;
    }
}
.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.hero-slide {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26,26,46,0.9), rgba(26,26,46,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* FAB Container */
.fab-container {
    position: fixed;
    bottom: var(--space);
    right: var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 1000;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
}

.fab-main {
    background: var(--gradient-primary);
    color: white;
    font-size: 1.25rem;
}

.fab-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    opacity: 0;
    transform: translateY(20px);
}

.fab-container:hover .fab-secondary {
    opacity: 1;
    transform: translateY(0);
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}
/* Featured Escorts */
.featured-escorts {
    margin: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all:hover {
    gap: 10px;
}

.escorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.escort-card {
    background: var(--darker);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.escort-img {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.escort-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.escort-card:hover .escort-img img {
    transform: scale(1.05);
}

.escort-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.escort-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
}

.escort-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.escort-location {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.escort-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
    display: none;
}

.escort-tags {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.escort-actions {
    display: none;
    gap: 10px;
}

/* Responsive Escort Grid */
@media (max-width: 768px) {
    .escorts-grid {
        grid-template-columns: 1fr;
    }
}

/* Categories Section */
.categories-section {
    margin: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--darker);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.category-badge {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}
/* ===========================================
   HOT PRODUCTS SECTION WITH HOVER PREVIEW
   =========================================== */

.products-section {
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced Section Header */
.section-header {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: subtitlePulse 3s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Enhanced Tab Buttons with Preview States */
.tab-buttons {
    display: flex;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 100%);
    padding: 10px;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 22px 25px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* Tab hint text */
.tab-hint {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
}

.tab-btn:hover .tab-hint,
.tab-btn.preview .tab-hint {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* Preview State */
.tab-btn.preview {
    background: linear-gradient(145deg, 
        rgba(255, 62, 128, 0.2) 0%,
        rgba(108, 99, 255, 0.1) 100%);
    border-color: rgba(255, 62, 128, 0.4);
    color: var(--primary-light);
    animation: previewPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 62, 128, 0.2);
}

@keyframes previewPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 62, 128, 0.2);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 62, 128, 0.3);
        transform: translateY(-1px);
    }
}

/* Active (Pinned) State */
.tab-btn.active {
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--secondary) 100%);
    color: white;
    border: none;
    box-shadow: 
        0 10px 30px rgba(255, 62, 128, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    position: relative;
}

.tab-btn.active .tab-hint {
    display: none;
}

/* Active tab indicator */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 25%;
    right: 25%;
    height: 3px;
    background: white;
    border-radius: 3px;
    filter: drop-shadow(0 0 10px white);
}

/* Hover State (not preview or active) */
.tab-btn:not(.active):not(.preview):hover {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--light);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Tab Icons */
.tab-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.tab-btn.preview i {
    animation: iconWiggle 0.5s ease;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.tab-btn.active i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px white);
}

/* Tab Content with Preview Effects */
.tab-content {
    padding: 40px;
    display: none;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Preview content animation */
.tab-content:not(.active) {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: none;
    z-index: 1;
}

.tab-content.preview {
    opacity: 1;
    pointer-events: none;
    transform: translateY(0);
    animation: contentPreview 0.3s ease-out;
    z-index: 2;
}

@keyframes contentPreview {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active content */
.tab-content.active {
    display: block;
    animation: contentActive 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

@keyframes contentActive {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pin Indicator */
.pin-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 62, 128, 0.3);
}

.pin-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.pin-indicator i {
    animation: pinSpin 0.5s ease;
}

@keyframes pinSpin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* Preview overlay for the entire section */
.products-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.products-tabs.preview-mode::before {
    opacity: 1;
}

/* Enhanced products grid for preview */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
}

.tab-content.preview .products-grid {
    opacity: 0.8;
    filter: blur(1px);
    transform: scale(0.98);
    transition: all 0.3s ease;
}

/* Preview Tooltip */
.tab-btn::before {
    content: 'Click to pin this tab';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.tab-btn.preview:not(.active):hover::before,
.tab-btn.preview:not(.active):hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Focus styles for accessibility */
.tab-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 62, 128, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
        gap: 6px;
    }
    
    .tab-btn {
        flex: none;
        min-width: 160px;
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .tab-hint {
        font-size: 0.7rem;
    }
    
    .tab-btn i {
        font-size: 1.1rem;
    }
    
    .pin-indicator {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .tab-btn::before {
        display: none; /* Hide tooltip on mobile */
    }
    
    .tab-content {
        padding: 20px;
        min-height: 400px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .tab-btn.preview {
        animation: none;
    }
    
    .tab-hint {
        display: none;
    }
    
    /* Show preview on tap instead of hover */
    .tab-btn:not(.active):active {
        background: linear-gradient(145deg, 
            rgba(255, 62, 128, 0.2) 0%,
            rgba(108, 99, 255, 0.1) 100%);
        border-color: rgba(255, 62, 128, 0.4);
        color: var(--primary-light);
    }
}

/* Smooth transitions for all interactive elements */
.tab-btn,
.tab-content,
.pin-indicator {
    will-change: transform, opacity;
}

/* Performance optimizations for animations */
@media (prefers-reduced-motion: reduce) {
    .tab-btn,
    .tab-content,
    .pin-indicator {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   MODERN FOOTER STYLES
   ============================================ */

/* Base Footer Container */
#main-footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #151522 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animated Gradient Border Top */
#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #ff6b9d 0%, 
        #8a2be2 25%, 
        #4a90e2 50%, 
        #00d4ff 75%, 
        #00ffaa 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background Pattern */
#main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Sections */
.footer-section {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(138, 43, 226, 0.2);
}

/* Section Headers */
.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #8a2be2);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.footer-section:hover h4::after {
    width: 80px;
}

.footer-section h4 i {
    color: #8a2be2;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff6b9d, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.footer-section:hover h4 i {
    transform: scale(1.1) rotate(5deg);
}

/* Paragraph Text */
.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Links Styling */
.footer-section a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b9d, #8a2be2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
    padding-left: 1.25rem;
}

.footer-section a:hover::before {
    opacity: 1;
}

.footer-section a i {
    color: #8a2be2;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    min-width: 16px;
}

.footer-section a:hover i {
    transform: rotate(90deg) scale(1.2);
    color: #ff6b9d;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #8a2be2, #ff6b9d);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 
        0 10px 20px rgba(138, 43, 226, 0.4),
        0 0 20px rgba(255, 107, 157, 0.3);
    border-color: transparent;
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Contact Info */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    padding: 0.5rem 0;
}

.contact-info i {
    color: #8a2be2;
    width: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-info p:hover i {
    color: #ff6b9d;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    display: inline;
}

.contact-info a:hover {
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    transform: none;
    padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px 20px 0 0;
    margin-top: 2rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 0.75rem;
    font-weight: 400;
}

.footer-bottom a::after {
    content: '•';
    position: absolute;
    right: -3px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-bottom a:last-child::after {
    content: '';
}

.footer-bottom a:hover {
    color: #ff6b9d;
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

/* Disclaimer */
.disclaimer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.15), 
        rgba(185, 28, 28, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(239, 68, 68, 0.1) 50%, 
        transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.disclaimer i {
    color: #ef4444;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Copyright Animation */
.footer-bottom p:first-child {
    position: relative;
    display: inline-block;
}

.footer-bottom p:first-child::after {
    content: '©';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a2be2;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #main-footer {
        padding: 3rem 0 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-section {
        padding: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem;
        border-radius: 16px 16px 0 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-section a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    #main-footer {
        background: linear-gradient(135deg, #0c0c14 0%, #181829 100%);
    }
    
    .footer-section {
        background: rgba(255, 255, 255, 0.03);
    }
}

/* Print Styles */
@media print {
    #main-footer {
        background: #ffffff !important;
        color: #000000 !important;
        border-top: 2px solid #000000;
    }
    
    .footer-section {
        border: 1px solid #cccccc;
        background: #ffffff !important;
    }
    
    .social-links,
    .footer-section::before,
    .footer-section::after {
        display: none;
    }
}
/* Add to your footer CSS */
.footer-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-section:hover .footer-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.4));
}

/* If your logo is white/light colored on dark background */
.footer-logo.light-logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* If you want to use SVG directly */
.footer-logo-svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    color: #8a2be2;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Escorts Grid & Cards */
.escorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.escort-card {
    background: var(--darker);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.escort-img {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.escort-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.escort-badge,
.product-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,107,53,0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.product-rating {
    top: auto;
    bottom: 10px;
    background: rgba(0,0,0,0.7);
}

.escort-info,
.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.escort-name,
.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--light);
}

.escort-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.escort-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.escort-tags,
.product-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 10px 0;
    flex: 1;
}

.tag {
    background: rgba(102,126,234,0.2);
    color: #667eea;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag.verified {
    background: rgba(16,185,129,0.2);
    color: #10b981;
}

.tag.available {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

.product-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 8px 0;
    flex: 1;
}

.product-price,
.escort-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.escort-actions,
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    flex: 1;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(102,126,234,0.2);
    color: #667eea;
}

.btn-secondary:hover {
    background: rgba(102,126,234,0.3);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 10px;
    font-size: 0.8rem;
}

/* Products Grid & Tabs */
.products-tabs {
    margin: 30px 0;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--darker);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.product-img {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
    display: block;
}