 /* FIX HORIZONTAL SCROLL ISSUE */
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }
        
        /* DARK THEME VARIABLES */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #e74c3c;    --primary-dark: #c0392b;
            --secondary: #3498db;  --accent: #f1c40f;
            --dark: #121212;       --darker: #0a0a0a;
            --card-dark: #1e1e1e;  --card-darker: #171717;
            --text: #ffffff;       --text-muted: #aaaaaa;
            --border: #333333;     --hover: #2c2c2c;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--dark);
            overflow-x: hidden;
            position: relative;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* COMIC TEXT STYLES */
        h1, h2, h3, h4 {
            font-family: 'Bangers', cursive;
            letter-spacing: 2px;
            line-height: 1.2;
            text-transform: uppercase;
        }
        h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0 var(--primary),
                        6px 6px 0 rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '!';
            color: var(--primary);
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        /* BUTTONS - COMIC STYLE */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            position: relative;
            overflow: hidden;
        }
        .btn::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;
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4),
                        inset 0 1px 0 rgba(255,255,255,0.2);
        }
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6),
                        inset 0 1px 0 rgba(255,255,255,0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--text);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .btn-large {
            padding: 18px 36px;
            font-size: 1.1rem;
        }
        .btn-discord {
            background: linear-gradient(135deg, #5865F2, #4752C4);
            color: var(--text);
            font-weight: 700 !important;
        }
        .btn-discord:hover {
            background: linear-gradient(135deg, #4752C4, #3C45A5);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
        }
        
        /* UPDATED NAVIGATION */
        .navbar {
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            min-height: 70px;
            gap: 20px;
        }
        
        /* LOGO */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            transition: transform 0.3s ease;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo-icon {
            width: 90px;
            height: 90px;
            background-image: url('https://res.cloudinary.com/dq4gl4bmg/image/upload/v1765482796/Firefly_Gemini_Flash_Can_you_remove_the_background_and_just_leave_the_explosion_and_LCS-_Easy_to_upload_ri_564460_2_pdi4gf.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
            animation: pulse 2s infinite;
            margin-right: 15px;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .logo-text {
            font-family: 'Bangers', cursive;
            font-size: 1.8rem;
            letter-spacing: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }
        
        /* NAVIGATION LINKS */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: nowrap;
            flex: 1;
            justify-content: flex-start;
            margin-left: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 2px;
        }
        
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        
        .nav-link {
            color: var(--text);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .nav-link i {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text);
            cursor: pointer;
            margin-left: 15px;
        }
        
        /* UPDATED HERO SLIDER - LARGER AND BRIGHTER */
        .hero-slider {
            margin-top: 70px;
            position: relative;
            height: 600px; /* Increased from 500px to 600px */
            overflow: hidden;
            border-bottom: 3px solid var(--primary);
        }
        .swiper {
            width: 100%;
            height: 100%;
        }
        .swiper-slide {
            position: relative;
            background: var(--darker);
        }
        /* UPDATED: Reduced darkness, increased brightness and contrast */
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85) contrast(1.4); /* Reduced darkness, increased contrast */
        }
        /* UPDATED: Lighter overlay for better image visibility */
        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.5) 50%, rgba(18,18,18,0.2) 100%); /* Reduced opacity */
            display: flex;
            align-items: center;
            padding: 0 100px;
        }
        .slider-content {
            max-width: 600px;
        }
        .slider-content h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            line-height: 1;
        }
        .highlight {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--primary);
            z-index: -1;
            opacity: 0.5;
        }
        .slider-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--text-muted);
        }
        
        /* SEARCH BOX - ADJUSTED FOR LARGER SLIDER */
        .search-box-container {
            position: absolute;
            bottom: 60px; /* Increased from 40px to 60px for larger slider */
            left: 100px;
            right: 100px;
            z-index: 100;
        }
        .search-box {
            display: flex;
            gap: 10px;
            background: rgba(30, 30, 30, 0.9);
            padding: 5px;
            border-radius: 50px;
            border: 2px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3),
                        inset 0 1px 0 rgba(255,255,255,0.1);
            max-width: 700px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 25px;
        }
        .search-input i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .search-input input {
            width: 100%;
            padding: 15px 0;
            border: none;
            background: none;
            font-size: 1.1rem;
            outline: none;
            color: var(--text);
            font-size: 16px;
        }
        .search-input input::placeholder {
            color: var(--text-muted);
        }
        .search-box .btn-primary {
            white-space: nowrap;
            border-radius: 50px;
            padding: 15px 30px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* SHOP DETAILS MODAL - FIXED SPACING */
        .shop-details-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2001;
            overflow-y: auto;
            padding: 20px;
        }
        .shop-details-modal.active {
            display: block;
        }
        .shop-modal-content {
            background: var(--card-dark);
            max-width: 1200px;
            margin: 50px auto;
            border-radius: 15px;
            border: 3px solid var(--primary);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
        }
        .shop-modal-header {
            background: var(--darker);
            padding: 25px 30px;
            border-bottom: 2px solid var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .shop-modal-header h2 {
            margin: 0;
            font-size: 2.5rem;
            color: var(--text);
        }
        .close-shop-modal {
            background: var(--primary);
            color: var(--text);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .close-shop-modal:hover {
            transform: rotate(90deg) scale(1.1);
            background: var(--primary-dark);
        }
        .shop-modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 500px;
        }
        .shop-details-side {
            padding: 30px;
            background: var(--card-darker);
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .shop-image-large {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .shop-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .shop-details-side:hover .shop-image-large img {
            transform: scale(1.05);
        }
        .shop-details-info h3 {
            color: var(--text);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .shop-address {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .shop-phone, .shop-website {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: var(--text-muted);
        }
        .shop-hours {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        .shop-hours p {
            margin-bottom: 10px;
            color: var(--text-muted);
        }
        .shop-phone a, .shop-website a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        .shop-phone a:hover, .shop-website a:hover {
            color: var(--accent);
        }
        .shop-description {
            margin-top: 20px;
            line-height: 1.7;
            color: var(--text);
        }
        .shop-specialties {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid var(--border);
        }
        .specialty-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        .specialty-tag {
            background: rgba(231, 76, 60, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(231, 76, 60, 0.3);
        }
        .shop-map-side {
            padding: 0;
            position: relative;
        }
        #shopMap {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border-radius: 0;
        }
        .map-controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }
        .map-controls .btn {
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }
        .shop-modal-footer {
            padding: 20px 30px;
            background: var(--darker);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* RESULTS MODAL WITH PAGINATION */
        .results-modal, .add-store-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        .results-modal.active, .add-store-modal.active {
            display: block;
        }
        .modal-content {
            background: var(--card-dark);
            max-width: 1000px;
            margin: 50px auto;
            border-radius: 15px;
            border: 3px solid var(--primary);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.7);
            position: relative;
            z-index: 2001;
        }
        .modal-header {
            background: var(--darker);
            padding: 25px 30px;
            border-bottom: 2px solid var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .modal-header h2 {
            margin: 0;
            font-size: 2.5rem;
        }
        .close-modal {
            background: var(--primary);
            color: var(--text);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .close-modal:hover {
            transform: rotate(90deg) scale(1.1);
            background: var(--primary-dark);
        }
        .modal-body {
            padding: 30px;
        }
        .search-results-info {
            background: rgba(52, 152, 219, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            border-left: 4px solid var(--secondary);
        }
        .search-results-info h3 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 1.8rem;
        }
        .comic-shops-list {
            display: grid;
            gap: 25px;
            margin-bottom: 30px;
        }
        .comic-shop-item {
            background: var(--card-darker);
            border-radius: 12px;
            padding: 25px;
            border: 2px solid var(--border);
            transition: all 0.3s;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 25px;
            align-items: start;
        }
        .comic-shop-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
        }
        .shop-number {
            background: var(--primary);
            color: var(--text);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bangers', cursive;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        .shop-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .shop-details h3 {
            color: var(--text);
            margin: 0;
            font-size: 1.8rem;
        }
        .shop-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .shop-location i {
            color: var(--primary);
        }
        .shop-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
        }
        .shop-phone a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        .shop-phone a:hover {
            color: var(--accent);
        }
        .shop-distance {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 600;
            background: rgba(241, 196, 15, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
            align-self: flex-start;
        }
        .shop-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 150px;
        }
        .btn-small {
            padding: 10px 20px;
            font-size: 0.9rem;
            text-align: center;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-map {
            background: linear-gradient(135deg, var(--secondary), #2980b9);
        }
        .btn-website {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }
        
        /* VIEW FULL DIRECTORY BUTTON */
        .view-directory-container {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid var(--border);
            margin-top: 20px;
        }
        .view-directory-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .view-directory-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
        }
        
        .modal-footer {
            padding: 20px 30px;
            background: var(--darker);
            border-top: 2px solid var(--primary);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* ADD STORE FORM STYLES */
        .add-store-form {
            max-width: 700px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 600;
            font-family: 'Roboto', sans-serif;
            font-size: 1.1rem;
        }
        .form-group .required::after {
            content: ' *';
            color: var(--primary);
        }
        .form-control {
            width: 100%;
            padding: 15px 20px;
            background: var(--card-darker);
            border: 2px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
        }
        .form-control::placeholder {
            color: var(--text-muted);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-actions {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            margin-top: 30px;
        }
        .form-note {
            background: rgba(52, 152, 219, 0.1);
            padding: 15px 20px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            margin-bottom: 25px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* NETLIFY FORM SUCCESS MESSAGE */
        .form-success-message {
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid #2ecc71;
            padding: 30px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            display: none;
        }
        .form-success-message.show {
            display: block;
        }
        
        /* STATS SECTION */
        .stats {
            padding: 80px 0;
            background: var(--darker);
            position: relative;
            overflow: hidden;
        }
        .stats::before {
            content: 'COMICS!';
            position: absolute;
            font-family: 'Bangers', cursive;
            font-size: 20rem;
            color: rgba(52, 152, 219, 0.05);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
            pointer-events: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        .stat {
            display: flex;
            align-items: center;
            gap: 25px;
            padding: 30px;
            background: rgba(30, 30, 30, 0.7);
            border-radius: 15px;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        .stat::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--secondary), #2980b9);
            border-radius: 17px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .stat:hover::before {
            opacity: 1;
        }
        .stat:hover {
            transform: translateY(-10px);
        }
        .stat i {
            font-size: 3rem;
            color: var(--primary);
            filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.3));
        }
        .stat-content h3 {
            font-size: 3rem;
            color: var(--text);
            margin: 0;
            line-height: 1;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
        }
        .stat-content p {
            color: var(--text-muted);
            margin: 5px 0 0;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* FEATURED SHOPS */
        .featured {
            padding: 100px 0;
            background: var(--dark);
            position: relative;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--text);
        }
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 15px auto;
            border-radius: 2px;
        }
        .section-description {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        .shops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .shop-card {
            background: var(--card-dark);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 480px;
        }
        .shop-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2),
                        0 0 0 1px rgba(231, 76, 60, 0.1);
        }
        .shop-img {
            height: 220px;
            position: relative;
            overflow: hidden;
        }
        .shop-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, var(--card-dark) 90%);
            z-index: 1;
        }
        .shop-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .shop-card:hover .shop-img img {
            transform: scale(1.1);
        }
        .shop-info {
            padding: 25px;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .shop-info h3 {
            color: var(--text);
            margin-bottom: 10px;
            font-size: 1.8rem;
            line-height: 1.3;
            min-height: 70px;
        }
        .location {
            color: var(--text-muted);
            margin-bottom: 15px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.5;
        }
        .location i {
            color: var(--primary);
            flex-shrink: 0;
        }
        .description {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
            min-height: 120px;
        }
        .shop-card .btn-outline {
            margin-top: auto;
            margin-bottom: 0;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        /* BLOG SECTION */
        .blog-preview {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
            position: relative;
            border-top: 3px solid var(--primary);
            border-bottom: 3px solid var(--primary);
            margin: 40px 0;
        }
        .blog-preview::before {
            content: 'NEWS';
            position: absolute;
            font-family: 'Bangers', cursive;
            font-size: 20rem;
            color: rgba(52, 152, 219, 0.03);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            letter-spacing: 10px;
            text-shadow: 5px 5px 0 rgba(231, 76, 60, 0.1);
        }
        .blog-preview .container {
            position: relative;
            z-index: 2;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
        }
        .section-header::after {
            content: '!';
            position: absolute;
            right: -30px;
            top: 0;
            color: var(--primary);
            font-family: 'Bangers', cursive;
            font-size: 6rem;
            opacity: 0.2;
            animation: blink 1s infinite;
        }
        .blog-controls {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .view-all {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: gap 0.3s;
            background: rgba(231, 76, 60, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            border: 2px solid var(--primary);
        }
        .view-all:hover {
            gap: 15px;
            background: var(--primary);
            color: var(--text);
        }
        
        /* BLOG CARDS GRID */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .blog-card {
            background: var(--card-dark);
            border-radius: 20px;
            overflow: hidden;
            border: 3px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            height: 580px;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .blog-card:hover {
            border-color: var(--primary);
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(231, 76, 60, 0.3),
                        0 0 30px rgba(231, 76, 60, 0.2);
        }
        .blog-card-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .blog-card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(231, 76, 60, 0.1) 100%);
            transition: opacity 0.3s;
        }
        .blog-card:hover .blog-card-image::after {
            opacity: 0.5;
        }
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }
        .blog-card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: linear-gradient(to bottom, var(--card-dark), var(--card-darker));
        }
        .blog-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }
        .blog-card-date {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .blog-card-category {
            background: rgba(52, 152, 219, 0.1);
            color: var(--secondary);
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .blog-card-title {
            font-family: 'Roboto', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            color: var(--text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 70px;
        }
        .blog-card-excerpt {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 25px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-card-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: auto;
        }
        .read-full-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        .read-full-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark), #a93226);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        /* FULL SCREEN ARTICLE MODAL */
        .article-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(10px);
            z-index: 3000;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .article-modal-overlay.active {
            display: block;
            opacity: 1;
        }
        
        .article-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            z-index: 3001;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
            overflow-y: auto;
            overflow-x: hidden;
        }
        .article-modal.active {
            display: block;
            opacity: 1;
        }
        
        .article-header {
            background: linear-gradient(135deg, var(--darker), rgba(231, 76, 60, 0.1));
            padding: 40px 20px;
            border-bottom: 3px solid var(--primary);
            position: relative;
        }
        
        .article-header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .article-header-info {
            flex: 1;
            min-width: 300px;
        }
        
        .article-header-title {
            font-family: 'Roboto', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
            text-transform: none;
            letter-spacing: normal;
        }
        
        .article-header-meta {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .article-date {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .article-category {
            background: rgba(52, 152, 219, 0.2);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 30px;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid rgba(52, 152, 219, 0.3);
        }
        
        .article-close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--primary);
            color: var(--text);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
            z-index: 10;
        }
        .article-close-btn:hover {
            background: var(--primary-dark);
            transform: rotate(90deg) scale(1.1);
        }
        
        .article-back-btn {
            background: rgba(52, 152, 219, 0.2);
            color: var(--secondary);
            border: 2px solid rgba(52, 152, 219, 0.3);
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        .article-back-btn:hover {
            background: var(--secondary);
            color: var(--text);
            transform: translateX(-5px);
        }
        
        .article-image-container {
            width: 100%;
            max-height: 600px;
            overflow: hidden;
            position: relative;
        }
        .article-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }
        
        .article-content {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .article-content p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--text);
            text-align: justify;
        }
        
        .article-content h2 {
            font-family: 'Roboto', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 60px 0 30px;
            color: var(--text);
            text-transform: none;
            letter-spacing: normal;
            border-left: 5px solid var(--primary);
            padding-left: 20px;
        }
        
        .article-content h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            margin: 50px 0 25px;
            color: var(--accent);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 30px;
            margin: 40px 0;
            font-style: italic;
            font-size: 1.4rem;
            color: var(--text-muted);
        }
        
        .article-content ul, .article-content ol {
            margin: 30px 0;
            padding-left: 40px;
        }
        
        .article-content li {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .article-content * {
            max-width: 100%;
        }
        
        .article-content iframe,
        .article-content video,
        .article-content embed {
            max-width: 100%;
            display: block;
            margin: 30px auto;
        }
        
        .article-footer {
            max-width: 800px;
            margin: 80px auto 40px;
            padding: 40px 20px;
            border-top: 2px solid var(--border);
            text-align: center;
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .article-nav-btn {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        .article-nav-btn:hover {
            background: var(--primary);
            color: var(--text);
        }
        .article-nav-btn.prev {
            transform: translateX(-5px);
        }
        .article-nav-btn.next {
            transform: translateX(5px);
        }
        
        /* CTA SECTION */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
            position: relative;
            text-align: center;
            border-top: 3px solid var(--primary);
            border-bottom: 3px solid var(--primary);
            margin: 40px 0;
        }
        .cta h2 {
            color: var(--text);
            margin-bottom: 20px;
            font-size: 3.5rem;
        }
        .cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: var(--text-muted);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* FOOTER */
        .footer {
            background: var(--darker);
            color: var(--text);
            padding: 80px 0 30px;
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-col h4 {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            display: inline-block;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        .footer-col p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .footer-col ul li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        .social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        .social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--card-dark);
            border-radius: 50%;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        .social a:hover {
            background: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-bottom p {
            margin-bottom: 10px;
        }
        
        /* RESPONSIVE DESIGN - MOBILE OPTIMIZED WITH SLIDER UPDATES */
        @media (max-width: 1200px) {
            .hero-slider {
                height: 550px; /* Adjusted for tablet */
            }
            .slider-overlay {
                padding: 0 50px;
            }
            .slider-content h1 {
                font-size: 3.5rem;
            }
            .search-box-container {
                left: 50px;
                right: 50px;
                bottom: 50px; /* Adjusted for tablet */
            }
            .shop-modal-body {
                grid-template-columns: 1fr;
            }
            #shopMap {
                min-height: 400px;
            }
            .blog-preview::before {
                font-size: 15rem;
            }
            .article-header-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            
            /* NAVIGATION FOR TABLET */
            .navbar .container {
                padding: 5px 15px;
            }
            
            .logo-icon {
                width: 70px;
                height: 70px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }
            
            /* HERO SLIDER TABLET */
            .hero-slider {
                height: 500px; /* Adjusted for tablet */
                margin-top: 65px;
            }
            
            .slider-overlay {
                padding: 0 30px;
            }
            
            .slider-content h1 {
                font-size: 2.8rem;
            }
            
            /* TABLET SEARCH BOX */
            .search-box-container {
                position: absolute;
                bottom: 40px; /* Adjusted for tablet */
                left: 30px;
                right: 30px;
            }
            
            .search-box {
                flex-direction: row;
                padding: 10px;
                gap: 10px;
                max-width: 100%;
            }
            
            .search-input {
                background: rgba(20, 20, 20, 0.8);
                border-radius: 10px;
                padding: 0 15px;
                border: 1px solid var(--border);
            }
            
            .search-input input {
                padding: 12px 0;
                font-size: 16px;
                width: 100%;
            }
            
            .search-box .btn-primary {
                border-radius: 10px;
                padding: 12px 20px;
                min-height: 46px;
                font-size: 1rem;
            }
            
            /* TABLET RESULTS */
            .comic-shop-item {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .shop-actions {
                min-width: auto;
                flex-direction: row;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            
            .shop-modal-content {
                margin: 20px;
            }
            
            .article-header-title {
                font-size: 2.2rem;
            }
            
            .article-header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .article-close-btn {
                top: 20px;
                right: 20px;
            }
            
            .article-back-btn {
                align-self: center;
            }
            
            .blog-card {
                height: 550px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 450px; /* Adjusted for mobile */
                margin-top: 65px;
            }
            
            .slider-overlay {
                padding: 0 20px;
                background: linear-gradient(90deg, rgba(18,18,18,0.8) 0%, rgba(18,18,18,0.6) 100%); /* Brighter on mobile */
            }
            
            .slider-content h1 {
                font-size: 2.2rem;
                text-shadow: 2px 2px 0 var(--primary),
                            4px 4px 0 rgba(0, 0, 0, 0.5);
            }
            
            .slider-content p {
                font-size: 1.1rem;
            }
            
            /* MOBILE NAVIGATION - HAMBURGER MENU */
            .navbar .container {
                padding: 5px 10px;
                min-height: 60px;
            }
            
            .logo-icon {
                width: 60px;
                height: 60px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .nav-links {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--card-darker);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 2px solid var(--primary);
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
                backdrop-filter: blur(10px);
                z-index: 999;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .nav-link {
                padding: 12px 0;
                font-size: 1rem;
                justify-content: center;
            }
            
            .menu-toggle {
                display: block;
                margin-left: auto;
            }
            
            /* MOBILE SEARCH BOX */
            .search-box-container {
                left: 15px;
                right: 15px;
                bottom: 30px; /* Adjusted for mobile */
            }
            
            .search-box {
                flex-direction: column;
                padding: 12px;
                gap: 12px;
            }
            
            .search-input input {
                font-size: 16px;
                padding: 14px 0;
            }
            
            .search-box .btn-primary {
                min-height: 50px;
                padding: 14px 20px;
                width: 100%;
            }
            
            /* MOBILE STATS */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .shops-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .section-header::after {
                position: static;
                margin-top: 10px;
                font-size: 3rem;
            }
            
            .blog-controls {
                align-self: center;
            }
            
            .stat {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .modal-content {
                margin: 20px;
            }
            
            .modal-header {
                padding: 20px;
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .shop-modal-header {
                padding: 20px;
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .shop-modal-footer {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .blog-preview {
                padding: 80px 0;
            }
            
            .blog-preview::before {
                font-size: 10rem;
            }
            
            .blog-card {
                height: 520px;
            }
            
            .blog-card-image {
                height: 200px;
            }
            
            /* MOBILE SHOP CARDS */
            .shop-card {
                min-height: 520px;
            }
            
            .shop-info h3 {
                min-height: 60px;
                font-size: 1.6rem;
            }
            
            .description {
                min-height: 100px;
            }
            
            .article-header-title {
                font-size: 1.8rem;
            }
            
            .article-content p {
                font-size: 1.1rem;
            }
            
            .article-content h2 {
                font-size: 1.8rem;
            }
            
            .article-content h3 {
                font-size: 1.5rem;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            /* EXTRA SMALL MOBILE */
            .navbar .container {
                padding: 5px 8px;
            }
            
            .logo-icon {
                width: 50px;
                height: 50px;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
            
            /* HERO SLIDER FOR SMALL MOBILE */
            .hero-slider {
                height: 400px; /* Adjusted for small mobile */
            }
            
            .slider-overlay {
                background: linear-gradient(90deg, rgba(18,18,18,0.85) 0%, rgba(18,18,18,0.7) 100%); /* Brighter overlay */
            }
            
            .search-box-container {
                left: 10px;
                right: 10px;
                bottom: 25px; /* Adjusted for small mobile */
            }
            
            /* MOBILE STATS */
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat {
                padding: 20px;
            }
            
            .stat i {
                font-size: 2.5rem;
            }
            
            .stat-content h3 {
                font-size: 2.5rem;
            }
            
            /* MOBILE FOOTER */
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social {
                justify-content: center;
            }
            
            /* MOBILE SHOP ACTIONS */
            .shop-actions {
                flex-direction: column;
            }
            
            .form-actions {
                flex-direction: column;
            }
            
            /* MOBILE BLOG */
            .blog-preview::before {
                font-size: 7rem;
                letter-spacing: 5px;
            }
            
            .blog-card {
                height: 500px;
            }
            
            .blog-card-image {
                height: 180px;
            }
            
            /* MOBILE ARTICLE */
            .article-header-title {
                font-size: 1.5rem;
            }
            
            .article-header-meta {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }
        
        /* TOUCH-FRIENDLY IMPROVEMENTS */
        @media (hover: none) and (pointer: coarse) {
            .btn, button {
                min-height: 44px;
                min-width: 44px;
            }
            
            .nav-link {
                padding: 12px 0;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 44px !important;
                height: 44px !important;
            }
            
            .search-input input {
                font-size: 16px;
            }
            
            .logo {
                min-height: 44px;
                min-width: 44px;
            }
            
            .menu-toggle {
                min-height: 44px;
                min-width: 44px;
            }
        }
        
        /* SWIPER CUSTOM STYLES - HIDE BUTTONS ON MOBILE */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary) !important;
            background: rgba(30, 30, 30, 0.7);
            width: 60px !important;
            height: 60px !important;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 2px solid var(--primary);
        }
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 24px !important;
            font-weight: bold;
        }
        .swiper-pagination-bullet {
            background: var(--text-muted) !important;
            opacity: 0.5;
            width: 12px !important;
            height: 12px !important;
        }
        .swiper-pagination-bullet-active {
            background: var(--primary) !important;
            opacity: 1;
            transform: scale(1.2);
        }
        
        /* HIDE SWIPER BUTTONS ON MOBILE */
        @media (max-width: 768px) {
            .swiper-button-next,
            .swiper-button-prev {
                display: none !important;
            }
        }
        
        /* SCROLLBAR STYLING */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--darker);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        /* ALERT MESSAGE STYLES */
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }
        .alert-success {
            background: rgba(46, 204, 113, 0.1);
            border-left: 4px solid #2ecc71;
            color: #2ecc71;
        }
        .alert-error {
            background: rgba(231, 76, 60, 0.1);
            border-left: 4px solid var(--primary);
            color: var(--primary);
        }
        
        /* BACK TO TOP */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--primary-dark);
        }
        
        /* FIX FOR MAP CONTAINER */
        #shopMap {
            min-height: 500px;
            z-index: 1;
        }
        @media (max-width: 768px) {
            #shopMap {
                min-height: 300px;
            }
        }
        
        /* MAP MARKER CUSTOM STYLES */
        .custom-marker {
            background: none !important;
            border: none !important;
        }