/* Stores Page Specific Styles */

/* ================================================ */
/* MODERN FLOATING BANNER - New Store Update (Multiple) */
/* ================================================ */

.recently-added-banner {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 999;

    /* Modern Gradient Background */
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 16px;
    padding: 1.5rem;

    /* Advanced Shadow */
    box-shadow:
        0 20px 40px rgba(16, 185, 129, 0.4),
        0 0 60px rgba(16, 185, 129, 0.2);

    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 320px;
    max-width: 400px;

    /* Animation */
    animation: slideInRight 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInRight {
    0% {
        transform: translateY(-50%) translateX(500px);
        opacity: 0;
    }
    60% {
        transform: translateY(-50%) translateX(-20px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* Banner Header (Icon + Title + Close) */
.banner-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Animated Fire Icon */
.banner-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    /* Glow Effect */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.banner-icon i {
    font-size: 1.3rem;
    color: #fbbf24;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
    animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

@keyframes fireFlicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.05) rotate(-5deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    75% {
        opacity: 0.95;
        transform: scale(1.05) rotate(-3deg);
    }
}

/* Banner Title */
.banner-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.banner-close {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg) scale(1.1);
}

.banner-close i {
    font-size: 0.7rem;
}

/* Stores List */
.banner-stores-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

.store-list-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.store-list-item:last-child {
    border-bottom: none;
}

.store-list-item:hover {
    color: #fef3c7;
    padding-left: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 800px) {
    /* Fix hamburger menu positioning */
    .nav-menu {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .recently-added-banner {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: none;
        min-width: auto;
        max-width: none;
        flex-direction: column;
        gap: 1rem;
    }

    .banner-left {
        width: 100%;
    }

    .banner-right {
        width: 100%;
        justify-content: space-between;
    }

    .banner-action-btn {
        flex: 1;
    }

    @keyframes slideInRight {
        0% {
            transform: translateY(200px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* View Options - Stack vertically on mobile */
    .view-tabs-container {
        flex-direction: column;
        gap: 1rem;
    }

    .view-options {
        width: 100%;
        justify-content: space-between;
    }

    .sort-dropdown {
        flex: 1;
    }

    /* Quick filters - Smaller on mobile */
    .quick-filter-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* View Tabs */
.view-tabs-section {
    background: var(--bg-primary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.view-tabs-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.view-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.view-tabs {
    display: flex;
    gap: 0.5rem;
}

.view-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Sort Dropdown */
.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.sort-dropdown:hover {
    border-color: #ea580c;
}

.sort-dropdown i {
    color: #ea580c;
    font-size: 0.875rem;
}

.sort-dropdown select {
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    outline: none;
    padding: 0;
}

/* View Density Toggle */
.density-toggle {
    display: flex;
    gap: 0.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.25rem;
}

.density-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.density-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.density-btn.active {
    background: #ea580c;
    color: white;
}

.density-btn i {
    font-size: 0.875rem;
}

.tab-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.tab-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #ffd601;
    color: #000;
    border-color: #ffd601;
}

.tab-btn i {
    font-size: 0.9rem;
}

.tab-emoji {
    font-size: 1.2rem;
    line-height: 1;
}

/* Quick Filter Tags */
.quick-filters-section {
    background: rgb(251, 251, 251);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.quick-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-filter-tag:hover {
    border-color: #ea580c;
    color: #ea580c;
    background: #fff7ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
}

.quick-filter-tag.active {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    border-color: #ea580c;
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.quick-filter-tag i {
    font-size: 0.875rem;
}

/* Map View */
.map-view-section {
    padding: 2rem 0;
    background: var(--bg-primary);
}

#map {
    width: 100%;
    min-height: 500px;
}

/* Stores Hero Background */
.stores-hero {
    color: #2d3748;
    min-height: 100px;
    padding: 2rem 0;
    margin-bottom: 0;
}

.stores-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stores-hero .hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stores-hero .hero-description {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
}

/* Typing Animation for Store Hero h1 */
.stores-hero h1 {
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 8px rgba(187, 206, 16, 0.9),
                 -1px -1px 4px rgba(0,0,0,0.7),
                 0 0 15px rgba(187, 20, 20, 0.8);
    font-weight: 900;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
    display: inline-block;
    max-width: 0;
    animation: typingStoreHero 25s steps(27, end) infinite;
}

@keyframes typingStoreHero {
    0% {
        max-width: 0;
    }
    12% {
        max-width: 100%;
    }
    92% {
        max-width: 100%;
    }
    100% {
        max-width: 0;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 1.5rem 0 0.5rem;
    border-bottom: 1px solid var(--bg-tertiary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
}

.breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-stores);
}

.breadcrumb i {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

.breadcrumb span {
    color: var(--text-secondary);
}

.page-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-stores), #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title i {
    color: var(--color-stores);
    -webkit-text-fill-color: var(--color-stores);
}

.page-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-stats {
    display: flex;
    gap: 2rem;
}

.page-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-tertiary);
}

.page-stats .stat-item i {
    color: var(--color-stores);
    font-size: var(--font-size-lg);
}

.page-stats .count {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.page-stats .label {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Filters Section */
.filters-section {
    background: transparent;
    padding: 0.5rem 2rem;
    margin: 1.5rem auto 0.5rem;
    max-width: 1200px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.clear-filters {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgb(251, 251, 251);
    border: 2px solid #06b6d4;
    border-radius: 8px;
    color: #06b6d4;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
}

.clear-filters.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.clear-filters:hover {
    background: #06b6d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.filters-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #06b6d4;
    font-size: var(--font-size-base);
}

.search-input input,
.filter-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-left: 2.75rem;
    background: rgb(251, 251, 251);
    border: 2px solid #67e8f9;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.filter-group select {
    padding-left: 1rem;
}

.search-input input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    transform: translateY(-1px);
}

/* Search Clear Button */
.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.search-clear:hover {
    background-color: #f1f5f9;
    color: #64748b;
    transform: translateY(-50%) scale(1.1);
}

.search-clear:active {
    transform: translateY(-50%) scale(0.95);
}

/* Select Clear Buttons - Pill Style */
.select-inline {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.select-clear {
    position: absolute;
    right: 0.5rem;
    background: #ef4444;
    border: none;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0.35rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1rem;
    height: 1rem;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(239, 68, 68, 0.2);
}

.select-clear:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.select-clear:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(239, 68, 68, 0.2);
}

/* Clear All Filters Button */
.clear-all-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-all-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #ff4500, #ff4500);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
    white-space: nowrap;
}

.clear-all-filters:hover {
    background: linear-gradient(135deg, #ff4500, #ff4500);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.clear-all-filters:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.clear-all-filters i {
    font-size: 0.75rem;
}

/* Stores List Section */
.stores-list-section {
    padding: 3rem 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header h2 i {
    color: var(--color-stores);
}

.section-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

/* Stores Grid */
.stores-grid-section {
    padding: 2rem 0 4rem;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.store-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-tertiary);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-stores), #ff9500);
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-stores);
}

.store-card:hover::before {
    height: 6px;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.store-logo {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(253, 186, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-stores);
}

.store-logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: 4px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge.online {
    background: rgba(125, 211, 252, 0.1);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.badge.physical {
    background: rgba(134, 239, 172, 0.1);
    color: var(--color-manufacturers);
    border: 1px solid var(--color-manufacturers);
}

.badge.fast-shipping {
    background: rgba(253, 224, 71, 0.1);
    color: var(--color-highlight);
    border: 1px solid var(--color-highlight);
}

.badge.secure {
    background: rgba(217, 70, 239, 0.1);
    color: var(--color-models);
    border: 1px solid var(--color-models);
}

.badge.editors-choice {
    background: linear-gradient(135deg, var(--color-highlight), #f59e0b);
    color: var(--bg-primary);
    font-weight: 700;
}

.new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.store-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: capitalize;
}

/* Hide flag icon in title section on desktop - shown on mobile only */
.store-name .flag-icon {
    display: none;
}

.store-flag-mobile {
    display: none !important;
}

.store-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}

.store-location span {
    text-transform: capitalize !important;
}

.store-location i {
    color: var(--color-stores);
    font-size: 0.875rem;
    margin-right: 0.25rem;
}

.store-location .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    margin-left: 5px;
    margin-right: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.store-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.store-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--color-accent);
    width: 16px;
    text-align: center;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--color-highlight);
    font-size: var(--font-size-sm);
}

.rating-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.store-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-visit-store {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-stores), #ff9500);
    border: none;
    border-radius: var(--border-radius);
    color: var(--bg-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-size: var(--font-size-sm);
}

.btn-visit-store:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-favorite {
    width: 3rem;
    height: 3rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.btn-favorite:hover,
.btn-favorite.active {
    background: rgba(220, 38, 127, 0.1);
    border-color: #dc2779;
    color: #dc2779;
}

.btn-favorite.active i {
    color: #dc2779;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--color-stores);
    border-radius: var(--border-radius);
    color: var(--color-stores);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--font-size-base);
}

.btn-load-more:hover {
    background: var(--color-stores);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.no-results-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-results-content p {
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
}

.btn-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-stores);
    border: none;
    border-radius: var(--border-radius);
    color: var(--bg-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-clear-filters:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* Store Card Animations */
.store-card:nth-child(1) { animation-delay: 0.1s; }
.store-card:nth-child(2) { animation-delay: 0.2s; }
.store-card:nth-child(3) { animation-delay: 0.3s; }
.store-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .filters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0 2rem;
    }
    
    .page-title {
        font-size: var(--font-size-2xl);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .store-card {
        padding: 0.75rem !important;
        min-height: auto !important;
    }

    .store-header {
        flex-direction: column;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .store-logo {
        width: 2.75rem !important;
        height: 2.75rem !important;
    }

    .store-logo-img {
        width: 2.25rem !important;
        height: 2.25rem !important;
    }

    .store-info h3 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.3 !important;
    }

    .store-info p {
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    .store-location {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }

    .store-description {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }

    .store-badges {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .badge {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.65rem !important;
    }

    .store-actions {
        flex-direction: column;
        margin-top: 0.5rem !important;
        gap: 0.4rem !important;
    }

    .store-actions .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .btn-favorite {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    /* Hero Title - Prevent text overflow on small screens */
    .stores-hero .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .stores-hero .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .store-card {
        padding: 0.75rem !important;
        min-height: auto !important;
    }

    .store-header {
        margin-bottom: 0.5rem !important;
        gap: 0.5rem !important;
    }

    .store-logo {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 1.2rem !important;
    }

    .store-logo-img {
        width: 2rem !important;
        height: 2rem !important;
    }

    .store-info h3 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.3 !important;
    }

    .store-info p {
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    .badge {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.65rem !important;
    }

    .store-location {
        font-size: 0.75rem !important;
        margin-bottom: 0.35rem !important;
        gap: 0.35rem !important;
    }

    .store-location i {
        font-size: 0.75rem !important;
    }

    .store-description {
        font-size: 0.75rem !important;
        margin-bottom: 0.35rem !important;
        line-height: 1.3 !important;
    }

    .store-actions {
        margin-top: 0.5rem !important;
        gap: 0.4rem !important;
    }

    .store-actions .btn {
        padding: 0.4rem 0.65rem !important;
        font-size: 0.75rem !important;
    }

    .page-stats {
        justify-content: center;
    }
}

/* Inline Store Counter in Filter Header */
.filters-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.store-counter-inline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(234, 88, 12, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(234, 88, 12, 0.15);
}

.store-counter-inline i {
    color: var(--color-stores);
    font-size: 0.9rem;
}

.store-counter-inline #storeCounter {
    font-weight: 700;
    color: var(--color-stores);
    font-size: 1rem;
}

.store-counter-inline .counter-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* List Format Styles */
.stores-list-section {
    padding: 1rem 0;
    background: rgb(251, 251, 251);
    transition: all 0.3s ease;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Store Item Layout - Minimal Light Gray */
.store-item {
    background: white;
    border-radius: 0px;
    padding: 0.6rem 0.85rem;
    border: none;
    border-top: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: none;
    margin-bottom: 0px;
    cursor: pointer;
    position: relative;
}

/* Hidden filter class - stronger than !important display rules */
.store-item.hidden-filter {
    display: none !important;
}

.store-item:hover {
    background: #f9fafb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.store-item:active {
    background: #f3f4f6;
}

/* Compact View */
.stores-list.compact .store-item {
    padding: 0.875rem 1.25rem;
}

.stores-list.compact .store-logo {
    width: 36px;
    height: 36px;
}

.stores-list.compact .store-name {
    font-size: 0.9rem;
}

.stores-list.compact .store-slogan {
    font-size: 0.8rem;
}

.stores-list.compact .store-location {
    font-size: 0.75rem;
}

.stores-list.compact .btn-view-badge,
.stores-list.compact .btn-like,
.stores-list.compact .btn-dislike,
.stores-list.compact .btn-visit-store {
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
}

.store-item:first-child {
    border-top: none;
}

.store-item:last-child {
    border-bottom: none;
}

.store-item:hover {
    background: #f9fafb;
    border-left: 3px solid #10b981;
    padding-left: calc(1.5rem - 2px);
}

.store-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    /* Link styles for <a> element */
    text-decoration: none;
    color: inherit;
}

/* Ensure link styling doesn't interfere */
.store-content:hover,
.store-content:focus,
.store-content:active,
.store-content:visited {
    text-decoration: none;
    color: inherit;
}

/* Store Logo */
.store-logo {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: contain;
    padding: 0.2rem;
}

.store-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.store-logo i {
    color: #6b7280;
    font-size: 1rem;
}

/* Store Info - Single Row Layout */
.store-main-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.store-title-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 400px;
    flex: 0 0 400px;
}

.store-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.25;
    white-space: nowrap;
    text-transform: capitalize;
}

.store-slogan {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    white-space: nowrap;
    position: relative;
    padding-left: 0.75rem;
}

.store-slogan::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #d1d5db;
}

/* Store Bottom Row - Now inline */
.store-bottom-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Location */
.store-location {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 280px;
    flex: 0 0 280px;
}

.store-location i {
    color: #ef4444;
    font-size: 0.875rem;
}

/* Store Actions */
.store-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.btn-visit-store {
    background: #10b981;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-visit-store:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* View Badge - Shows view count for each store */
.btn-view-badge {
    background: white;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    pointer-events: none;
}

/* TWITTER-STYLE LIKE/DISLIKE BUTTONS - Larger Screens Version */
.btn-like,
.btn-dislike {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

/* LIKE - Normal State (Gray) */
.btn-like {
    color: #536471;
}

.btn-like i {
    font-weight: 400;
    transition: all 0.2s ease;
}

/* LIKE - Hover (Green Color) */
.btn-like:hover {
    color: #00ba7c;
}

/* LIKE - Active (Green + Bold Icon) */
.btn-like.active {
    color: #00ba7c;
}

.btn-like.active i {
    font-weight: 900;
}

/* LIKE - Active Hover (Slightly Darker Green) */
.btn-like.active:hover {
    color: #00a06d;
}

/* DISLIKE - Normal State (Gray) */
.btn-dislike {
    color: #536471;
}

.btn-dislike i {
    font-weight: 400;
    transition: all 0.2s ease;
}

/* DISLIKE - Hover (Red Color) */
.btn-dislike:hover {
    color: #f4212e;
}

/* DISLIKE - Active (Red + Bold Icon) */
.btn-dislike.active {
    color: #f4212e;
}

.btn-dislike.active i {
    font-weight: 900;
}

/* DISLIKE - Active Hover (Slightly Darker Red) */
.btn-dislike.active:hover {
    color: #d71d28;
}

/* Pop Animation on Click */
.btn-like i.pop,
.btn-dislike i.pop {
    animation: likeAnimation 0.3s ease;
}

@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.store-location {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.store-location i {
    color: var(--color-stores);
    font-size: 0.875rem;
    margin-right: 0.25rem;
}

.store-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Like/Dislike Buttons */
.like-dislike-buttons {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ================================================ */
/* TWITTER-STYLE LIKE/DISLIKE BUTTONS */
/* ================================================ */

.btn-like, .btn-dislike {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

/* NORMAL STATE - Gri (Twitter style) */
.btn-like {
    color: #536471;
}

.btn-like i {
    font-weight: 400;
    transition: all 0.2s ease;
}

.btn-dislike {
    color: #536471;
}

.btn-dislike i {
    font-weight: 400;
    transition: all 0.2s ease;
}

/* HOVER - Sadece renk değişir, background YOK */
.btn-like:hover {
    color: #00ba7c;
}

.btn-dislike:hover {
    color: #f4212e;
}

/* ACTIVE (Clicked) - Sadece renk + Bold icon, background YOK */
.btn-like.active {
    color: #00ba7c;
}

.btn-like.active i {
    font-weight: 900;
}

.btn-dislike.active {
    color: #f4212e;
}

.btn-dislike.active i {
    font-weight: 900;
}

/* POP ANIMATION (Twitter gibi) */
@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.btn-like.animating i,
.btn-dislike.animating i {
    animation: likeAnimation 0.3s ease;
}

.like-count, .dislike-count {
    font-weight: 600;
    font-size: 0.75rem;
}

.btn-visit-store {
    background: rgb(251, 251, 251);
    color: #ea580c;
    border: 1px solid #e5e7eb;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-visit-store:hover {
    border-color: #ea580c;
    color: white;
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(234, 88, 12, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-main-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .store-badges {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .store-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .store-item {
        padding: 0.75rem 0.65rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        min-height: 70px !important;
        height: auto !important;
    }

    /* Remove arrow on mobile - replaced with like/dislike buttons */
    .store-item::after {
        display: none !important;
    }

    .store-content {
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        flex: 1 !important;
        padding-right: 1.5rem !important;
    }

    .store-logo {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }

    .store-logo img {
        width: 26px !important;
        height: 26px !important;
    }

    .store-details {
        flex: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        overflow: hidden !important;
    }

    /* Override desktop grid layout for mobile */
    .store-title-section {
        display: grid !important;
        grid-template-columns: 1fr auto 20px !important;
        align-items: center !important;
        gap: 0.5rem !important;
        min-width: auto !important;
        flex: 1 !important;
        overflow: visible !important;
    }

    .store-name {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        margin: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }

    /* Hide slogan on mobile */
    .store-slogan {
        display: none !important;
    }

    .store-location {
        display: none !important;
    }

    /* Show flag icon on mobile - same size as desktop */
    .store-flag-mobile {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 20px !important;
        min-width: 20px !important;
        height: 15px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        grid-column: 3 !important;
    }

    /* Hide WiFi icon on mobile */
    .store-title-section .fa-wifi {
        display: none !important;
    }

    /* NEW badge alignment on mobile */
    .new-store-badge {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        grid-column: 2 !important;
    }

    /* Hide store type badges on mobile */
    .store-type-badge {
        display: none !important;
    }

    /* Show like/dislike buttons on mobile instead of arrow */
    .store-actions {
        display: flex !important;
        position: absolute !important;
        right: 0.5rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        gap: 0.25rem !important;
        align-items: center !important;
    }

    .store-actions .btn-like,
    .store-actions .btn-dislike {
        padding: 0.35rem 0.5rem !important;
        font-size: 0.75rem !important;
        min-width: auto !important;
        border-radius: 6px !important;
    }

    .store-actions .like-count,
    .store-actions .dislike-count {
        font-size: 0.7rem !important;
    }

    .store-main-row {
        display: contents !important;
    }

    .store-bottom-row {
        display: none !important;
    }

    .store-badges {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .store-item {
        padding: 0.5rem 0.75rem !important;
    }

    .store-logo {
        width: 34px !important;
        height: 34px !important;
    }

    .store-logo img {
        width: 26px !important;
        height: 26px !important;
    }

    .store-name {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }

    .store-location {
        font-size: 0.65rem !important;
        gap: 0.25rem !important;
    }

    .store-main-row {
        gap: 0.5rem !important;
    }

    .store-bottom-row {
        margin-top: 0.35rem !important;
        gap: 0.35rem !important;
    }

    .store-badges {
        gap: 0.25rem !important;
    }

    .store-badges .badge {
        font-size: 0.6rem !important;
        padding: 0.12rem 0.3rem !important;
    }

    .btn-view-badge,
    .btn-like,
    .btn-dislike,
    .btn-visit-store {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.65rem !important;
    }
}

/* Banner Text Styling (Consistent with other pages) */
.banner-text {
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.banner-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Form Notification Styles */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

.notification-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.notification-content i {
    font-size: 1rem;
}

.notification-content button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification-content button:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Inline Filters Layout - TUTARLI TASARIM */
.filters-grid-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Badge - Matching tab button style */
.store-counter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffd406;
    border: 1px solid #ffd406;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: default;
    transition: all 0.3s ease;
    font-weight: 500;
    flex-shrink: 0;
    box-sizing: border-box;
}

.store-counter-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 212, 6, 0.3);
}

.store-counter-badge img {
    display: none; /* Hide the icon in new design */
}

.store-counter-badge i {
    font-size: 0.9rem;
    color: #000;
}

.store-counter-badge #storeCounter {
    font-weight: 900;
    color: #000;
    font-size: 1rem;
    line-height: 1;
}

.store-counter-badge .counter-text {
    display: none; /* Hide text in new minimal design */
}

/* Search Input - Mavi tema, aynı yükseklik */
.search-inline {
    flex: 1;
    min-width: 200px;
}

.search-inline .search-input {
    position: relative;
    height: 48px;
}

.search-inline .search-input input {
    width: 100%;
    height: 48px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #7dd3fc;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-inline .search-input input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.search-inline .search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0ea5e9;
    font-size: 0.875rem;
}

/* Dropdowns - Mavi tema, aynı yükseklik */
.select-inline {
    min-width: 150px;
}

.select-inline select {
    width: 100%;
    height: 48px;
    padding: 0.75rem 1rem;
    border: 2px solid #7dd3fc;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.select-inline select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.counter-text {
    font-size: 0.875rem;
}

/* Pagination Styles */
.pagination-section {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #ea580c;
    color: #ea580c;
    background: #fff7ed;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #9ca3af;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 1rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-number:hover {
    border-color: #ea580c;
    color: #ea580c;
    background: #fff7ed;
}

.pagination-number.active {
    background: #ea580c;
    border-color: #ea580c;
    color: white;
    font-weight: 600;
}

.pagination-dots {
    padding: 0 0.5rem;
    color: #9ca3af;
    font-weight: 600;
}

.pagination-info {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.pagination-info strong {
    color: #374151;
    font-weight: 600;
}

/* Load More Button */
.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd601 0%, #ffd601 100%);
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #ffd601 0%, #ffd601 100%);
    box-shadow: 0 6px 20px #ff4500, 0.3;
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

/* Back to Top Button (in pagination section) */
.back-to-top-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffd601;
    color: #333;
    border: #ff4500;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(248, 231, 28, 0.3);
    margin-top: 1rem;
}

.back-to-top-pagination:hover {
    background: #ffd601;
    box-shadow: 0 6px 20px rgba(248, 231, 28, 0.4);
    transform: translateY(-2px);
}

.back-to-top-pagination:active {
    transform: translateY(0);
}

.back-to-top-pagination i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .pagination-numbers {
        margin: 0 0.5rem;
    }
}

/* Google Maps Info Window - Hide default close button */
.gm-style-iw-c button.gm-ui-hover-effect {
    display: none !important;
}

.gm-style-iw button[aria-label="Close"] {
    display: none !important;
}

.gm-style .gm-style-iw-tc {
    display: none !important;
}

/* ================================================ */
/* SKELETON LOADING ANIMATIONS */
/* ================================================ */

/* Skeleton shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Base skeleton element */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e0e0e0 20%,
        #f0f0f0 40%,
        #f0f0f0 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 4px;
}

/* Skeleton store card */
.skeleton-store-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-top: 1px solid #e5e7eb;
}

.skeleton-store-card .skeleton-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.skeleton-store-card .skeleton-title {
    height: 20px;
    width: 70%;
    margin-bottom: 0.5rem;
}

.skeleton-store-card .skeleton-address {
    height: 16px;
    width: 90%;
    margin-bottom: 0.5rem;
}

.skeleton-store-card .skeleton-country {
    height: 14px;
    width: 40%;
}

/* Skeleton for list view - horizontal layout */
.skeleton-store-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.skeleton-store-item .skeleton-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

.skeleton-store-item .skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-store-item .skeleton-title {
    height: 18px;
    width: 60%;
}

.skeleton-store-item .skeleton-address {
    height: 14px;
    width: 80%;
}

/* Map skeleton */
.skeleton-map {
    width: 100%;
    height: 600px;
    background: linear-gradient(
        90deg,
        #e5e7eb 0%,
        #d1d5db 20%,
        #e5e7eb 40%,
        #e5e7eb 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.skeleton-map::after {
    content: '🗺️ Loading Map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: 600;
}

/* Skeleton container */
.skeleton-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hide skeleton when content loads */
.skeleton-container.loaded {
    display: none;
}

/* Mobile skeleton adjustments */
@media (max-width: 768px) {
    .skeleton-store-item {
        padding: 0.5rem 0.75rem;
    }

    .skeleton-store-item .skeleton-logo {
        width: 36px;
        height: 36px;
    }

    .skeleton-store-item .skeleton-title {
        height: 16px;
    }

    .skeleton-store-item .skeleton-address {
        height: 12px;
    }

    .skeleton-map {
        height: 400px;
    }
}

/* ================================================ */
/* NEAR ME BUTTON - Matching Map View Button Style */
/* ================================================ */

.near-me-btn {
    background: #4285f4;
    border: 1px solid #4285f4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
    min-width: 160px;
    justify-content: center;
}

.near-me-btn:hover {
    background: #1a73e8;
    border-color: #1a73e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.near-me-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
}

.near-me-btn i {
    font-size: 0.9rem;
}

/* Loading state */
.near-me-btn.loading {
    pointer-events: none;
    opacity: 0.8;
    background: #5a9af5;
}

.near-me-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .near-me-btn {
        font-size: 0.9rem;
        padding: 0.625rem 1.25rem;
    }
}

/* ===== FILTER BORDER STYLES - CONSISTENT WITH SHOWCASE ===== */

/* Remove wrapper borders */
.filters-section .search-inline,
.filters-section .select-inline {
    border: none !important;
}

/* Force same borders for all filter elements */
.filters-section .search-input,
.filters-section .select-inline select,
.filters-section .sort-dropdown {
    border: 2px solid #d1d5db !important;
    border-radius: 8px !important;
    transition: border-color 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    background: white !important;
    height: 48px !important;
}

.filters-section .search-input {
    display: block !important;
}

/* Select elements - ensure same padding and styling */
.filters-section .select-inline select {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
    box-sizing: border-box !important;
}

/* Sort dropdown inner select - transparent */
.filters-section .sort-dropdown select {
    border: none !important;
    background: transparent !important;
    outline: none !important;
}

/* Remove borders and effects from inner input element */
.filters-section .search-input input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0.75rem 1rem 0.75rem 2.5rem !important;
    width: 100% !important;
    height: 100% !important;
}

.filters-section .search-input input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hover and focus effects - MOR BORDER (same as brands page) */
.filters-section .search-input:hover,
.filters-section .search-input:focus-within,
.filters-section .select-inline select:hover,
.filters-section .select-inline select:focus,
.filters-section .sort-dropdown:hover,
.filters-section .sort-dropdown:focus-within {
    border-color: #667eea !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ================================================ */
/* NEW STORE BADGE - Simple Yellow Circle */
/* ================================================ */
.new-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #ffd601;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: default;
}

.new-store-badge .badge-title {
    font-size: 7px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}



/* Store Type Badges */
.store-type-badge:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

