 .province-store-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }

        .province-title {
            font-size: 28px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 40px;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
			background: #fff;
			padding: 14px 18px;
			border-radius: 14px;
			box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-label {
            font-size: 16px;
            font-weight: 500;
            color: #495057;
            margin: 0;
            white-space: nowrap;
        }

        .filter-select {
            min-width: 200px;
            border-radius: 8px;
            border: 2px solid #dee2e6;
            padding: 8px 12px;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .filter-select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }

        .filter-select:disabled {
            background-color: #e9ecef;
            cursor: not-allowed;
        }

 

        .shop-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .shop-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .shop-info {
            flex: 1;
        }

        .shop-name {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .shop-address {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 0;
        }

        .shop-map {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .map-icon {
            width: 40px;
            height: 40px;
            background-color: #dc3545;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .map-icon:hover {
            background-color: #bb2d3b;
        }

        .map-link {
            text-decoration: none;
            color: #0d6efd;
            font-size: 14px;
            font-weight: 500;
        }

        .map-link:hover {
            text-decoration: underline;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #6c757d;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-group {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-select {
                width: 100%;
                min-width: auto;
            }

            .shop-item {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .shop-map {
                justify-content: center;
            }
        }