/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #2d3748;
    line-height: 1.6;
    min-height: 100vh;
    width: 1440px;
    margin: 0 auto;
}

/* Top-Bar Header */
.top-bar {
    background: #222;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    flex-wrap:wrap;
}
.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}
.menu-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    flex-wrap:nowrap;
}
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.nav-links a:hover {
    color: #ff6b9d;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
}
.nav-links a.active {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    border-color: #ff6b9d;
}
.nav-links.show {
    display: flex;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.header-left .page-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}
.logo {
    font-size: 1.2rem;
    color: #ffffff;
}
.header-icons {
    display:flex;
    align-items:center;
    gap:1rem;
    margin-left:auto;
}
.header-icons .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ff6b9d;
    background: transparent;
    color: #ff6b9d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.header-icons .icon:hover {
    background: #ff6b9d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #222;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }
    .nav-links.show {
        display: flex;
    }
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    padding: 1rem 0;
    border-bottom: 2px solid #4299e1;
    box-shadow: 0 2px 10px rgba(66, 153, 225, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 500px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #4299e1;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.1);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: #3182ce;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.2);
}

.search-icon {
    color: #4299e1;
    font-size: 1rem;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: #2d3748;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: #4299e1;
}

.clear-icon {
    color: #4299e1;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.clear-icon:hover {
    color: #2d3748;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #4299e1;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-btn.signup {
    background: #4299e1;
    color: white;
}

.auth-btn.signup:hover {
    background: #3182ce;
    transform: translateY(-1px);
}

.auth-btn.login {
    background: transparent;
    color: #4299e1;
}

.auth-btn.login:hover {
    background: #4299e1;
    color: white;
}

.action-btn {
    background: #e2e8f0;
    border: 2px solid #4299e1;
    color: #2d3748;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #4299e1;
    color: white;
    transform: translateY(-1px);
}

/* Category Filter Bar */
.category-bar {
    background: #f7fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #4299e1;
    color: #2d3748;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.category-btn.active {
    background: #4299e1;
    color: white;
}

.category-btn i {
    font-size: 0.8rem;
}

/* Main Content */
.main-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    min-height: calc(100vh - 200px);
}

/* Left Section - Listings (60%) */
.listings-section {
    flex: 0 0 60%;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(66, 153, 225, 0.1);
    border: 1px solid #e2e8f0;
}

.listings-header {
    margin-bottom: 2rem;
}

.listings-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-icon {
    color: #4299e1;
    font-size: 1.5rem;
}

/* Refine Search Filters */
.refine-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-dropdown {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #2d3748;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.filter-dropdown:hover {
    border-color: #4299e1;
}

.filter-dropdown:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Product Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.listing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.05);
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
    border-color: #4299e1;
}

.listing-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f7fafc;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-info {
    padding: 1rem;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.username {
    color: #4299e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.favorite-btn {
    background: transparent;
    border: none;
    color: #4299e1;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.25rem;
}

.favorite-btn:hover {
    color: #3182ce;
    transform: scale(1.1);
}

.favorite-btn.favorited {
    color: #3182ce;
}

.listing-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.category-tag {
    background: #e2e8f0;
    color: #2d3748;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #2d3748;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: #4299e1;
    color: white;
    border-color: #4299e1;
}

/* Right Section - Interactive Map (40%) */
.map-section {
    flex: 0 0 40%;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(66, 153, 225, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
}

.map-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.map-btn {
    background: #4299e1;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #3182ce;
    transform: translateY(-1px);
}

.map-actions {
    display: flex;
    gap: 0.5rem;
}

.map-action-btn {
    background: #e2e8f0;
    border: 2px solid #4299e1;
    color: #2d3748;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-action-btn:hover {
    background: #4299e1;
    color: white;
}

/* Interactive Map */
.interactive-map {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 10px;
    overflow: hidden;
    cursor: grab;
}

.interactive-map:active {
    cursor: grabbing;
}

.map-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(66, 153, 225, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 153, 225, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* Map Pins */
.map-pin {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.pin-icon {
    width: 45px;
    height: 45px;
    background: white;
    border: 3px solid #4299e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
    transition: all 0.3s ease;
}

.map-pin:hover .pin-icon {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.3);
    border-color: #3182ce;
}

/* Pin Tooltips */
.pin-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.2);
    padding: 1rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 2px solid #e2e8f0;
}

.map-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-image {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #f7fafc;
}

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

.tooltip-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.tooltip-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4299e1;
    margin-bottom: 0.25rem;
}

.tooltip-distance {
    font-size: 0.8rem;
    color: #4299e1;
    margin-bottom: 0.25rem;
}

.tooltip-category {
    font-size: 0.75rem;
    color: #2d3748;
    background: #e2e8f0;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: inline-block;
}

/* Your Location Marker */
.your-location {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
}

.location-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(66, 153, 225, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(66, 153, 225, 0.3));
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    text-align: center;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.footer-column p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.main-footer {
    background: #2a2a2a;
    color: white;
    padding: 4rem 2rem 2rem;
    border-radius: 15px;
    margin: 2rem;
    position: relative;
    overflow: hidden;
  }

  .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1.5" fill="%23ffffff" opacity="0.08"/><circle cx="20" cy="80" r="3" fill="%23ffffff" opacity="0.06"/><polygon points="80,10 85,15 80,20" fill="%23ffffff" opacity="0.1"/><path d="M5,70 Q15,60 25,70" stroke="%23ffffff" stroke-width="0.5" opacity="0.1" fill="none"/></svg>');
    pointer-events: none;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }

  /* Left Section - Branding */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
  }

  .logo-accent {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b9d;
  }

  .footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
  }

  .footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-top: auto;
  }

  /* Middle Section - Newsletter */
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-newsletter h3 {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-newsletter h4 {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .newsletter-input {
    flex: 1;
    padding: 0.75rem;
    background: #3a3a3a;
    border: 1px solid #555;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
  }

  .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .newsletter-input:focus {
    outline: none;
    border-color: #ff6b9d;
  }

  .newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: #ff6b9d;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

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

  /* Right Section - Social & Contact */
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .social-section h3,
  .contact-section h3 {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #ff6b9d;
    transform: translateY(-2px);
  }

  .contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  /* Bottom Legal Links */
  .footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .legal-link:hover {
    color: white;
  }


/* Responsive Design */
@media (max-width: 1440px) {
    body {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
    }
    
    .listings-section,
    .map-section {
        flex: none;
        width: 100%;
    }
    
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .listings-section,
    .map-section {
        padding: 1rem;
    }
    
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .category-container {
        justify-content: center;
    }
    
    .refine-filters {
        justify-content: center;
    }
    .main-footer {
      margin: 1rem;
      padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }

    .footer-brand {
      order: 1;
    }

    .footer-newsletter {
      order: 2;
    }

    .footer-contact {
      order: 3;
    }

    .newsletter-form {
      flex-direction: column;
      gap: 1rem;
    }

    .social-icons {
      justify-content: center;
    }

    .footer-legal {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
}

/* Custom Scrollbar */
.listings-section::-webkit-scrollbar {
    width: 8px;
}

.listings-section::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 4px;
}

.listings-section::-webkit-scrollbar-thumb {
    background: #4299e1;
    border-radius: 4px;
}

.listings-section::-webkit-scrollbar-thumb:hover {
    background: #3182ce;
} 

/* ==================================================
   Dark Theme Overrides – matches color palette of 
   other pages (no layout or icon changes)
   ================================================== */

/* General colors */
body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
}

/* Header */
.header {
    background: #222;
    border-bottom: 2px solid #ff6b9d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo,
.logo-text {
    color: #ffffff;
}

/* Search Bar */
.search-bar {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff6b9d;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.1);
}
.search-bar:focus-within {
    border-color: #ff8fab;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
}
.search-icon,
.clear-icon {
    color: #ff6b9d;
}
.search-bar input {
    color: #ffffff;
}
.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Auth Buttons */
.auth-btn {
    border-color: #ff6b9d;
    color: #ffffff;
}
.auth-btn.signup {
    background: #ff6b9d;
}
.auth-btn.signup:hover {
    background: #ff8fab;
}
.auth-btn.login {
    background: transparent;
    color: #ff6b9d;
}
.auth-btn.login:hover {
    background: rgba(255, 107, 157, 0.2);
    color: #ffffff;
}

/* Icon Action Buttons */
.action-btn {
    border-color: #ff6b9d;
    background: transparent;
    color: #ff6b9d;
}
.action-btn:hover {
    background: #ff6b9d;
    color: #ffffff;
}

/* Category Bar */
.category-bar {
    background: #2a2a2a;
    border-bottom: 1px solid #333;
}
.category-btn {
    border-color: #ff6b9d;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}
.category-btn:hover {
    background: rgba(255, 107, 157, 0.2);
}
.category-btn.active {
    background: #ff6b9d;
    color: #ffffff;
}

/* Listings accents */
.location-icon,
.username,
.favorite-btn,
.favorite-btn i {
    color: #ff6b9d;
}
.listing-card:hover {
    border-color: #ff6b9d;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

/* Pagination */
.pagination-btn.active {
    background: #ff6b9d;
    border-color: #ff6b9d;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
}
.footer-logo .logo-text {
    color: #ffffff;
}
.footer-logo .logo-accent {
    color: #ff6b9d;
}

/* Map Buttons */
.map-btn {
    background: #ff6b9d;
    color: #ffffff;
}
.map-btn:hover {
    background: #ff8fab;
}
.map-action-btn {
    border-color: #ff6b9d;
    color: #ff6b9d;
}
.map-action-btn:hover {
    background: #ff6b9d;
    color: #ffffff;
}

/* Newsletter button */
.newsletter-btn {
    background: #ff6b9d;
}
.newsletter-btn:hover {
    background: #ff8fab;
} 